
/***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: 90%;
    max-width: 460px;
    padding: 40px 34px 15px;
    color: #fff;
    background: #038136;
    box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.38);
    box-sizing: border-box;
    display: none;
}

.close-modal-form {
    line-height: 0px;
    font-size: 16px;
    display: inline-block;
    padding: 8px 10px;
    color: #fff;
    position: absolute;
    top: -1px;
    right: 0px;
    cursor: pointer;
	transform: rotate(0deg);
    transition: 0.3s;
}
.close-modal-form:hover{
	transform: rotate(180deg);
    transition: 0.3s;
}
.forms-container input {
    width: 100%;
    border: none;
    padding: 10px 15px;
    font-size: 16px;
    display: inline-block;
    border-bottom: 1px solid #ababab;
    box-sizing: border-box;
}
.title-modal-forms {
    font-size: 22px;
    text-align: center;
    padding-bottom: 12px;
    font-weight: 600;
    text-transform: uppercase;
}
.forms-container label {
    font-size: 15px;
    padding-bottom: 8px;
    font-weight: 300;
    color: #fff;
}
.forms-container textarea {
    width: 100%;
    border: none;
    padding: 10px 15px;
    font-size: 16px;
    display: inline-block;
    border-bottom: 1px solid #ababab;
    box-sizing: border-box;
    height: 100px;
}
.forms-container p{padding-bottom:5px !important;}
button.submit_form {
    -webkit-appearance: button;
    font-size: 16px;
    padding: 16px 20px !important;
    cursor: pointer;
    transition: 0.3s;
    text-transform: uppercase;
    position: relative;
    z-index: 3;
    font-weight: 600;
    text-shadow: 0px 0px 0px transparent;
    border: none;
    border-radius: 0%;
    border: 0px transparent;
    width: 100%;
    box-sizing: border-box; margin-top: 16px;
}
.wpcf7-form-control-wrap,  .wpcf7-form-control-wrap .wpcf7-form-control, .wpcf7-form-control-wrap .wpcf7-form-control > span.wpcf7-list-item{
	display:block;
}
.wpcf7-form-control-wrap label{
display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: flex-start; padding-top: 20px;
}
.wpcf7-form-control-wrap label > input{
	    width: 22px;
    margin-right: 15px;
    height: 20px;
}

@media(max-width:640px) {
    .modal-form {
        padding: 40px 20px 30px 20px;
	    box-sizing: border-box;
    }
}
.wpcf7 form.sent .wpcf7-response-output{display:none !important;}
/**end modal**/



