.personal_prop-title{
    font-style: normal;
    font-weight: bold;
    font-size: 16px;
    line-height: 22px;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: #0C121C;
    display: block;
    margin-bottom: 30px;
}



/*CHECKBOX BTN*/
.checkbox__btn .checkbox__item {
    font-size: 16px;
    line-height: 19px;
    letter-spacing: 0.05em;
    text-transform: uppercase;

    color: #4A4F54;



    position: relative;
    padding-left: 40px;

    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    margin-bottom: 20px;
    width: 100%;
    display: flex;
    align-items: center;
}
.checkbox__btn .checkbox__item .checkbox__item-img{
    width: 90px;
    height: 64px;
    overflow: hidden;
    margin-right: 18px;
}
.checkbox__btn .checkbox__item .checkbox__item-img img{
    width: 100%;
    height: 100%;
}
.checkbox__btn .checkbox__item input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}
.checkbox__btn .checkmark {
    height: 25px;
    width: 25px;
    border: 1px solid #eee;
    border-radius: 0px;
    background: #fff;
    position: absolute;
    left: 0;
    transform: translate(0%, -50%);
    top: 50%;
}
.checkbox__btn .checkbox__item:hover input ~ .checkmark {
    background-color: #cccccc26;
}
.checkbox__btn .checkbox__item input:checked ~ .checkmark {
    background-color: #E40C25;
}
.checkbox__btn .checkmark:after {
    content: "";
    position: absolute;
    display: none;
}
.checkbox__btn .checkbox__item input:checked ~ .checkmark:after {
    display: block;
}
.checkbox__btn .checkbox__item .checkmark:after {
    left: 9px;
    top: 6px;
    width: 5px;
    height: 10px;
    border: solid white;
    border-width: 0 2px 2px 0;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
}


.checkbox__btn-info label.checkbox__item{
    font-style: normal;
    font-weight: 450;
    font-size: 10px;
    line-height: 16px;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: #4A4F54;
}
.checkbox__btn-info label.checkbox__item .checkmark {
    transform: none;
    top: 0;
}
.personal_proposition button{
    width: 100%;
    max-width: 200px;
}
@media (max-width: 767.98px){
    .checkbox__btn .checkbox__item .checkbox__item-img {
        display: none;
    }
    .checkbox__btn.d-flex {
        flex-direction: column;
    }
}
@media (max-width: 479.98px){
    .personal_proposition button{
        max-width: none;
    }
}