/*------------------------------------*\
    
    WebFX CF7 Customizations - Global styling for all CF7 Forms

    Add custom CF7 form styling to this file if it should be applied to all CF7 forms on the site
    Otherwise, put your block-specific styles in individual block stylesheets so that various block-specific styles aren't loaded on every CF7 form

\*------------------------------------*/


/* Default Radio/Checkbox Style (if using CF7) */
.wpcf7 .wpcf7-radio .wpcf7-list-item,
.wpcf7 .wpcf7-checkbox .wpcf7-list-item {
    display: inline-block;
    margin-right: 15px;
    margin-bottom: 10px;
    /* incase items go to 2 lines */
}

.wpcf7 .wpcf7-radio .wpcf7-list-item-label,
.wpcf7 .wpcf7-checkbox .wpcf7-list-item-label {
    margin-left: 5px;
}

/* CF7 Validation (Remove if not using CF7) */

/* Individual field error messages */
/* Individual field error messages */
.wpcf7 .wpcf7-not-valid-tip,
.wpcf7 .error {
    text-transform: uppercase;
    font-family: "Roboto Condensed", sans-serif;
    font-size: 12px;
    font-weight: 700;
    line-height: 23px;
    color: #ac2022;
}

.wpcf7 .wpcf7-not-valid-tip:after {
    content: "!";
    display: flex;
    justify-content: center;
    align-items: center;
    width: 32px;
    height: 32px;
    position: absolute;
    top: 11px;
    right: 11px;
    z-index: 11;
    font-family: Helvetica, "sans-serif";
    font-size: 20px;
    font-weight: 700;
    text-align: center;
    border-radius: 32px;
    background-color: #ac2022;
    color: #fff;
}

/* Entire form error message */
.wpcf7 .wpcf7-form .wpcf7-response-output:empty {
    display: none;
}

.wpcf7 .wpcf7-form .wpcf7-response-output {
    margin: 32px 0 0;
    padding: 20px;
    border: none;
    color: #fff;
}

.wpcf7 .wpcf7-form.invalid .wpcf7-response-output,
.wpcf7 .wpcf7-form.unaccepted .wpcf7-response-output,
.wpcf7 .wpcf7-form.payment-required .wpcf7-response-output,
.wpcf7 .wpcf7-form.failed .wpcf7-response-output,
.wpcf7 .wpcf7-form.aborted .wpcf7-response-output,
.wpcf7 .wpcf7-form.spam .wpcf7-response-output {
    background-color: #ac2022;
}

.wpcf7 .wpcf7-form.sent .wpcf7-response-output {
    background-color: #e07903;
}