/* Bouncing dots animation */
@keyframes bounce {
  0%, 80%, 100% {
    transform: translateY(0);
    opacity: 0.7;
  }
  40% {
    transform: translateY(-12px);
    opacity: 1;
  }
}

/* Main spinner container */
.loadingio-spinner-spinner-yd7a1dwr34 {
  width: 60px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Dots container */
.ldio-0gcitv8p93go {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 4px;
}

/* Individual dots */
.ldio-0gcitv8p93go div {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--primary-color);
  animation: bounce 1.4s ease-in-out infinite;
  display: block;
}

/* Animation delays for each dot */
.ldio-0gcitv8p93go div:nth-child(1) {
  animation-delay: -0.32s;
}

.ldio-0gcitv8p93go div:nth-child(2) {
  animation-delay: -0.16s;
}

.ldio-0gcitv8p93go div:nth-child(3) {
  animation-delay: 0s;
}

/* Hide extra divs - we only need 3 */
.ldio-0gcitv8p93go div:nth-child(n+4) {
  display: none;
}

/* Responsive design */
@media (min-width: 768px) {
  .loadingio-spinner-spinner-yd7a1dwr34 {
    width: 80px;
    height: 50px;
  }
  
  .ldio-0gcitv8p93go {
    gap: 6px;
  }
  
  .ldio-0gcitv8p93go div {
    width: 12px;
    height: 12px;
  }
  
  @keyframes bounce {
    0%, 80%, 100% {
      transform: translateY(0);
      opacity: 0.7;
    }
    40% {
      transform: translateY(-16px);
      opacity: 1;
    }
  }
}
