#unity-loading-bar {
  align-items: center;
  flex-direction: column;
  /* justify-content: center; */
  width: 100%;
  height: 100%;
  background-color: #000;
}
#unity-container {
  position: fixed !important;
  transform: unset !important;
  top: 0 !important;
  left: 0 !important;
  width: 100%;
  height: 100%;
}
#unity-footer,
#unity-fullscreen-button {
  display: none !important;
}

:root {
  --box-shadow: 0 0 5px #0f0, 0 0 15px #0f0, 0 0 30px #0f0, 0 0 50px #0f0;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: sans-serif;
}
.preloader__spinner {
  position: relative;
  display: flex;
}
.preloader__spinner span {
  position: absolute;
  top: -100px;
  left: -75px;
  width: 5px;
  height: 25px;
  transform: rotate(calc(var(--i) * 18deg));
  transform-origin: 0 100px;
}

.preloader__spinner_start span::before {
  content: "";
  position: absolute;
  inset: 0;
  background: #f00;
  animation: animate 8s linear infinite;
  animation-delay: calc(var(--i) * 0.1s);
}

.preloader__spinner_complete span::before {
  content: "";
  position: absolute;
  inset: 0;
  background: #0f0;
  box-shadow: var(--box-shadow);
  rotate: 90deg;
  animation: animation_compelete 8s linear infinite;
  animation-delay: calc(var(--i) * 0.1s);
}

.preloader {
  display: flex;
  position: fixed;
  top: 0;
  left: 0;
  align-items: center;
  flex-direction: column;
  justify-content: center;
  width: 100%;
  height: 100%;
  background-color: #000;
}

.preloader__container {
  display: flex;
  position: relative;
  align-items: center;
  justify-content: center;
  margin: 32px auto;
}

#preloader__progress_btn {
  width: 150px;
  height: 150px;
  display: flex;
  justify-content: center;
  align-items: center;
  pointer-events: none;
  cursor: auto;
  color: #fff;
  font-weight: bold;
  font-size: 2em;
  background: transparent;
  outline: none;
  border: none;
}

.preloader_logo {
  width: 600px;
  height: auto;
  margin-top: 64px;
}
.preloader_logo img {
  width: 100%;
}
.preloader_cookies {
  position: absolute;
  bottom: 0;
  padding: 50px;
  font-size: 1rem;
  line-height: 2;
  color: #0095c8;
  text-align: center;
  width: 60%;
}
.preloader_cookies a {
  color: #f50359;
  text-decoration: none;
}
#preloader__progress_btn:active {
  transform: scale(0.8);
}

@keyframes animation_compelete {
  0% {
    filter: hue-rotate(0deg);
  }
  100% {
    filter: hue-rotate(360deg);
  }
}

@keyframes animate {
  0% {
    background: #0f0;
    box-shadow: var(--box-shadow);
    rotate: 0deg;
  }
  40% {
    background: #0f0;
    box-shadow: var(--box-shadow);
    rotate: 90deg;
    filter: hue-rotate(0deg);
  }
  80% {
    background: #0f0;
    box-shadow: var(--box-shadow);
    rotate: 90deg;
    filter: hue-rotate(360deg);
  }
  90% {
    box-shadow: none;
    rotate: 90deg;
  }
  90.1%,
  100% {
    box-shadow: none;
    background: transparent;
  }
}
