
/* Contact Form 7 CSS */

.field-row.first {
    display: flex;
}
.field-row.first .field {
    width: 50%;
    padding-right: 7.5px;
}
.field-row.first .field:last-child {
    padding-right: 0;
    padding-left: 7.5px;
}
.field {
    margin-bottom: 5px;
}
.field input {
/* 	font-family: "", Sans-serif; */
    width: 100%;
    background: #ffffff;
    border-color: #00000015;
    margin-bottom: 0;
    line-height: 30px;
    padding: 10px 15px;
	font-size: 14px;
    color: #000;
}
.field-row textarea.wpcf7-form-control.wpcf7-textarea {
/* 	font-family: "", Sans-serif; */
    width: 100%;
    height: 150px;
    margin-bottom: 0;
    line-height: 30px;
    padding: 10px 15px;
	font-size: 14px;
    color: #000;
    background: #ffffff;
    border-color: #00000015;
}
input.wpcf7-form-control.wpcf7-date:focus,
input.wpcf7-form-control.wpcf7-number:focus,
input.wpcf7-form-control.wpcf7-quiz:focus,
input.wpcf7-form-control.wpcf7-text:focus,
select.wpcf7-form-control.wpcf7-select:focus,
textarea.wpcf7-form-control.wpcf7-textarea:focus {
    border-color: #fff;
}
.field-btn p {
    display: flex;
    flex-direction: column;
    width: 400px;
    text-align: center;
    margin: 0 auto;
}
.field-btn .wpcf7-submit {
/* 	font-family: "", Sans-serif; */
    color: #fff;
    background: #afbe1c !important;
    border-color: #afbe1c;
    display: inline-block;
    text-align: center;
    font-weight: 500;
    border-radius: unset;
    font-size: 20px;
}
.wpcf7 .wpcf7-submit:disabled {
	cursor: not-allowed;
}
.wpcf7 input[type="url"],
.wpcf7 input[type="email"],
.wpcf7 input[type="tel"] {
	direction: ltr;
}
.field-btn {
    margin-top: 30px;
}

@media screen and (max-width: 767px) {
    .field-row.first {
        flex-wrap: wrap;
    }
    .field-row.first .field {
        padding: 0;
        width: 100%;
    }
    .field-row.first .field:last-child {
        padding: 0;
    }
    .field-btn {
        text-align: center;
        margin-top: 20px;
    }
    .field-btn .wpcf7-submit {
		width: 300px !important;
    }
}