.loader-popup {
    position: absolute;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    top: 0;
    padding: 0 var(--padding-page-aside);
    background: rgba(var(--b),.9);
    -webkit-backdrop-filter: blur(3px);
    backdrop-filter: blur(3px);
    z-index: 99
}

.loader-popup-text {
    font-size: 16px;
    color: rgba(var(--b-sc),.8);
    padding: 0 30px;
    margin-top: 10px;
    word-break: break-word;
    animation: 1s loader-popup-text 4.5s ease forwards
}

.loader-popup-btn {
    opacity: 0;
    margin-top: 20px;
    transition: opacity .3s ease;
    margin-bottom: 30px;
    animation: 1s loader-popup-btn 4.5s ease forwards
}

.loader-popup-countdown {
    height: 75px;
    line-height: 75px
}

.loader-popup-countdown:before {
    content: "";
    font-size: 60px;
    color: rgba(var(--b-sc),.8);
    animation: 5s loader-popup-countdown ease forwards reverse
}

@keyframes loader-popup-text {
    to {
        margin-top: -75px
    }
}

@keyframes loader-popup-btn {
    0% {
        opacity: 0
    }

    to {
        opacity: 1
    }
}

@keyframes loader-popup-countdown {
    20% {
        content: "1"
    }

    40% {
        content: "2"
    }

    60% {
        content: "3"
    }

    80% {
        content: "4"
    }

    to {
        content: "5"
    }

    0% {
        opacity: .1
    }
}
