
.spinner-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 999999 !important;
  }

  
  .spinner-overlay .spinner-container {
    position: relative;
    width: 50px;
    height: 50px;
  }

  
  .spinner {
    position: absolute;
    top: 50%;
    left: 50%;
    border-radius: 50%;
    border: 4.5px solid #5e72e4; 
    transform: translate(-50%, -50%);
  }
  
  .s-ring1 {
    width: 30px;
    height: 30px;
  }
  
  .s-ring2 {
    width: 60px;
    height: 60px;
  }


  .loading-dot {
    width: 15px;
    height: 15px;
    background: linear-gradient(to right, #000, #000);
    border-radius: 50%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation: circle-motion 2s infinite linear;
    border: 0.2vw solid #000;
  }

  @keyframes circle-motion {
    0% {
        transform: translate(-50%, -50%) rotate(0deg) translateX(28px);
    }
    100% {
        transform: translate(-50%, -50%) rotate(360deg) translateX(28px);
    }
  }


  @media screen and (max-width: 1366px) and (max-height: 768px) {
    body {
        zoom: 0.7;
    }
}