/* Preloader */

.bouncing-dots {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
}

.bouncing-dots .dot {
  width: 12px;
  height: 12px;
  background: #fff;
  border-radius: 50%;
  animation: bounce 1.4s infinite ease-in-out;
}

.bouncing-dots .dot:nth-child(1) { animation-delay: -0.32s; }
.bouncing-dots .dot:nth-child(2) { animation-delay: -0.16s; }
.bouncing-dots .dot:nth-child(3) { animation-delay: 0s; }
.bouncing-dots .dot:nth-child(4) { animation-delay: 0.16s; }
.bouncing-dots .dot:nth-child(5) { animation-delay: 0.32s; }

@keyframes bounce {
  0%, 80%, 100% {
    transform: scale(0.8);
    opacity: 0.5;
  }
  40% {
    transform: scale(1.2);
    opacity: 1;
  }
}