.dot-box {
    display: flex;
}

.loading-dots {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
  }
  
  .loading-dots span {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    margin: 5px;
    background-color: #FFA530;
    opacity: 0;
    animation: loading 2s infinite;
  }
  
  @keyframes loading {
    0% {
      opacity: 0;
    }
    50% {
      opacity: 0.7;
    }
    100% {
      opacity: 0;
    }
  }
  
  .loading-dots span:nth-child(1) {
    animation-delay: 0s;
  }
  
  .loading-dots span:nth-child(2) {
    animation-delay: 0.3s;
  }
  
  .loading-dots span:nth-child(3) {
    animation-delay: 0.6s;
  }
  
  .loading-dots span:nth-child(4) {
    animation-delay: 0.9s;
  }
  
  .loading-dots span:nth-child(5) {
    animation-delay: 1.2s;
  }
  
  .loading-dots span:nth-child(6) {
    animation-delay: 1.5s;
  }