.redirect {
    background-image: url("../images/redirect_bg.jpg");
}

.redirect .container {
    padding-top: 100px;
    padding-bottom: 130px;
}

.road {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 45px;
    gap: 19px;
    margin-top: 30px;
}

.redirect__spinner {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: flex-start;
}

.redirect__title {
    font-family: "Inter", sans-serif;
    font-size: 18px;
    font-weight: 600;
    line-height: 16px;
    letter-spacing: -0.01em;
    margin-top: 13px;
}

.road__img {
    max-width: 101px;
    min-height: 14px;
    width: 75px;
}

@keyframes redirectLoader {
    0% {
        background-color: #d9d9d9;
    }

    50% {
        background-color: #09D171;
    }

    100% {
        background-color: #d9d9d9;
    }
}

.road__loader {
    display: flex;
    align-items: center;
    gap: 6px;
}

.road__loader div {
    width: 30px;
    height: 4px;
    border-radius: 9px;
    background-color: #d9d9d9;
    animation: redirectLoader linear 1.5s infinite;
}

.road__loader div:nth-child(1) {
    animation-delay: 0.25s;
}

.road__loader div:nth-child(2) {
    animation-delay: 0.5s;
}

.road__loader div:nth-child(3) {
    animation-delay: 1s;
}

.road__loader div:nth-child(4) {
    animation-delay: 1.5s;
}

@media (min-width: 640px) {
    .redirect__title {
        font-size: 28px;
        font-weight: 600;
        line-height: 26px;
        margin-top: 28px;
    }

    .road {
        margin-top: 50px;
        gap: 40px;
    }

    .road__img {
        max-width: 234px;
        min-height: 34px;
        width: 160px;
    }

    .road__loader {
        gap: 20px;
    }

    .road__loader div {
        width: 50px;
        height: 4px;
        border-radius: 20px;
    }
}

@media (min-width: 875px) {
    .redirect-body .footer,
    .redirect-body .footer-desktop {
        display: none;
    }
}
