/**
* CSS for frontend
*/

/* Checkout Loader */
.dxw3-checkout-overlay {
    position: fixed;
    z-index: 999999;
    top: 0; left: 0;
    width: 100vw;
    height: 100vh;
    align-items: center;
    justify-content: center;
    display: none;
}

.dxw3-spinner {
    width: 40px;
    height: 40px;
    border: 4px solid #ccc;
    border-top-color: #115172;
    border-radius: 50%;
    animation: dxw3-spin 0.8s linear infinite;
}

@keyframes dxw3-spin {
    to { transform: rotate(360deg); }
}
