.page-loader {
    position: fixed;
    inset: 0;
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.45);
    transition: opacity 0.2s ease, visibility 0.2s ease;
}

.page-loader.is-hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.page-loader__content {
    text-align: center;
    padding: 20px 24px;
}

.page-loader__dots {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: 14px;
}

.page-loader__dots span {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #ffffff;
    opacity: 0.35;
    animation: loaderDots 1.2s infinite ease-in-out;
}

.page-loader__dots span:nth-child(1) {
    animation-delay: 0s;
}

.page-loader__dots span:nth-child(2) {
    animation-delay: 0.2s;
}

.page-loader__dots span:nth-child(3) {
    animation-delay: 0.4s;
}

.page-loader__text {
    color: #ffffff;
    font-size: 15px;
    font-weight: 500;
    letter-spacing: 0.2px;
    font-family: Arial, sans-serif;
}

@keyframes loaderDots {
    0%, 80%, 100% {
        transform: scale(0.8);
        opacity: 0.35;
    }
    40% {
        transform: scale(1.2);
        opacity: 1;
    }
}