﻿/* ===================================
   GLOBAL MASTER LOADER
=================================== */

.global-loader-overlay {
    position: fixed;
    inset: 0;
    z-index: 999999;
    background: rgba(255,255,255,0.75);
    backdrop-filter: blur(3px);
    display: none;
    justify-content: center;
    align-items: center;
}

/* Loader Box */

.global-loader-box {
    text-align: center;
}

/* Dots */

.global-loader-dots {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

    .global-loader-dots span {
        width: 14px;
        height: 14px;
        border-radius: 50%;
        background: #1E5A2B;
        animation: loaderBounce .6s infinite alternate;
    }

        .global-loader-dots span:nth-child(2) {
            animation-delay: .2s;
        }

        .global-loader-dots span:nth-child(3) {
            animation-delay: .4s;
        }

/* Text */

.global-loader-text {
    margin-top: 8px;
    font-size: 8px;
    font-weight: 600;
    color: #1E5A2B;
    letter-spacing: .5px;
}

/* Animation */

@keyframes loaderBounce {

    from {
        transform: translateY(0);
        opacity: .5;
    }

    to {
        transform: translateY(-10px);
        opacity: 1;
    }
}
