
/***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%);
    max-width: 600px;
    padding: 30px 25px 16px;
    background: rgba(51, 51, 51, 1);
    box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.38);
    display: none;
    width: 96%;
    border-radius: 14px;
}

.close-modal-form {
line-height: 0px;
    font-size: 22px;
    display: inline-block;
    padding: 8px 10px;
    color: #ffffff;
    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;

    display: inline-block;
    border-bottom: 1px solid #ababab;
    box-sizing: border-box;
} 
.title-modal-forms {
    font-size: 30px;
    text-align: center;
    font-weight: 800;
    padding-bottom: 16px;
    color: #ffd700;
}
.modal-form label {
    font-size: 14px;
    padding-bottom: 8px;
    font-weight: 300;
    color: #888;
}
.wpcf7 form.failed .wpcf7-response-output, .wpcf7 form.aborted .wpcf7-response-output {
    border-color: #dc3232;
    color: red;
}
input.wpcf7-submit {
    -webkit-appearance: button;
    font-size: 20px;
    background: #ffd700;
    color: #000;
    padding: 22px 20px !important;
    cursor: pointer;
    transition: 0.3s;
    position: relative;
    z-index: 3;
    font-weight: 800;
    text-shadow: 0px 0px 0px transparent;
    border: 0px transparent;
    display: block;
    width: 100%;
    border-radius: 12px;
    margin-top: 21px;
}
.button-order:hover {
color: #fff;
    background: rgba(243, 227, 142, 1);
}
.fifty-input{
	width: calc(50% - 15px);
}
.fifty-input input, .max-input input, .max-input textarea{
	width: 100%; box-sizing: border-box; background: rgba(68, 68, 68, 1); border-radius: 13px; font-size:20px; padding: 18px 22px;     border: 0px; color: #fff;
}
.wpcf7 form.sent .wpcf7-response-output {
    border-color: #46b450;
    color: #46b450;
}


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

/**end modal**/