form.mx_form .mx_form_row {
    display: table;
    clear: both;
    margin-bottom: 3px;
    width: 100%;
    color: #221e1f;
}

form.mx_form .mx_form_spacer {
    display: table;
    clear: both;
    height: 1em;
}

form.mx_form .mx_form_label {
    display: table;
    clear: both;
    height: 1em;
    font-weight: bold;
}

form.mx_form label {
    width: 100%;
    float: left;
    margin-bottom: 5px;
    letter-spacing: 1px;
    line-height: 1.8;
    font-size: 14px;
    margin-top: 7px;
}

.contact form.mx_form label {
    color: #fff;
}

form.mx_form input[type="submit"] {
    padding: 14px 20px;
    height: auto;
    line-height: 1;
    text-transform: uppercase;
    font-size: 13px;
    font-weight: 400;
    text-decoration: none;
    letter-spacing: 1px;
    cursor: pointer;
    color: #fff;
    border: 2px solid #a4191c;
    background: #a4191c;
    border-radius: 3px;
    transition: all .3s ease;
}

form.mx_form input[type="submit"]:hover {
    color: #a4191c;
    border: 2px solid #a4191c;
    background-color: #ffffff;
}

form.mx_form .mx_form_input {
    float: left;
    display: table;
    width: 100%;
}

.mx_captcha {
    width: 50px;
}

.mx_form_input select,
.mx_form_input input,
.mx_form_input textarea {
    padding: 10px 15px;
    width: 100%;
    max-width: 600px;
    border: solid 1px #eee;
    border-radius: 5px;
    color: #221e1f;
    text-align: left;
}

.mx_form_input textarea {
    height: 78px;
    margin-bottom: 10px;
}

form.mx_form input[type="checkbox"],
form.mx_form input[type="radio"] {
    -webkit-appearance: none;
    width: 20px;
    padding: 0;
    margin: 0;
    background-color: transparent;
    border: none;
    transition: .2s;
}

form.mx_form input[type="checkbox"]:before,
form.mx_form input[type="radio"]:before {
    content: "\2714";
    border: 0.1em solid #000;
    border-radius: 50%;
    display: inline-block;
    width: 1em;
    height: 1em;
    padding-left: 0.2em;
    padding-bottom: 0.2em;
    margin-right: 0.2em;
    vertical-align: bottom;
    color: transparent;
    transition: .2s;
}

form.mx_form input[type="checkbox"]:checked:before,
form.mx_form input[type="radio"]:checked:before {
    background-color: #a4191c;
    border-color: #a4191c;
    color: #fff;
}

form.mx_form input[type="checkbox"]:disabled:before,
form.mx_form input[type="radio"]:disabled:before {
    transform: scale(1);
    border-color: #aaa;
}

form.mx_form input[type="checkbox"]:checked:disabled:before,
form.mx_form input[type="radio"]:checked:disabled:before {
    background-color: #bfb;
    border-color: #bfb;
}

.mx_form_input_option {
    width: 100%;
    float: left;
    margin-bottom: 10px;
    padding: 0 15px;
    text-align: left;
    font-size: 16px;
    border: solid 0px #cccccc;
    border-radius: 5px;
    color: #221e1f;
}

@media screen and (min-width: 1024px) and (max-width: 1199px) {
    .mx_form_input textarea,
    .mx_form_input input {
        padding: 10px;
        width: 100%;
        max-width: 600px;
        border: solid 1px #cccccc;
        border-radius: 5px;
        color: #221e1f;
        text-align: left;
    }
    .mx_form_input textarea {
        margin-bottom: 10px;
    }
}

::placeholder {
    color: #ccc;
    opacity: 1; /* Firefox */
}

:-ms-input-placeholder {
    color: #ccc; /* Internet Explorer 10-11 */
}

::-ms-input-placeholder {
    color: #ccc; /* Microsoft Edge */
}

.grecaptcha-badge {
    width: 256px;
    height: 60px;
    transition: right 0.3s ease 0s;
    position: fixed;
    bottom: 64px !important;
    right: -186px;
    box-shadow: grey 0px 0px 5px;
    z-index: 1001 !important;
}

.mx_error input,
.mx_error textarea {
    border-color: red;
}

.mx_error .mx_form_input_option {
    color: red !important;
}
