.account__form-subscribe{
    margin-top: 60px;

    width: 100%;
}

.account__subscribe{
    padding: 15px 23px 30px 23px;

    background: #F2F3F4;
}

.account__subscribe-title{
    font-size: 35px;
    font-weight: 400;
    line-height: 42.36px;
    text-align: left;

    color: #121313;
}

.account__subscribe-row{
    margin-top: 30px;

    display: flex;
    align-items: center;
}

.account__subscribe-row-group{
    display: flex;
    align-items: center;

    margin-right: 25px;
}

.account__subscribe-row-group input{
    width: 24px;
    height: 24px;
}

.account__subscribe-row-group label{
    font-size: 14px;
    font-weight: 400;
    line-height: 16.94px;
    text-align: left;

    color: #121313;

    margin-left: 15px;

}

.account__subscribe-submit{
    display: flex;
    align-items: center;
    justify-content: center;

    margin-top: 60px;

    width: 100%;
    max-width: 434px;

    color: #fff;

    padding-top: 18px;
    padding-bottom: 19px;

    background: #121313;

    border: 1px solid #121313;

    transition: .3s linear;

    font-family: "Inter", sans-serif;

    font-size: 16px;
    font-weight: 500;
    line-height: 17.69px;

    border-radius: 3px;


    cursor: pointer;
}

.account__subscribe-submit:hover{
    color: #121313;


    background: #fff;
}

.account__subscribe-input-holder{
    display: flex;
    align-items: center;
    justify-content: center;
    
    position: relative;
}

.account__subscribe-input-check{
    display: flex;
    align-items: center;
    justify-content: center;

    width: 25px;
    height: 25px;

    
    position: absolute;

    top: 0;
    left: 0;

    border-radius: 3px;

    background-color: #121313;

    z-index: 2;

    pointer-events: none;

}

.account__subscribe-input-check {
    display: none; /* Изначально скрываем все галочки */
}
.account__subscribe-input-holder.active .account__subscribe-input-check {
    display: flex; /* Показываем галочку, если радио-кнопка активна */
}


@media screen and (max-width: 1200px){

    .account__subscribe{
        padding: 16px 10px 25px 10px;
    }

    .account__subscribe-title{
        font-size: 18px;
        font-weight: 400;
        line-height: 21.78px;
        text-align: left;
    }

    .account__subscribe-row{
        margin-top: 21px;
    }

    .account__subscribe-row-group label{
        font-size: 12px;
        font-weight: 400;
        line-height: 14.52px;
    }

    .account__form-subscribe{
        margin-top: 24px;
    }

    .account__subscribe-submit{
        margin-top: 40px;

        font-size: 14px;
        font-weight: 500;
        line-height: 15.48px;

        padding-top: 14px;
        padding-bottom: 14px;

    }
}

.account__mobile-titling{
    display: none;
}

@media screen and (max-width: 991px){
    .account__mobile-titling{
        width: 100%;

        margin-top: 40px;

        width: 100%;
        border-bottom: 1px solid #F2F3F4;
    }

    .account__mobile-titling-text{
        border-bottom: 1px solid #000000;
        padding-bottom: 8px;

        width: fit-content;
    }
}



