/*------------------------------------*\
    
    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-radio .wpcf7-list-item,
.wpcf7-checkbox .wpcf7-list-item {
    display: inline-block;
    margin-right: 15px;
    margin-bottom: 10px;
    /* incase items go to 2 lines */
}

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

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

/* Individual field error messages */
.form-col .wpcf7-not-valid-tip {
    font-family: var(--font-gothambold);
    font-size: 12px;
    font-weight: 600;
    color: #EA6767;
    line-height: 1em;
    padding: 0 0;
    display: inline-block;
    border: none;
    border-radius: 4px;
    background: transparent;
    position: relative;
    bottom: -5px;
    right: 0;
    float: right;
    margin-right: 0;
    text-transform: uppercase;
    width: 100%;
}

.wpcf7-not-valid-tip::after {
    content: "\e900";
    display: inline-block;
    font-family: 'icomoon';
    font-size: 20px;
    position: absolute;
    top: -38px;
    right: 10px;
}

textarea ~ .wpcf7-not-valid-tip::after {
    top: -160px;
}

/* Entire form error message */
.wpcf7-response-output {
    color: #EA6767;
    border-color: #EA6767;
    font-weight: 600;
}

/* Styling for fields that have errors */
select.wpcf7-not-valid,
textarea.wpcf7-not-valid,
input.wpcf7-not-valid,
.wpcf7-not-valid .choices {
    border-color: #EA6767;
}
.wpcf7-form.submitting > .row {
    margin-bottom: 30px;
}