﻿#loaderPS {
    position: fixed;
    inset: 0;
    z-index: 9999999;
    display: flex;
    align-items: center;
    justify-content: center;
}

.loaderps-bg {
    position: fixed;
    inset: 0;
    background: #fff;
    z-index: 9999999;
    display: flex;
    align-items: center;
    justify-content: center;
}

.loaderps-content {
    text-align: center;
}

.loaderps-logo {
    width: 200px;
    max-width: 72vw;
    height: auto;
    margin-bottom: 32px;
    filter: drop-shadow(0 4px 18px #b2ceea40);
}

.loaderps-dots {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 10px;
}

.dot {
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: #2b87c5;
    animation: loaderps-bounce 1.5s infinite ease-in-out;
    display: inline-block;
}

.delay-1 {
    animation-delay: 0.2s;
    background: #7dd8a2;
}

.delay-2 {
    animation-delay: 0.4s;
    background: #00ae4c;
}

@keyframes loaderps-bounce {
    0%, 80%, 100% {
        transform: translateY(0);
    }

    40% {
        transform: translateY(-18px);
    }

    60% {
        transform: translateY(-8px);
    }
}
