.site-loading-dots {
  --tw-text-opacity: 1;
  color: rgb(236 72 153 / var(--tw-text-opacity));
  display: inline-flex;
  align-items: center;
  gap: 4px;
  line-height: 1;
}

.site-loading-dots__dot {
  width: 4px;
  height: 4px;
  border-radius: 9999px;
  background: currentColor;
  opacity: 0.45;
  animation: site-loading-dots-bounce 0.9s infinite ease-in-out;
}

.site-loading-dots__dot:nth-child(2) {
  animation-delay: 0.12s;
}

.site-loading-dots__dot:nth-child(3) {
  animation-delay: 0.24s;
}

@keyframes site-loading-dots-bounce {
  0%, 80%, 100% {
    transform: translateY(0);
    opacity: 0.35;
  }
  40% {
    transform: translateY(-3px);
    opacity: 1;
  }
}

.site-loading-overlay {
  position: fixed;
  inset: 0;
  z-index: 99998;
  display: none;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.0);
  pointer-events: none;
}

.site-loading-overlay.is-show {
  display: flex;
}

.site-loading-overlay__box {
  pointer-events: none;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  border-radius: 9999px;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(0, 0, 0, 0.06);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
  color: rgb(236 72 153 / var(--tw-text-opacity));
}

.site-loading-overlay__text {
  font-size: 13px;
  color: rgba(0, 0, 0, 0.55);
}
