
/***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: 96%;
	border-radius: 8px;
	max-width: 480px;
    padding: 20px 25px 10px;
    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;
}

.title-modal-forms {
    font-size: 25px;
    text-align: center;
    font-weight: 500;
    padding-bottom: 19px;
}
.modal-form label {
    font-size: 14px;
    padding-bottom: 8px;
    font-weight: 300;
    color: #888;
}
input.wpcf7-submit {
-webkit-appearance: button;
    position: relative;
    z-index: 3;
    font-weight: 400;
    text-shadow: 0px 0px 0px transparent;
    font-size: 18px;
    background: rgb(0 0 0);
    padding: 20px 40px !important;
    color: #fff;
    transition: 0.3s;
    cursor: pointer;
    border-radius: 8px !important;
    width: auto !important;
    border: none !important;
}
.button-order:hover {
    background: rgba(251, 241, 3, 1); color: #000;
}
.modal-form input, .modal-form textarea{font-size: 16px;}
.modal-form textarea{height: 96px;}
.modal-form p{padding-bottom: 4px;}
/****.form_container***/
.form_container input, .form_container textarea, .modal-form input, .modal-form textarea{
    border: 1px solid rgba(217, 217, 217, 1);
    padding: 20px;
    border-radius: 8px;
    width: 100%;
    margin-bottom: 4px;	     box-sizing: border-box;
}
.form_container textarea{
	height:147px;
}
.form_container p{
	padding-bottom: 12px;
}
/****end .form_container***/





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

/**end modal**/