.htmx-indicator {
  font-style: italic;
  position: absolute;
  pointer-events: none;
  inset: 0;
  background-color: rgba(255,255,255,0.75);
  z-index: 10;
}

.htmx-request.htmx-indicator {
  opacity: 1;
}

.dots-bg {
  position: fixed;
  width: 100vw;
  height: 100vh;
  background-color: #ffffff9e;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 998;
}

.dots-loader {
  display: flex;
  gap: 0.5rem;
  justify-content: center;
  padding: 2rem;
  position: relative;
  z-index: 999;
}

.dot {
  width: 0.75rem;
  height: 0.75rem;
  border-radius: 50%;
  background-color: var(--exp-primary, #000);
  animation: pulse 1.4s ease-in-out infinite both;
}

.dot:nth-child(1) {
  animation-delay: -0.32s;
}
.dot:nth-child(2) {
  animation-delay: -0.16s;
}
.dot:nth-child(3) {
  animation-delay: 0s;
}

@keyframes pulse {
  0%,
  80%,
  100% {
    transform: scale(0);
    opacity: 0.5;
  }
  40% {
    transform: scale(1);
    opacity: 1;
  }
}
