
.box-modal{
    width: 600px;
    background: white;
    padding: 70px 0;
    color: #302E2C;
    position: relative;
}
.box-modal__content .box-modal__title{
    font-weight: bold;
    font-size: 20px;
    line-height: 24px;
    padding-bottom: 5px;
    text-align: center;
}

.box-modal__content{
}

.box-modal__content form{
    width: 320px;
    margin: 0 auto;
}
.form-input, .form-textarea{
    width: 100%;
    display: block;
    padding-top: 20px;
    font-weight: bold;
    font-size: 13px;
    line-height: 22px;

}
.form-input input{
    display: block;
    margin: 0 auto;
    height: 48px;
    width: 100%;
    border: 1px solid rgba(48, 46, 44, 0.2);
    border-radius: 4px;
    padding: 13px 10px;
    font-weight: normal;
    outline: none;
}
.box-modal__content form textarea{

    resize: none !important;
    width: 100%;
    height: 80px;
    border: 1px solid rgba(48, 46, 44, 0.2);
    border-radius: 4px;
    padding: 13px 10px;
}

.box-modal__content form .box-modal-form__policy{
    display: flex;
    font-style: normal;
    font-weight: normal;
    font-size: 10px;
    line-height: 14px;
    padding-top: 20px;
    user-select: none;
}
.box-modal__content form input[type=checkbox]{
    margin-right: 10px;
}


.box-modal__content form .form-button__container{
    padding-top: 25px;
    text-align: right;
}
.box-modal__content form button{
    width: 118px;
    height: 48px;
    background: #40BF6C;
    border-radius: 4px;
    font-family: Montserrat;
    font-style: normal;
    font-weight: 600;
    font-size: 12px;
    line-height: 18px;
    color: #FFFFFF;
    padding: 15px;
    text-transform: uppercase;
    cursor: pointer;
    transition: .2s ease;
    border: none;
}
.box-modal__content form button:hover{
    background: #37a55d;
}

.box-modal__content a{
    color: #302E2C;
}

.box-modal-form__policy ~ div{
    font-size: 12px;
    line-height: 24px;
    text-align: center;
    padding-top: 25px;
}
.box-modal_close{
    /*background: url("../img/Group 1811.png") no-repeat;*/
    background: url("../img/modal-close-btn.png") no-repeat;
    background-size: 100%;
    background-position: center;
    position: absolute;
    top: 1px;
    right: 1px;
    width: 48px;
    height: 48px;
    cursor: pointer;
}

@media screen and (max-width: 700px){
    .box-modal{
        width: auto;
        padding: 25px;
    }
    .box-modal__content form{
        width: 100%;
        margin: 0 auto;
    }
    .form-button__container ~ div{
        font-size: 8px;
    }

}