﻿/* Loader Styles */

.loader-gif {
    width: 200px;
    height: 307px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
    animation: pulse-logo 1.5s ease-in-out infinite;
}

@keyframes pulse-logo {
    0% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 1;
    }

    50% {
        transform: translate(-50%, -50%) scale(1.05);
        opacity: 0.85;
    }

    100% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 1;
    }
}

@media (max-width: 768px) {
    .loader-gif {
        width:100px;
        height: 153px;
    }
}

.pulse-loader1 {
    position: fixed;
    top: 50%;
    left: 50%;
    width: 492px;
    height: 492px;
    background-color: #000000;
    border-radius: 50%;
    transform: translate(-50%, -50%);
    z-index: 1;
    animation: shrink-circle 0.5s ease-in-out forwards;
}

@media (max-width: 768px) {
    .pulse-loader1 {
        width: 220px;
        height: 220px;
    }
}

@keyframes shrink-circle {
    0% {
        transform: translate(-50%, -50%) scale(1);
    }

    30% {
        transform: translate(-50%, -50%) scale(1);
    }

    99% {
        transform: translate(-50%, -50%) scale(0.7);
    }

    100% {
        transform: translate(-50%, -50%) scale(0.001);
    }
}

.pulse-loader2 {
    position: fixed;
    top: 50%;
    left: 50%;
    width: 300px;
    height: 300px;
    background-color: #000000;
    border-radius: 50%;
    transform: translate(-50%, -50%);
    z-index: 1;
    animation: expand-circle 2s ease-in-out forwards;
    animation-delay: 0.5s;
}

@media (max-width: 768px) {
    .pulse-loader2 {
        width: 150px;
        height: 150px;
    }
}

@keyframes expand-circle {
    0% {
        transform: translate(-50%, -50%) scale(1);
    }

    30% {
        transform: translate(-50%, -50%) scale(20);
    }

    100% {
        transform: translate(-50%, -50%) scale(30);
    }

    
}



/*
.loader-container {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    width: 100vw;
    background-color: white;
    position: fixed;
    top: 0;
    left: 0;
    overflow: hidden;
    z-index: 9999;
    font-family: 'IRANYekanXFaNum', 'Yekan', 'Tahoma', 'Public Sans', 'Roboto', 'Arial', 'sans-serif';
}

.brand-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    text-align: center;
    z-index: 2;
}

.spinner-container {
    width: 120px;
    height: 120px;
    display: flex;
    justify-content: center;
    align-items: center;
}
*/

/*.spinner-ring-outer {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 4px solid transparent;
    border-top: 4px solid #3f51b5;
    border-right: 4px solid #3f51b5;
    animation: spin 3s linear infinite;
    box-shadow: 0 0 10px rgba(63, 81, 181, 0.3);
}

.spinner-ring-middle {
    position: absolute;
    width: 90%;
    height: 90%;
    border-radius: 50%;
    border: 4px solid transparent;
    border-top: 4px solid #4a66c7;
    border-left: 4px solid #4a66c7;
    animation: spin-reverse 2.5s linear infinite;
}

.spinner-ring-inner {
    position: absolute;
    width: 80%;
    height: 80%;
    border-radius: 50%;
    border: 4px solid transparent;
    border-bottom: 4px solid #5677e6;
    border-right: 4px solid #5677e6;
    animation: spin 2s linear infinite;
}*/

/*@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

@keyframes spin-reverse {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(-360deg); }
}*/

/*.loader-gif {
    width: 80px;
    height: 80px;
    margin: 0 auto;
    display: block;
    z-index: 2;
    filter: drop-shadow(0 0 5px rgba(0, 0, 0, 0.1));
}*/

/*.loading-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 15px;
}
*/
/*.loading-text {
    font-family: 'IRANYekanXFaNum', 'Yekan', 'Tahoma', 'Public Sans', 'Roboto', 'Arial', 'sans-serif';
    color: black !important;
    font-size: 22px;
    text-align: center;
    direction: rtl;
    text-shadow: 0 0 5px rgba(71, 75, 255, 0.2);
}*/

/*.loading-dots {
    font-family: 'IRANYekanXFaNum', 'Yekan', 'Tahoma', 'Public Sans', 'Roboto', 'Arial', 'sans-serif';
    color: black !important;
    font-size: 28px;
    font-weight: bold;
    text-shadow: 0 0 5px rgba(71, 75, 255, 0.2);
    letter-spacing: 4px;
    height: 30px;
    min-width: 60px;
    text-align: center;
}*/

/*@media (max-width: 768px) {
    .brand-container {
        width: 90%;
        gap: 15px;
    }
    
    .loading-text {
        font-size: 20px;
    }
    
    .loading-dots {
        font-size: 24px;
    }
} */