/*------------------------------------*\
    
    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 slider-specific styles in individual block stylesheets

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


/* 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 */
label.wpcf7-not-valid-tip {
 color: #BB2E31 !important;
 top: 5px;
 width: calc(100% - 27px);
}

input.wpcf7-not-valid-tip {
    outline: none; /* Removes blue border on focus */
    border: 1px solid #fff;
    border-left: 10px solid #BB2E31;
}

label.wpcf7-not-valid-tip::after {
    content: "\e911";
    font-family: 'icomoon';
    position: absolute;
    top: 14px;
    right: 17px;
}
/* Entire form error message */
.wpcf7-response-output {
    position: absolute;
    left: 10px;
    width: calc(100% - 20px);
    background-color: #BB2E31;
    color: #fff;
    padding: 3px 15px;
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
    bottom: -25px;
}

/* Styling for fields that have errors */
select.wpcf7-not-valid,
textarea.wpcf7-not-valid,
input.wpcf7-not-valid,
.wpcf7-not-valid .choices {
    
    
}