
/***modal****/
.hover-site{
width: 100%;
height: 120vh;
position: fixed;
top: 0px;
left: 0px;
z-index: 99;
background: #00000080;
display: none;
}
.modal-form {
    position: fixed;
    z-index: 999;
    overflow: unset;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 940px;
    padding: 0px;
    background: #fff;
    box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.38);
    display: none;
}

.close-modal-form {
    line-height: 0px;
    font-size: 16px;
    display: inline-block;
    padding: 8px 10px;
    color: #2c3544;
    position: absolute;
    top: -1px;
    right: 0px;
    cursor: pointer;
	transform: rotate(0deg);
    transition: 0.3s;
}
.close-modal-form:hover{
	transform: rotate(180deg);
    transition: 0.3s;
}
.modal-form input {
    width: 100%;
    border: none;
    padding: 10px 15px;
    font-size: 16px;
    display: inline-block;
    border-bottom: 1px solid #ababab;
    box-sizing: border-box;
}
.modal-form textarea{
    width: 100%;
    border: none;
    padding: 10px 15px;
    font-size: 16px;
    display: inline-block; height: 62px;
    border-bottom: 1px solid #ababab;
    box-sizing: border-box;	
}
.title-modal-forms {
    font-size: 25px;
    text-align: center;
    font-weight: 600;
    padding-bottom: 19px;
}
.modal-form label {
    font-size: 14px;
    padding-bottom: 8px;
    font-weight: 300;
    color: #000;
}
input.wpcf7-submit {
    -webkit-appearance: button;
    font-size: 15px;
    background: #c49a46;
    color: #000;
    padding: 16px 20px !important;
    cursor: pointer;
    transition: 0.3s;
    position: relative;
    z-index: 3;
    font-weight: 600;
    text-shadow: 0px 0px 0px transparent;
    border: none;
    border-radius: 0%;
    border: 0px transparent;
    font-size: 17px;
    background: var(--red);
    padding: 17px 28px;
    color: #fff;
    cursor: pointer;
    border-radius: 32px;
    font-weight: 400;
    border: none;
    overflow: hidden;
    display: inline-block;
    text-decoration: none;
    position: relative;
    z-index: 3;
    transition: 0.3s;	
}
.wpcf7-spinner{display:none !important;}
.button-order:hover {
    background: var(--black);
    transition: 0.3s;
}
.modal_form_my{
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: space-between;
        align-items: stretch;
}
.img_block_modal{
    width: 38%;
    object-fit: cover;
    object-position: center;	
}
.right_block_modal{
    width: 62%;
    padding: 25px 25px 15px 25px;
    box-sizing: border-box;	
}


@media(max-width:640px) {
    .modal-form {
        width: 300px;
        padding: 40px 20px 30px 20px;
	    box-sizing: border-box;
    }
}

/**end modal**/