/* Initial boot loader styles (kept separate from the JS bundle to render ASAP). */

#initial-loader {
  position: fixed;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #0f172a;
  z-index: 2147483647;
}

.initial-loader__logo {
  position: relative;
  width: 78px;
  height: 78px;
  display: grid;
  place-items: center;
}

.initial-loader__logo-image {
  width: 44px;
  height: 44px;
  display: block;
}

.initial-loader__ring {
  position: absolute;
  inset: 0;
  border-radius: 9999px;
  border: 3px solid rgba(0, 230, 184, 0.18);
  border-top-color: #00e6b8;
  animation: initial-loader-spin 900ms linear infinite;
}

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

@media (prefers-reduced-motion: reduce) {
  .initial-loader__ring {
    animation: none;
    border-top-color: rgba(0, 230, 184, 0.55);
  }
}

