/* vendor-spinner.css */

/* Full-screen overlay */
#mt-spinner-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.35);
    z-index: 9999;
    align-items: center;
    justify-content: center;
    display: none; /* default hidden */
}

/* Circle spinner */
#mt-spinner-overlay .mt-spinner {
    width: 48px;
    height: 48px;
    border: 5px solid rgba(255, 255, 255, 0.35);
    border-top-color: #ffffff;
    border-radius: 50%;
    animation: mtSpinnerSpin 0.9s linear infinite;
}

@keyframes mtSpinnerSpin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}
