html.boot-loading,
html.boot-loading body {
  background: #f6f8f1;
}

html.boot-loading #wallhive-seo-fallback {
  display: none !important;
}

#wallhive-boot-loader {
  position: fixed;
  inset: 0;
  z-index: 2147483647;
  display: grid;
  place-items: center;
  background:
    radial-gradient(circle at 50% 48%, rgba(170, 229, 17, 0.18), transparent 24rem),
    #f6f8f1;
  opacity: 1;
  visibility: visible;
  transition: opacity 220ms ease, visibility 220ms ease;
}

#wallhive-boot-loader.is-hidden {
  pointer-events: none;
  opacity: 0;
  visibility: hidden;
}

.wallhive-boot-loader__content {
  display: grid;
  justify-items: center;
  gap: 13px;
  transform: translateY(-2vh);
}

.wallhive-boot-loader__label {
  color: rgba(24, 33, 22, 0.68);
  font-family: Arial, sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.wallhive-boot-loader__spinner {
  position: relative;
  width: 50px;
  height: 50px;
  border: 2px solid rgba(24, 33, 22, 0.12);
  border-top-color: #aae511;
  border-right-color: rgba(170, 229, 17, 0.4);
  border-radius: 50%;
  box-shadow: 0 0 24px rgba(170, 229, 17, 0.08);
  animation: wallhive-boot-spin 0.82s linear infinite;
}

.wallhive-boot-loader__spinner::after {
  position: absolute;
  inset: 8px;
  border: 1px solid rgba(24, 33, 22, 0.1);
  border-bottom-color: rgba(170, 229, 17, 0.75);
  border-radius: 50%;
  content: '';
  animation: wallhive-boot-spin-reverse 1.18s linear infinite;
}

@keyframes wallhive-boot-spin {
  to { transform: rotate(360deg); }
}

@keyframes wallhive-boot-spin-reverse {
  to { transform: rotate(-360deg); }
}

@media (prefers-reduced-motion: reduce) {
  .wallhive-boot-loader__spinner,
  .wallhive-boot-loader__spinner::after {
    animation: none;
  }
}
