/*------------------------------------*\
    
    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) */

.wpcf7-form-control-wrap {
    position: relative;
    display: block;
}

/* Individual field error messages */
.wpcf7-not-valid-tip:after {
    content: "\e90d";
    font-family: "iconmoon";
    position: absolute;
    top: 13px;
    right: 10px;
    color: #fff;
    background: #dc3232;
    border-radius: 2px;
    display: flex;
    align-items: center;
    text-align: center;
    justify-content: center;
    padding: 2.5px 11px 2.5px 12px;
    font-weight: 400;
}

/* Entire form error message */
.wpcf7-response-output {

}

/* Styling for fields that have errors */
select.wpcf7-not-valid,
textarea.wpcf7-not-valid,
input.wpcf7-not-valid,
.wpcf7-not-valid .choices {
    
}

.wpcf7-not-icon {
    position: absolute;
    bottom: 37px;
    right: 9px;
}

.wpcf7-not-valid-tip {
    color: #DB1818;
    font-weight: 700;
    display: block;
    padding: 6px 0 0 0;
    font-weight: 700 !important;
    letter-spacing: 0.05em;
    font-size: 14px !important;
    text-transform: uppercase;
    text-align: right;
}

.wpcf7-not-valid {
    border-color: #DB1818;
    border-left-width: 5px;
}

.full-image-form {
    position: relative;
    z-index: 1;
}

.full-image-form__img {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: -1;
}

.full-image-form__wrap {
    max-width: 710px;
    background: rgba(245,245,245,0.9);
    border-radius: 3px;
    margin: 0 auto;
    box-shadow: 0 0 20px rgba(0,0,0,0.1);
    padding: 30px 30px 40px 30px;
}

.full-image-form__head {
    margin-bottom: 20px;
}

.partner-field {
    display: none;
}

.has-partner .partner-field {
    display: block;
}

.form-col br {
    display: none;
}

@media (min-width: 768px) {
    .full-image-form__wrap {
        padding: 40px 50px 60px 50px;
    }
}

@media (min-width: 1200px) {
    .full-image-form__wrap {
        padding: 50px 70px 60px 70px;
    }
}