/*------------------------------------*\
    
    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 */
.wpcf7-not-valid-tip,
.wpcf7-form label.error {
    color: #FB6464;
    font-size: 14px;
    font-weight: 700;
    display: block;
    position: relative;
    bottom: 0;
}

.full-width-contact .wpcf7-form label.error{
    color: #fff;
}

.wpcf7-not-valid-tip:after,
.wpcf7-form label.error:after {
    content: "!";
    position: absolute;
    right: 9px;
    top: -58px;
    font-size: 20px;
    font-weight: 700;
    color: #ECF1F5;
    width: 22px;
    height: 22px;
    border-radius: 4px;
    background-color: #FF6464;
    display: flex;
    align-items: center;
    justify-content: center;
}


select.wpcf7-not-valid,
textarea.wpcf7-not-valid,
input.wpcf7-not-valid,
.wpcf7-not-valid .choices,
.wpcf7-form input.error,
.wpcf7-form textarea.error {
    border-color: #FB6464;
    border-left: 5px solid #FB6464;
    padding: 12px 15px 12px 11px;
}