/* [project]/web/src/components/game-boot-loader.module.css [app-client] (css) */
.game-boot-loader-module__h2KKma__root {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 14px;
  min-height: 80vh;
  display: flex;
}

.game-boot-loader-module__h2KKma__rail {
  background: var(--border);
  border-radius: 1px;
  width: 132px;
  height: 2px;
  position: relative;
  overflow: hidden;
}

.game-boot-loader-module__h2KKma__rail:after {
  content: "";
  background: var(--accent);
  border-radius: 1px;
  width: 40%;
  animation: 1s cubic-bezier(.45, 0, .55, 1) infinite alternate game-boot-loader-module__h2KKma__boot-slide;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
}

@keyframes game-boot-loader-module__h2KKma__boot-slide {
  from {
    transform: translateX(-20%);
  }

  to {
    transform: translateX(170%);
  }
}

@media (prefers-reduced-motion: reduce) {
  .game-boot-loader-module__h2KKma__rail:after {
    width: 100%;
    animation: 1.2s ease-in-out infinite game-boot-loader-module__h2KKma__boot-pulse;
  }
}

@keyframes game-boot-loader-module__h2KKma__boot-pulse {
  0%, 100% {
    opacity: .25;
  }

  50% {
    opacity: 1;
  }
}

.game-boot-loader-module__h2KKma__label {
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--text-muted);
  font-size: 11px;
}

/*# sourceMappingURL=web_src_components_game-boot-loader_module_14d9b608.css.map*/