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

    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;
}

/* Individual field error messages */
span.wpcf7-not-valid-tip {
    color: #FFFFFF;
    font-size: 15px;
    font-weight: 300;
    display: block;
    position: absolute;
    text-align: right;
    right: 0;
    width: max-content;
    bottom: -25px;
    background: #910B0B;
    padding: 3px 5px;
    line-height: 1.3em;
    z-index: 2;
}

span.wpcf7-not-valid-tip:after {
    content: "\e913";
    font-family: 'king-door';
    position: absolute;
    right: 15px;
    bottom: 40px;
    font-size: 25px;
    color: #CB2F2F;
}

.wpcf7-not-valid select,
.wpcf7-not-valid textarea,
input.wpcf7-not-valid,
.wpcf7-not-valid .choices {
    background-color: #E5F4FF;
    border: 2px solid #CB2F2F;
}

.wpcf7 form.invalid .wpcf7-response-output {
    margin: 20px 0 0 0!important;
    color: #CB2F2F;
    border: 2px solid #CB2F2F!important;
}

.wpcf7 form.sent .wpcf7-response-output {
    margin: 20px 0 0 0!important;
    color: #46b450;
    border: 2px solid #46b450!important;
}