#loading-overlay {
  position: fixed;
  inset: 0;
  background: var(--color-background-transp);
  opacity: 0.8;
  z-index: 9999;
  display: flex;
  justify-content: center;
  align-items: center;
}

#loading-overlay .spinner-dots {
  display: flex;
  gap: 0.5rem;
}

#loading-overlay .dot {
  width: 15px;
  height: 15px;
  background-color: var(--color-black-semi);
  border-radius: 50%;
  animation: bounce 1s infinite ease-in-out;
}

#loading-overlay .dot:nth-child(2) {
  animation-delay: 0.2s;
}

#loading-overlay .dot:nth-child(3) {
  animation-delay: 0.4s;
}

/* Linha em branco acima para o Stylelint ficar feliz */
@keyframes bounce {
  0%, 80%, 100% {
    transform: scale(0);
  }

  40% {
    transform: scale(1);
  }
}
