
/***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: 522px;
	box-sizing: border-box;
    padding: 37px 27px 25px 27px;
    background: #fff;
    box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.38);
    border-radius: 16px;
	display: none;
}

.close-modal-form {
    line-height: 0px;
    font-size: 16px;
    display: inline-block;
    padding: 8px 10px;
    color: #2c3544;
    position: absolute;
    top: 3px;
    right: 3px;
    cursor: pointer;
	transform: rotate(0deg);
    transition: 0.3s;
}
.close-modal-form:hover{
	transform: rotate(180deg);
    transition: 0.3s;
}
.modal-form input, 
.form_container input, 
.modal-form textarea, 
.form_container textarea {
    width: 100%;
        padding: 18px 17px;
    font-size: 18px;
    display: inline-block;
    border: 1px solid #969696;
    box-sizing: border-box;
    border-radius: 32px;
}
.modal-form p, .form_container p{padding-bottom: 12px;}
.modal-form textarea{height: 100px;} 
.form_container textarea {height: 150px;}
.title-modal-forms {
    font-size: 28px;
    text-align: center;
    font-weight: 400;
    padding-bottom: 19px; line-height: 140%;
}
.form_container h3{
    font-size: 38px;
    font-weight: 600;
    padding-bottom: 20px;	
}
.modal-form label, .form_container label {
    font-size: 14px;
    padding-bottom: 8px;
    font-weight: 300;
    color: #888;
    padding-left: 22px;
}
input.wpcf7-submit {
	    -webkit-appearance: button;
	position: relative;
    z-index: 3;
	    text-shadow: 0px 0px 0px transparent;
    font-size: 19px;
    background: linear-gradient(45deg, #7df4ca, #11c8dd, #7df4ca);
    background-size: 200%;
    padding: 21px 28px !important;
    color: #fff; margin-top: 12px;
    cursor: pointer;
    border-radius: 32px;
    font-weight: 400;
    border: none;
    transition: background-position 0.6s 
ease, transform 0.2s 
ease;
}
.button-order:hover {
    background-position: right center;
}
@media(max-width:640px) {
    .modal-form {
        width: 320px;
        padding: 40px 20px 13px 20px;
        box-sizing: border-box;
    }
	.title-modal-forms{
		font-size: 22px;
		padding-bottom: 6px;
	}
	.modal-form input, .form_container input{
		padding: 16px 17px;
		font-size: 16px;
	}
	input.wpcf7-submit{margin-top: 2px;padding: 18px 28px !important;font-size: 17px;}
}

/**end modal**/