/**
 * Bajroshakti Page Loader Spinner
 * Version: 1.0.1
 */

.bsnp-loader-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(233, 238, 243, 0.85);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: var(--z-modal, 99999);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    transition: opacity 0.3s ease;
}

[data-theme="dark"] .bsnp-loader-overlay {
    background: rgba(10, 22, 40, 0.9);
}

.bsnp-loader-overlay.is-active {
    display: flex;
}

.bsnp-ripple {
    display: inline-block;
    position: relative;
    width: 80px;
    height: 80px;
    color: var(--accent-color);
}

.bsnp-ripple div {
    position: absolute;
    border: 4px solid currentColor;
    opacity: 1;
    border-radius: 50%;
    animation: bsnp-ripple-anim 1s cubic-bezier(0, 0.2, 0.8, 1) infinite;
}

.bsnp-ripple div:nth-child(2) {
    animation-delay: -0.5s;
}

@keyframes bsnp-ripple-anim {
    0% {
        top: 36px;
        left: 36px;
        width: 8px;
        height: 8px;
        opacity: 0;
    }
    4.9% {
        top: 36px;
        left: 36px;
        width: 8px;
        height: 8px;
        opacity: 0;
    }
    5% {
        top: 36px;
        left: 36px;
        width: 8px;
        height: 8px;
        opacity: 1;
    }
    100% {
        top: 0;
        left: 0;
        width: 80px;
        height: 80px;
        opacity: 0;
    }
}
