/* -------------------- */
/*        БАННЕР        */
/* -------------------- */

.ll-beta-subscription-banner {
    position: relative;
    z-index: -1;
    margin-top: -24px;
}

.ll-beta-subscription-banner__btn {
    position: relative;
    display: flex;
    flex-direction: column;
    width: 100%;
    font-family: inherit;
    text-align: left;
    border: none;
    border-radius: 0 0 24px 24px;
    appearance: none;
    outline: transparent;
    cursor: pointer;
    box-sizing: border-box;
    transition: all .3s linear;
}

.ll-beta-subscription-banner__btn_theme_blue {
    row-gap: 12px;
    padding: 44px 92px 24px 92px;
    background-color: #1567C5;
}

.ll-beta-subscription-banner__btn_theme_blue::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at bottom left,
        rgba(255, 255, 255, 0.3) 2%,
        rgba(255, 255, 255, 0.2) 6%,
        rgba(255, 255, 255, 0.1) 9%,
        rgba(255, 255, 255, 0.05) 11%,
        rgba(255, 255, 255, 0.025) 13%,
        transparent 70%
    );
}

.ll-beta-subscription-banner__btn_theme_blue::before {
    content: "";
    position: absolute;
    top: 44px;
    left: 23px;
    width: 50px;
    height: 60px;
    background-image: url('/img/skins/ll2019/ll-stars_icon.png');
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
}

.ll-beta-subscription-banner__btn_theme_violet {
    row-gap: 16px;
    padding: 44px 24px 20px;
    background-color: #3D3DC7;
}

.ll-beta-subscription-banner__title {
    font-size: 20px;
    font-weight: 600;
    line-height: 24px;
    color: #FFFFFF;
}

.ll-beta-subscription-banner__badge {
    align-self: flex-start;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 8px;
    min-width: 210px;
    padding: 5px 13px;
    border-radius: 12px;
    background-color: #FFFFFF;
    box-sizing: border-box;
}

.ll-beta-subscription-banner__subtitle {
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
    color: #FFFFFF;
}

.ll-beta-subscription-banner__close-button {
    position: absolute;
    top: 32px;
    right: 8px;
    width: 40px;
    height: 40px;
    padding: 0;
    background: transparent;
    border: none;
    box-sizing: border-box;
    appearance: none;
    outline: transparent;
    cursor: pointer;
    opacity: 0.7;
    transition: all .3s linear;
}

.ll-beta-subscription-banner__close-button::before {
    content: "";
    position: absolute;
    top: 13px;
    left: 20px;
    width: 1px;
    height: 14px;
    background-color: #FFFFFF;
    transform: rotate(45deg);
}

.ll-beta-subscription-banner__close-button::after {
    content: "";
    position: absolute;
    top: 13px;
    left: 20px;
    width: 1px;
    height: 14px;
    background-color: #FFFFFF;
    transform: rotate(-45deg);
}

@media (hover: hover) {
    .ll-beta-subscription-banner__btn_theme_blue:hover {
        background-color: #217DD1;
    }
    .ll-beta-subscription-banner__close-button:hover {
        opacity: 1;
    }
}

/* -------------------- */
/*        POPUP         */
/* -------------------- */

.ll-beta-subscription-popup {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1000;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, .7);
}

.ll-beta-subscription-popup__container {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 12px;
    max-width: 508px;
    margin: auto;
    padding: 16px 24px 24px;
    background-color: #FFFFFF;
    border-radius: 20px;
    box-sizing: border-box;
}

.ll-beta-subscription-popup__title {
    margin: 0;
    padding: 0;
    font-size: 26px;
    font-weight: 600;
    line-height: 32px;
}

.ll-beta-subscription-popup__subtitle {
    margin: 0 0 8px;
    padding: 0;
    font-size: 16px;
    font-weight: 400;
    line-height: 20px;
    text-wrap: balance;
}

.ll-beta-subscription-popup__text-close-button {
    align-self: flex-start;
    display: inline-block;
    margin: 0;
    padding: 8px 16px;
    font-family: inherit;
    font-size: 18px;
    font-weight: 600;
    line-height: 24px;
    color: #FFFFFF;
    background-color: #3E99ED;
    border-radius: 24px;
    border: none;
    appearance: none;
    outline: transparent;
    cursor: pointer;
    transition: all .3s linear;
    box-sizing: border-box;
}

.ll-beta-subscription-popup__icon-close-button {
    position: absolute;
    top: 24px;
    right: 24px;
    width: 24px;
    height: 24px;
    padding: 0;
    background: transparent;
    border: none;
    box-sizing: border-box;
    appearance: none;
    outline: transparent;
    cursor: pointer;
    transition: all .3s linear;
}

.ll-beta-subscription-popup__icon-close-button::before {
    content: "";
    position: absolute;
    top: 3px;
    left: 11px;
    width: 1.33px;
    height: 19px;
    background-color: #252626;
    transform: rotate(45deg);
}

.ll-beta-subscription-popup__icon-close-button::after {
    content: "";
    position: absolute;
    top: 3px;
    left: 11px;
    width: 1.33px;
    height: 19px;
    background-color: #252626;
    transform: rotate(-45deg);
}

@media (hover: hover) {
    .ll-beta-subscription-popup__text-close-button:hover {
        background: #217DD1;
    }
    .ll-beta-subscription-popup__icon-close-button:hover {
        opacity: 0.7;
    }
}
