/*------------------------------------*\
    
    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 */
.wpcf7-not-valid-tip {
    font-weight: 500;
    font-family: var(--font-primary);
    padding: 5px 12px;
}

/* Entire form error message */
.wpcf7-response-output {
    text-align: center;
    font-family: var(--font-primary);
}

.wpcf7 form.invalid .wpcf7-response-output {
    padding: 10px 15px;
}

.wpcf7 form .wpcf7-response-output,
.contact__form .wpcf7 form .wpcf7-response-output {
    margin-top: 60px;
}

.form-label {
    font-size: 10px;
    font-weight: 900;
    text-transform: uppercase;
    color: var(--color-secondary);
    top: 8px;
    letter-spacing: 1.5px;
}

.form-label-note {
    font-size: 8px;
    font-style: italic;
    font-weight: 900;
    text-transform: uppercase;
    color: #E91E63;
    top: 8px;
    letter-spacing: 1.5px;
}

input[name="resume"] {
    width: 100%;
    border-radius: 50px;
    height: 60px;
    padding: 24px 29px 13px;
    font-family: var(--font-primary);
    font-size: 16px;
    color: var(--color-secondary);
    transition: border .25s ease-in-out,box-shadow .25s ease-in-out;
    background-color: #fff;
	margin: 10px 0;
}

input[name="resume"] + .label {
    display: none;
}

@media (min-width: 768px) {
    .wpcf7 form .wpcf7-response-output,
    .contact__form .wpcf7 form .wpcf7-response-output {
        margin-top: 90px;
    }
}

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