.mono-page__wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    height: 100%;
    padding: 84px 16px;
}

@keyframes dot-keyframes {
    0% {
        transform: scale(1, 1);
    }

    25% {
        transform: scale(0.2, 0.2);
    }

    50% {
        transform: scale(1, 1);
    }
}

.mono-page__loader {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
    height: 24px;
    width: 54px;
    margin: 0 auto 8px;
}

.loading {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: #D8D8D8;
    animation: dot-keyframes 1.15s infinite ease-in-out;
}

.loading-0 {
    animation-delay: .0s;
}

.loading-1 {
    animation-delay: .15s;
}

.loading-2 {
    animation-delay: .3s;
}

.loading-3 {
    animation-delay: .45s;
}

.mono-page__waiting {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
    width: 100%;
    text-align: center;
    max-width: 485px;
    margin: 0 auto;
}

.mono-page__title {
    font-size: 18px;
    text-transform: uppercase;
    color: #000;
    line-height: 150%;
    margin: 0 0 8px;
    font-weight: 400;
}

.mono-page__text {
    font-size: 14px;
    font-weight: 200;
    color: #838889;
    line-height: 150%;
    margin: 0 0 50px;
}

.mono-page__error {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
    width: 100%;
    text-align: center;
    max-width: 485px;
    margin: 0 auto;
}

.mono-page__error-image {
    margin-bottom: 36px;
}

.mono-page__btns {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px;
}

.mono-page__btns--group .mono-page__btn {
    width: 212px;
}

.mono-page__btn,
.mono-page__btn:visited {
    width: 253px;
    height: 48px;
    border: 1px solid #4F4645;
    background-color: #4F4645;
    color: #fff;
    font-weight: 500;
    font-size: 14px;
    text-transform: uppercase;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.2s ease;
}

.mono-page__btn:hover {
    background-color: #161619;
    border-color: #161619;
}

.mono-page__btn.light {
    background-color: #fff;
    color: #4F4645;
}

.mono-page__btn.light:hover {
    background-color: #4F4645;
    border-color: #4F4645;
    color: #fff;
}

.running-line ~ .site {
    min-height: calc(100dvh - 41px) !important;
}

.svg-icon svg {
    vertical-align: -0.125em !important;
}