.bt-language-banner {
    position: absolute;
    top: 54px;
    right: 7px;
    background-color: #ffffff;
    border-radius: 20px;
    box-shadow: 0 0 15px 0 rgba(0, 0, 0, 0.1);
    padding: 20px;
    z-index: -1;
}

header:not(.header-main--new-graphic) .bt-language-banner {
    top: 64px;
}


.bt-language-banner::before {
    position: absolute;
    top: -20px;
    right: 35px;
    content: "";
    width: 0;
    height: 0;
    border-left: 15px solid transparent;
    border-right: 15px solid transparent;
    border-bottom: 20px solid #ffffff;
    filter: drop-shadow(0 -4px 4px rgba(0, 0, 0, 0.1));
}

.bt-language-banner__top {
    margin-bottom: 10px;
}

.bt-language-banner__bottom {
    display: flex;
    gap: 0 15px;
}

.bt-language-banner .btn {
    display: flex;
    align-items: center;
    padding: 12px 32px;
    font-size: 14px;
    line-height: 16px;
}

.bt-language-banner p {
    margin-bottom: 5px;
}

.bt-language-banner .btn-outline-primary {
    font-weight: 600;
    border-color: #291C60;
    color: #291C60;
}

.bt-language-banner .btn-outline-primary:hover {
    background-color: #291C60
}

.bt-language-banner--active {
    position: relative;
    overflow: hidden;
}

.bt-language-banner--active main::before {
    content: "";
    position: fixed;
    inset: 0;
    background: rgba(41, 28, 96, 0.8);
    z-index: 9998;
}

.bt-language-banner--active header.header-main {
    z-index: 9999;
}

@media screen and (max-width: 1439px) {
    .bt-language-banner {
        right: 20px;
    }
}

@media screen and (max-width: 991px) {
    .bt-language-banner {

    }

    .bt-language-banner::before {
        right: 134px;
    }

    header:not(.header-main--new-graphic) .bt-language-banner::before {
        right: 120px;
    }

}

@media screen and (max-width: 575px) {
    .bt-language-banner__bottom {
        flex-direction: column;
        gap: 15px 0;
    }

    .bt-language-banner .btn {
        justify-content: center;
    }

    .bt-language-banner .btn-outline-primary {
        padding: 10px 32px;
    }

    .bt-language-banner {
        width: 100%;
        right: 0;
    }

    .bt-language-banner::before {
        right: 154px;
    }

    header:not(.header-main--new-graphic) .bt-language-banner::before {
        right: 138px;
    }
}