.redirect-banner {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(3px);
    padding: 0 20px;

    opacity: 0;
    visibility: hidden;

    z-index: 1031;

    transition: all .3s ease-in-out;
}

.redirect-banner .redirect-banner--close {
    position: absolute;
    right: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    top: 0;
    width: 32px;
    height: 32px;
    border-radius: 5px;
    font-weight: 600;
    border: 4px solid #223069;
    transform: translateY(calc(-100% - 10px));
}

.redirect-banner .redirect-banner--link {
    display: flex;
    align-items: center;
    justify-content: center;

    max-height: calc(100vh - 100px);

    transform: translateY(-10px);
    transition: all .3s ease-in-out;
}

.redirect-banner .redirect-banner--link .redirect-banner--image {
    display: flex;
    max-width: 100%;
    max-height: calc(100vh - 100px);
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
}

.redirect-banner.show {
    opacity: 1;
    visibility: visible;
}

.redirect-banner.show .redirect-banner--link {
    transform: translateY(0);
}