/* Contact form */
@media (min-width: 200px) and (max-width: 767px) {
  .quote-form-wrap {
     background: #242a51;
    }
}

.quote-form-wrap .gs_cp-form input,
.quote-form-wrap .gs_cp-form textarea{
    display: block;
    width: 100%;
    box-sizing: border-box;
    padding: 15px;
    background: #fff;
    color: #000;
    margin: 0 auto 10px;
    border: 0;
    outline: 0;
}
.quote-form-wrap .gs_cp-form input::placeholder,
.quote-form-wrap .gs_cp-form textarea{ height: 100px; }
.quote-form-wrap .gs_cp-form .gRecaptchaWrapper {
    width: 100%;
    height: 60px;
    margin: 0 auto 10px;
}
.quote-form-wrap .gs_cp-form {
    margin: 0;
    font-weight: 700;
    font-size: 20px;
    transition: 300ms;
    color: white;
    font-weight: bold;
/*     text-transform: uppercase; */
/*     padding: 15px; */
    width: 100%;
    border: none;
}
.quote-form-wrap input[type="submit"] {
	background-color: #e0c02e;
    font-weight: 700;
    font-size: 20px;
    transition: 300ms;
    color: white;
    font-weight: bold;
    text-transform: uppercase;

}

.quote-form-wrap .gs_cp-form {
    cursor: pointer;
/*     background: #000; */
    color: #fff;
}
.quote-form-wrap input[type="submit"]:hover {
    cursor: pointer;
	background: #fff;
	color: #000;
}
.quote-form-wrap p.formDisclaimerMsg {
  color: #fff;
  font-size: 12px;
  padding: 0 0 20px;
  line-height: 1.6;
/*   text-transform: none; */
}

@media screen and (min-width: 1640px){
   .quote-form-wrap .gs_cp-form input,
   .quote-form-wrap .gs_cp-form textarea{ font-size: 18px; }
   .quote-form-wrap .gs_cp-form .submit-button { font-size: 22px; }
}

/* reCAPTCHA v2 invisible */
.grecaptcha-badge {visibility: hidden;}
.grDisclaimerBox {
    background-color: #4a90e2;
    overflow: hidden;
    height: 60px;
    width: 255px;
    margin: 0 auto;
}
.nc_form .grDisclaimerBox {
    box-shadow: rgba(0,0,0,0.75) 0px 0px 5px;
    margin: 0 0 20px;
}
.grDisclaimerBoxNarrow {width: 180px;}
.grDisclaimerBoxNarrow .grdbBadge {display: none;}
.grdbBadge {
    float: left;
    width: 70px;
    height: 100%;
    background-color: #fff;
    background-image: url(../images/recaptcha-logo-48.png);
    background-repeat: no-repeat;
    background-position: center center;
}
.grdbText {
    float: left;
    color: #fff;
    width: 185px;
    box-sizing: border-box;
    font-family: Roboto, helvetica, arial, sans-serif;
    font-size: 13px;
    padding: 15px 15px 0;
    line-height: 1;
}
.grdbHead {
    display: block;
    margin: 0 0 5px;
}
.grdbLinks a {
    color: #fff;
    text-decoration: none;
    font-size: 10px;
}
.grdbLinks a:hover {text-decoration: underline;}
.grdbSep {font-size: 8px;}
/* reCAPTCHA v2 invisible */

/* Form Validation -- Begins */
form input[type=text].validationError, 
form textarea.validationError, 
form select.validationError,
form .validationError::placeholder {
    background-color: red !important;
    color: #fff !important;
}
form .validationError:-moz-placeholder,
form .validationError::-moz-placeholder {
    opacity: 1;
}

input[type=checkbox].validationError {
    position:relative
}

.cfRequiredMark {
    position: relative;
    font-size: 0;
}
input[type=radio].validationError + .cfRequiredMark:before,
input[type=checkbox].validationError  + .cfRequiredMark:before {
    display: inline-block;
    content: "";
    position: absolute;
    left: -26px;
    top: -11px;
    background-color: red;
    height: 8px;
    width: 8px;
    border-radius: 4px;
    opacity: 1;
    box-shadow: 1px 1px 3px red;
}

.validationFeedback {
    display: none;
    text-align: center;
    background-color: #f5770c;
    color: #000;
    padding: 20px;
    margin: 20px auto
}

.vfActive {
  display: block;
    width: calc(100% - 40px);
}

.vfFailedEmailValidationPrompt,
.vfFailedTelephoneValidationPrompt,
.vfFailedZipValidationPrompt {display: none;}
.vfFailedEmailValidation .vfFailedEmailValidationPrompt,
.vfFailedTelephoneValidation .vfFailedTelephoneValidationPrompt,
.vfFailedZipValidation .vfFailedZipValidationPrompt {display: block;}

@media screen and (min-width: 1120px){
    .vfActive {
        width: calc(100% - 40px);
    }
}
/* Form Validation -- Ends */