.loader-box {
  position: fixed;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 0.85rem;
  z-index: 20000;
  background: rgba(248, 250, 252, 0.88);
  backdrop-filter: blur(8px);
  cursor: progress;
  opacity: 1;
  transition: opacity 0.35s ease, visibility 0.35s ease;
}

.loader-box.is-hidden {
  visibility: hidden;
  opacity: 0;
}

.site-content {
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.45s ease;
}

.site-content.is-ready {
  visibility: visible;
  opacity: 1;
  pointer-events: auto;
}

.loader-label {
  color: #64748b;
  font-size: 0.8rem;
  letter-spacing: 0.12em;
}

.loading svg polyline {
  fill: none;
  stroke-width: 3;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.loading svg polyline#back {
  fill: none;
  stroke: rgba(255, 77, 79, 0.2);
}

.loading svg polyline#front {
  fill: none;
  stroke: #ff4d4f;
  stroke-dasharray: 48, 144;
  stroke-dashoffset: 192;
  animation: dash_682 1.4s linear infinite;
}

@keyframes dash_682 {
  72.5% {
    opacity: 0;
  }

  to {
    stroke-dashoffset: 0;
  }
}
