/* Initial loader: shown on first paint until React mounts. */
#root .initial-loader {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background-color: rgba(3, 65, 108);
  z-index: 1350;
}

#root .initial-loader_blur {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  background-color: rgba(9, 22, 32, 0.4);
  z-index: -1;
}

#root .initial-loader_spinner {
  width: 2.5rem;
  height: 2.5rem;
  border: 3px solid rgba(255, 255, 255, 0.3);
  border-top-color: #fff;
  border-radius: 50%;
  animation: initial-loader-spin 0.8s linear infinite;
}

#root .initial-loader_spinner[aria-hidden="true"] {
  font-size: 0;
}

@media (prefers-reduced-motion: reduce) {
  #root .initial-loader_spinner {
    animation: none;
  }
}

@keyframes initial-loader-spin {
  to {
    transform: rotate(360deg);
  }
}
