.aqarat-simple-loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.95);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 99999;
    transition: all 0.5s ease;
}

.aqarat-simple-loader.fade-out {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.aqarat-loader-content {
    text-align: center;
    color: #333;
    font-family: Arial, sans-serif;
}

.aqarat-spinner {
    width: 40px;
    height: 40px;
    border: 4px solid #f3f3f3;
    border-top: 4px solid #8a1538;
    border-radius: 50%;
    animation: aqarat-spin 1s linear infinite;
    margin: 0 auto 15px;
}



@keyframes aqarat-spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

@media (max-width: 768px) {

    
    .aqarat-spinner {
        width: 35px;
        height: 35px;
        border-width: 3px;
    }
}