/*                                                    */

/*  main 'top-level' form elements                    */

/*                                                    */

.cform {
    font-family: Arial, sans-serif;
    background: none repeat scroll 0 0 #f9f9f9;
    margin: 10px auto 0;
    width: 510px;
    border: 1px solid #eee;
    border-radius: 3px;
    -moz-border-radius: 3px;
    -khtml-border-radius: 3px;
    -webkit-border-radius: 3px;
}
.cform fieldset {
    margin-top: 0;
    padding: 5px 0 15px 0;
    border: 0;
}
.cform .cf_hidden {
    display: none;
    border: none !important;
    background: none !important;
    padding: 0 !important;
    margin: 0 !important;
}
.cform legend {
    background: none repeat scroll 0 0 #eaeaea;
    border-radius: 0 3px 3px 0;
    -moz-border-radius: 0 3px 3px 0;
    -khtml-border-radius: 0 3px 3px 0;
    -webkit-border-radius: 0 3px 3px 0;
    color: #777777;
    font-size: 0.8em;
    font-weight: bold;
    padding: 2px 7px 3px;
    text-shadow: 0 1px 0 #FFFFFF;
}
.cform fieldset:first-child legend {
    border-radius: 0 0 3px 0;
    -moz-border-radius: 0 0 3px 0;
    -khtml-border-radius: 0 0 3px 0;
    -webkit-border-radius: 0 0 3px 0;
}
ol.cf-ol {
    margin: 0 !important;
    padding: 0 !important;
}
ol.cf-ol li {
    background: none !important;
    margin: 5px 0 !important;
    padding: 0;
    list-style: none !important;
    text-align: left;
    line-height: 1.3em;
}

/*                                                    */

/* just for text-only fields (no input)               */

/*                                                    */

ol.cf-ol li.textonly {
    letter-spacing: 1px;
    margin: 10px 0pt !important;
    padding: 5px 0pt;
    text-align: center;
    font-size: 0.8em;
    text-shadow: 0 1px 0 #FFFFFF;
}

/*                                                    */

/* global definitions for field labels                */

/*                                                    */

.cform label {
    color: #555555;
    display: inline-block;
    font-size: 0.8em;
    font-weight: bold;
    line-height: 16px;
    margin: 0.6em 1% 0.5em 1%;
    text-align: right;
    vertical-align: top;
    width: 20%;
}
.cform label span {
}
label.cf-before {
    margin: 0.4em 5px;
}
label.cf-after {
    margin: 0.4em 5px;
    text-align: left;
    width: 115px;
}
label.cf-after span {
    width: 115px;
    display: block;
}
label.cf-group-after {
    margin: 0.4em 5px;
    width: 72px;
    text-align: left;
}
label.cf-group-after span {
    width: 72px;
    display: block;
}

/*                                                    */

/*   FORM FIELDS general formatting                   */

/*                                                    */

.cform input, .cform textarea, .cform select {
    text-shadow: 0 1px 0 #FFFFFF;
    color: #111111;
    font-size: 0.9em;
    padding: 5px 10px;
    background: #f9f9f9;
    border: 1px solid #e2e2e2;
    vertical-align: top;
    box-shadow: none;
    background: #f7f7f7; /* Old browsers */
    background: -moz-linear-gradient(top, #f7f7f7 0%, #eeeeee 100%); /* FF3.6+ */
    background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #f7f7f7), color-stop(100%, #eeeeee)); /* Chrome,Safari4+ */
    background: -webkit-linear-gradient(top, #f7f7f7 0%, #eeeeee 100%); /* Chrome10+,Safari5.1+ */
    background: -o-linear-gradient(top, #f7f7f7 0%, #eeeeee 100%); /* Opera 11.10+ */
    background: -ms-linear-gradient(top, #f7f7f7 0%, #eeeeee 100%); /* IE10+ */
    background: linear-gradient(top, #f7f7f7 0%, #eeeeee 100%); /* W3C */
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#f7f7f7', endColorstr='#eeeeee', GradientType=0); /* IE6-9 */
}

/*
.cform input:hover,
.cform textarea:hover,
.cform select:hover {
background: #ffffff; 
background: -moz-linear-gradient(top,  #ffffff 0%, #efefef 100%); 
background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#ffffff), color-stop(100%,#efefef)); 
background: -webkit-linear-gradient(top,  #ffffff 0%,#efefef 100%); 
background: -o-linear-gradient(top,  #ffffff 0%,#efefef 100%); 
background: -ms-linear-gradient(top,  #ffffff 0%,#efefef 100%);
background: linear-gradient(top,  #ffffff 0%,#efefef 100%); 
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ffffff', endColorstr='#efefef',GradientType=0 ); 
}
*/
.cform input:hover, .cform textarea:hover, .cform select:hover, .cform input:focus, .cform textarea:focus, .cform select:focus {
    text-shadow: none;
    border: 1px solid #999;
    background: #fff;
    box-shadow: 0 1px 2px #ccc inset;
}
.cform textarea, .cform input {
    width: 65%;
}
.cform select {
    padding: 2px 5px;
    width: 69%; /* attempt to have equal length */
}
.cform select.cfselectmulti {
    height: 7.5em;
}
.cform textarea {
    font-family: arial;
    font-size: 0.9em;
    overflow: auto;
    resize: none;
}
.ui-datepicker-trigger {
    cursor: pointer;
    margin-top: 3px;
}

/*                                                    */

/*   radio button title                               */

/*                                                    */

ol.cf-ol li.cf-box-title {
    color: #999999;
    font-size: 0.8em;
    font-weight: bold;
    margin-left: 1.5em;
    padding: 8px 0 0 22%; /* check with label 'width' incl. */
}

/*                                                    */

/*   check boxes                                      */

/*                                                    */

.cform input.cf-box-a, .cform input.cf-box-b {
    margin: 1px 0 0 0;
    width: 14px;
    height: 22px;
    border: none !important;
    background: none !important;
}
.cform input.cf-box-a {
    margin-left: 22%; /* check with label 'width' incl. */
}

/*                                                    */

/* check box groups                                   */

/*                                                    */

ol.cf-ol li.cf-box-group {
    margin: 10px 0pt 0px !important;
    padding-left: 22%;
}

/*                                                    */

/* formatting for text:  "(required)"  & other        */

/*                                                    */

span.reqtxt, span.emailreqtxt {
    color: #9B4D4D;
    display: block;
    font-size: 0.7em;
    height: 14px;
    line-height: 1em;
    margin: 0 0 0 22%;
    padding: 0 0 0 20px;
    text-align: right;
    vertical-align: top;
    width: 65%;
}

/*                                                    */

/*   FORM submit button                               */

/*                                                    */

p.cf-sb {
    text-align: right;
    padding: 0 !important;
    margin: 0;
}
.cform input.backbutton, .cform input.resetbutton, .cform input.sendbutton {
    padding: 5px 10px;
    margin: 0 0 0 5px;
    font-size: 0.8em;
    cursor: pointer;
    width: auto;
    border-radius: 3px 0 0 0;
    -moz-border-radius: 3px 0 0 0;
    -khtml-border-radius: 3px 0 0 0;
    -webkit-border-radius: 3px 0 0 0;
    border: 1px solid #ccc;
    background: #f7f7f7; /* Old browsers */
    background: -moz-linear-gradient(top, #f7f7f7 1%, #e5e5e5 100%); /* FF3.6+ */
    background: -webkit-gradient(linear, left top, left bottom, color-stop(1%, #f7f7f7), color-stop(100%, #e5e5e5)); /* Chrome,Safari4+ */
    background: -webkit-linear-gradient(top, #f7f7f7 1%, #e5e5e5 100%); /* Chrome10+,Safari5.1+ */
    background: -o-linear-gradient(top, #f7f7f7 1%, #e5e5e5 100%); /* Opera 11.10+ */
    background: -ms-linear-gradient(top, #f7f7f7 1%, #e5e5e5 100%); /* IE10+ */
    background: linear-gradient(top, #f7f7f7 1%, #e5e5e5 100%); /* W3C */
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#f7f7f7', endColorstr='#e5e5e5', GradientType=0); /* IE6-9 */
}
.cform input.backbutton:hover, .cform input.resetbutton:hover, .cform input.sendbutton:hover {
    border: 1px solid #aaa;
    background: #fdfdfd; /* Old browsers */
    background: -moz-linear-gradient(top, #f7f7f7 1%, #c1c1c1 100%); /* FF3.6+ */
    background: -webkit-gradient(linear, left top, left bottom, color-stop(1%, #f7f7f7), color-stop(100%, #c1c1c1)); /* Chrome,Safari4+ */
    background: -webkit-linear-gradient(top, #f7f7f7 1%, #c1c1c1 100%); /* Chrome10+,Safari5.1+ */
    background: -o-linear-gradient(top, #f7f7f7 1%, #c1c1c1 100%); /* Opera 11.10+ */
    background: -ms-linear-gradient(top, #f7f7f7 1%, #c1c1c1 100%); /* IE10+ */
    background: linear-gradient(top, #f7f7f7 1%, #c1c1c1 100%); /* W3C */
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#f7f7f7', endColorstr='#c1c1c1', GradientType=0); /* IE6-9 */
}
.cform input.resetbutton {
    width: auto;
    padding: 5px 1em;
}
.cform input.backbutton {
    width: auto;
    padding: 5px 1em;
}

/*                                                    */

/*   FORM FIELDS enhanced error display               */

/*                                                    */
ol.cf-ol li.cf_li_err {
    background: #FFDFDF url(li-err-bg.png) repeat !important;
    border-color: #EDC4C4;
    border-style: solid;
    border-width: 1px 0pt;
    padding: 10px 0 1px !important;
    margin: 5px 0 !important;
}
ol.cf-ol li ul.cf_li_text_err {
    height: 1%;
    min-height: 1%;
    margin: 0 0 0 100px;
    padding: 0;
    color: #333;
}
ol.cf-ol ul.cf_li_text_err li {
    background: url(icon-alert.png) no-repeat left 1px !important;
    list-style: none !important;
    font-weight: bold;
    text-indent: 0;
    margin: 0 0 2px !important;
    padding-left: 15px;
}
ol.cf-ol ul.cf_li_text_err li:before {
    content: '';
}

/*                                                    */

/* 'visitor verification' related styles              */

/*                                                    */

label.secq, label.seccap {
    vertical-align: text-bottom;
    margin-bottom: 4px;
}
input.secinput {
    vertical-align: text-bottom;
}
#cforms_captcha6, #cforms_captcha5, #cforms_captcha4, #cforms_captcha3, #cforms_captcha2, #cforms_captcha {
    width: 50px;
    padding: 4px 4px;
    margin: 0;
}
img.captcha {
    vertical-align: text-bottom;
    margin: 0 0 0 10px !important;
    padding: 0 !important;
    border: none !important;
    float: none !important;
}
.captcha-reset {
    vertical-align: text-bottom;
    color: #777777;
    margin: 0 0 2px 3px;
    width: 21px;
    height: 21px;
    border: none;
    cursor: pointer;
}
img.imgcalendar {
    border: none;
}

/*                                                    */

/* change formatting of response msgs here            */

/*                                                    */

div.cf_info {
    font-family: Arial, sans-serif;
    font-size: 0.8em;
    color: #333;
    display: none;
    padding: 10px 15px !important;
    width: 480px;
    line-height: 1.3em;
    margin: 10px auto;
}
div.cf_info > span {
    text-shadow: 0 1px 0 #FFFFFF;
    font-weight: bold;
}
div.cf_info ol {
    margin: 0;
    padding: 5px 15px 0 30px;
}
div.cf_info ol li {
    padding: 1px 0;
    margin: 2px 0;
}
div.cf_info a {
    color: #ad2929 !important;
    text-decoration: underline !important;
}
div.success {
    background: #F7F7F7 none repeat scroll 0% 50%;
    color: #444444;
    display: block;
}
div.failure {
    display: block;
    background: url(li-err-bg.png) repeat scroll 0 0 #FFDFDF !important;
    border: 1px solid #EDC4C4;
    border-radius: 3px;
    -moz-border-radius: 3px;
    -khtml-border-radius: 3px;
    -webkit-border-radius: 3px;
}
div.waiting {
    background: #F9F9F9;
    color: #AAAAAA;
    display: block;
}

/*                                                    */

/*   formatting for invalid user inputs               */

/*                                                    */
.cform .cf_error {
    color: #ad2929;
    border: 1px solid #ad2929;
}
div.mailerr {
    display: block;
}
.mailerr, .cform .cf_errortxt {
    color: #ad2929;
}

/*                                                    */

/* disabled fields [disabled] does not work on IE!    */

/*                                                    */

.disabled, .disabled:hover, [disabled]:hover, [disabled] {
    color: #aaa !important;
    border-color: #dddddd !important;
    background: none !important;
    box-shadow: none !important;
}

/*                                                    */

/* upload box styling                                 */

/*                                                    */
.cform input.cf_upload {
    width: 220px;
    background: #f9f9f9;
    border: 1px solid #888888;
}

/*                                                    */

/*  Other: browser hacks                              */

/*                                                    */

/*
* html .cform fieldset {
    position: relative;
    margin-top:15px;
    padding-top:25px; 
}
* html .cform legend { 
    position:absolute; 
    top: -10px; 
    left: 10px; 
    margin-left:0;
}
*+html .cform fieldset {
    position: relative;
    margin-top:15px;
    padding-top:25px; 
}
*+html .cform legend { 
    position:absolute; 
    top: -10px; 
    left: 10px; 
    margin-left:0;
}
/*for ie6*/

/*
* html ol.cf-ol,
* html ol.cf-ol li,
* html span.reqtxt,
* html span.emailreqtxt { 
    display: inline-block;  
}
*/

/*for ie7*/

/*
*+html .cform label,
*+html ol.cf-ol,
*+html ol.cf-ol li,
*+html span.reqtxt,
*+html span.emailreqtxt {
    display: inline-block; 
}

* html img.captcha {
    margin-bottom:1px!important;
}
*+html img.captcha {
    margin-bottom:1px!important;
}
*/

/* custom css FIRST FORM */

* {
    text-shadow: none !important;
}
@font-face {
    font-family: 'itc_frnklingoticstdbook';
    src: url('../fonts/web/ITCFranklinGothicStd-Book.eot'); /* IE9 Compat Modes */
    src: url('../fonts/web/ITCFranklinGothicStd-Book.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */
    url('../fonts/web/ITCFranklinGothicStd-Book.woff2') format('woff2'), /* Super Modern Browsers */
    url('../fonts/web/ITCFranklinGothicStd-Book.woff') format('woff'), /* Pretty Modern Browsers */
    url('../fonts/web/ITCFranklinGothicStd-Book.ttf')  format('truetype'), /* Safari, Android, iOS */
    url('../fonts/web/ITCFranklinGothicStd-Book.svg#ITCFranklinGothicStd-Book') format('svg'); /* Legacy iOS */
}
@font-face {
    font-family: 'itc_frnklingoticstdmed';
    src: url('../fonts/web/ITCFranklinGothicStd-Med.eot'); /* IE9 Compat Modes */
    src: url('../fonts/web/ITCFranklinGothicStd-Med.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */
    url('../fonts/web/ITCFranklinGothicStd-Med.woff2') format('woff2'), /* Super Modern Browsers */
    url('../fonts/web/ITCFranklinGothicStd-Med.woff') format('woff'), /* Pretty Modern Browsers */
    url('../fonts/web/ITCFranklinGothicStd-Med.ttf')  format('truetype'), /* Safari, Android, iOS */
    url('../fonts/web/ITCFranklinGothicStd-Med.svg#ITCFranklinGothicStd-Med') format('svg'); /* Legacy iOS */
}
@font-face {
    font-family: 'itc_frnklingoticstddemi';
    src: url('../fonts/web/ITCFranklinGothicStd-Demi.eot'); /* IE9 Compat Modes */
    src: url('../fonts/web/ITCFranklinGothicStd-Demi.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */
    url('../fonts/web/ITCFranklinGothicStd-Demi.woff2') format('woff2'), /* Super Modern Browsers */
    url('../fonts/web/ITCFranklinGothicStd-Demi.woff') format('woff'), /* Pretty Modern Browsers */
    url('../fonts/web/ITCFranklinGothicStd-Demi.ttf')  format('truetype'), /* Safari, Android, iOS */
    url('../fonts/web/ITCFranklinGothicStd-Demi.svg#ITCFranklinGothicStd-Demi') format('svg'); /* Legacy iOS */
}
@font-face {
    font-family: 'united_sanssemicondhevy';
    src: url('../fonts/web/UnitedSansSmCdHv.eot'); /* IE9 Compat Modes */
    src: url('../fonts/web/UnitedSansSmCdHv.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */
    url('../fonts/web/UnitedSansSmCdHv.woff2') format('woff2'), /* Super Modern Browsers */
    url('../fonts/web/UnitedSansSmCdHv.woff') format('woff'), /* Pretty Modern Browsers */
    url('../fonts/web/UnitedSansSmCdHv.ttf')  format('truetype'), /* Safari, Android, iOS */
    url('../fonts/web/UnitedSansSmCdHv.svg#svgUnitedSansSmCdHv') format('svg'); /* Legacy iOS */
}
@font-face {
    font-family: 'united_sanscondmd';
    src: url('../fonts/web/UnitedSansCdMd.eot'); /* IE9 Compat Modes */
    src: url('../fonts/web/UnitedSansCdMd.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */
    url('../fonts/web/UnitedSansCdMd.woff2') format('woff2'), /* Super Modern Browsers */
    url('../fonts/web/UnitedSansCdMd.woff') format('woff'), /* Pretty Modern Browsers */
    url('../fonts/web/UnitedSansCdMd.ttf')  format('truetype'), /* Safari, Android, iOS */
    url('../fonts/web/UnitedSansCdMd.svg#UnitedSansCdMd') format('svg'); /* Legacy iOS */
}
@font-face {
    font-family: 'united_sanscondbld';
    src: url('../fonts/web/UnitedSansCdBd.eot'); /* IE9 Compat Modes */
    src: url('../fonts/web/UnitedSansCdBd.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */
    url('../fonts/web/UnitedSansCdBd.woff2') format('woff2'), /* Super Modern Browsers */
    url('../fonts/web/UnitedSansCdBd.woff') format('woff'), /* Pretty Modern Browsers */
    url('../fonts/web/UnitedSansCdBd.ttf')  format('truetype'), /* Safari, Android, iOS */
    url('../fonts/web/UnitedSansCdBd.svg#UnitedSansCdBd') format('svg'); /* Legacy iOS */
}
.inputtextContent {
    position: relative;
}
.lead-gen-popup.showleadpopup {
    opacity: 1 !important;
    position: fixed !important;
    top: 0 !important;
    transition: all 0.1s ease-out 0s !important;
    visibility: visible;
}
#leadGenerationModal {
    background: rgba(244, 244, 244, 0.98) none repeat scroll 0 0;
    bottom: 0;
    display: block;
    height: 100%;
    left: 0;
    margin: 0;
    opacity: 0;
    overflow: scroll;
    padding-top: 80px;
    position: absolute;
    top: -50%;
    transition: all 0.5s ease-out 0s;
    width: 100%;
    font-family: 'itc_frnklingoticstdbook';
    z-index: 90;
}
.firstformleadgen #firstform input {
    background: transparent;
    border-bottom: 4px solid #d9dadb;
    border-left: 0;
    border-right: 0;
    border-top: 0;
    box-shadow: none;
    height: auto;
    line-height: 32px;
    margin: 0;
    padding: 0 35px 0 8px;
    position: relative;
    text-overflow: ellipsis;
    color: #b71500;
    cursor: pointer;
}
.firstformleadgen #firstform input:focus {
    background: transprant;
}
.logo-image-top-leadpage {
    display: none;
}
.close-lead-gen-modal::before {
    background: #000 none repeat scroll 0 0;
    content: "";
    display: block;
    height: 3px;
    position: absolute;
    right: 10px;
    top: 23px;
    -ms-transform: rotate(45deg); /* IE 9 */
    -webkit-transform: rotate(45deg); /* Safari */
    transform: rotate(45deg);
    width: 37px;
}
.close-lead-gen-modal::after {
    background: #000 none repeat scroll 0 0;
    content: "";
    display: block;
    height: 3px;
    position: absolute;
    right: 10px;
    top: 23px;
    -ms-transform: rotate(-45deg); /* IE 9 */
    -webkit-transform: rotate(-45deg); /* Safari */
    transform: rotate(-45deg);
    width: 37px;
}
.close-lead-gen-modal {
    box-sizing: content-box;
    display: block;
    float: right;
    height: 30px;
    padding: 10px;
    position: relative;
    right: 0;
    width: 37px;
    cursor: pointer;
}
.firstformleadgen {
    clear: both;
    margin: 210px auto 0;
    text-align: center;
    width: 1110px;
    min-height: 580px;
}
.header .logo a, .header .logo img {
    display: block;
    z-index: 92;
}
.firstform-part-1, .firstform-part-2, .firstform-part-3 {
    display: inline-block;
    font-family: "itc_frnklingoticstdbook";
    font-size: 35px;
    height: 50px;
    letter-spacing: 0.04em;
    line-height: 40px;
}
.firstform-part-1::before, .firstform-part-2::before, .firstform-part-3::before {
    content: "";
    display: inline-block;
    height: 100%;
    vertical-align: middle;
}
.firstform-part-1 .usertypes {
    display: inline-block;
    max-width: 354px;
    width: 340px;
    height: 40px;
    vertical-align: middle;
}
.firstform-part-2 .userplaces {
    margin-left: 5px;
    max-width: 510px;
    /**width: 478px;**/
    height: 40px;
    vertical-align: middle;
}
.firstform-part-3 .userenquiretypes {
    width: 462px;
    height: 32px;
    vertical-align: middle;
}
.firstform-part-1 .usertypes::after, .firstform-part-2 .userplaces::after, .firstform-part-3 .userenquiretypes::after {
    background: transparent none repeat scroll 0 0;
    box-shadow: 4px 4px 0 #b3b3b3;
    content: "";
    display: inline-block;
    height: 18px;
    position: absolute;
    right: 5px;
    top: -3px;
    -ms-transform: rotate(45deg); /* IE 9 */
    -webkit-transform: rotate(45deg); /* Safari */
    transform: rotate(45deg);
    width: 18px;
    z-index: -9;
}
.firstform-part-3 {
    margin-top: 62px;
}
.firstform-part-4 {
    margin-top: 96px;
}
.firstformleadgen #firstform .firstform-part-4 {
    border-radius: 50px;
    font-size: 0;
    height: 100px;
    margin-left: auto;
    margin-right: auto;
    padding: 0;
    position: relative;
    width: 100px;
}
.firstformleadgen #firstform .firstform-part-4::after {
    background: transparent none repeat scroll 0 0;
    box-shadow: 4px 4px 0 #b3b3b3;
    content: "";
    display: inline-block;
    height: 18px;
    left: -9px;
    position: relative;
    top: -59px;
    -ms-transform: rotate(-45deg); /* IE 9 */
    -webkit-transform: rotate(-45deg); /* Safari */
    transform: rotate(-45deg);
    width: 18px;
}
.firstformleadgen #firstform .firstform-part-4.has1valuesform1::after {
    box-shadow: 4px 4px 0 #fff;
}
.firstformleadgen #firstform .firstform-part-4.hasAllvaluesform1::after {
    box-shadow: 4px 4px 0 #fff;
}
.firstformleadgen #firstform .firstform-part-4 .pie_progress__content > input {
    border: 0 none;
    font-size: 0;
    left: -2px;
    line-height: 0;
    padding: 45px;
    position: absolute;
    top: 0;
}
.firstformleadgen #firstform .firstform-part-4.hasAllvaluesform1:hover {
    -ms-transform: scale(1.07); /* IE 9 */
    -webkit-transform: scale(1.07); /* Safari */
    transform: scale(1.07);
}
.pie_progress__svg {
    border-radius: 100px;
    z-index: -1;
}
.pie_progress__content {
    background: transparent;
    border-radius: 84px;
    height: 88px;
    left: calc(50% - 44px) !important;
    text-align: center;
    width: 88px !important;
}
.firstform-part-4.has1valuesform1 .pie_progress__content {
    background: #d5d6d8;
}
.firstform-part-4.hasAllvaluesform1 .pie_progress__content {
    background: #B71F20;
}
#leadGenerationModal .error-form-1 {
    font-size: 20px;
    left: 0;
    position: absolute;
    top: 60px;
    width: 100%;
    line-height: 20px;
}
.firstformleadgen .usertypedropdown-content, .firstformleadgen .userplacedropdown-content, .firstformleadgen .userenquiretypedropdown-content {
    font-size: 21px;
    letter-spacing: 0;
    text-align: left;
    top: 54px;
    width: 100%;
    -webkit-box-shadow: 0px 0px 8px 0px rgba(0, 0, 0, 0.5);
    -moz-box-shadow: 0px 0px 8px 0px rgba(0, 0, 0, 0.5);
    box-shadow: 0px 0px 8px 0px rgba(0, 0, 0, 0.5);
    background: #fff;
    z-index: 99;
}
#leadGenerationModal .class-above-close-button {
    margin: 0 auto;
    padding-right: 50px;
    width: 1110px;
}
.firstformleadgen .usertypedropdown-content .usertypeselect:hover, .firstformleadgen .userplacedropdown-content .userplaceselect:hover, .firstformleadgen .userenquiretypedropdown-content .userenquireselect:hover {
    background: #b71500 none repeat scroll 0 0;
    color: #fff;
}
.firstformleadgen .usertypedropdown-content .usertypeselect, .firstformleadgen .userplacedropdown-content .userplaceselect, .firstformleadgen .userenquiretypedropdown-content .userenquireselect {
    height: 50px;
    line-height: 50px;
    padding-bottom: 0;
    padding-top: 0;
}
#userplacesDropdown > ul {
    margin: 0;
}
#userplacesDropdown > ul li {
    list-style: none;
}
#userplacesDropdown > ul li a {
    padding-left: 90px;
}
.firstformleadgen {
    min-height: 570px;
}
@media only screen and (max-width:1400px) {
    .firstformleadgen {
        margin: 100px auto 0;
    }
}
@media only screen and (max-width:1111px) {
    #leadGenerationModal .class-above-close-button {
        width: 100%
    }
    .firstform-part-2 {
        margin-top: 62px;
    }
    .firstformleadgen {
        width: 100%;
        min-height: 620px;
    }
}
@media only screen and (max-width:929px) {
    .secondformleadgen .second-form-content-1-combine-div div.resetform {
        left: 0px;
        position: relative;
        top: 0px;
    }
    .cform.request-a-reconditioning-quote .cf-fs2 #li-7-13 {
        padding: 0 !important
    }
}
@media only screen and (max-width:768px) {
    #leadGenerationModal .class-above-close-button {
        right: 0;
        padding-right: 0;
        position: absolute;
        top: 28px;
        width: auto;
        z-index: 0;
        z-index: 9999999;
    }
    .firstformleadgen #firstform .firstform-part-4 {
        margin-top: 75px;
    }
    .firstformleadgen .usertypedropdown-content, .firstformleadgen .userplacedropdown-content, .firstformleadgen .userenquiretypedropdown-content {
        font-size: 18px;
        top: 40px;
    }
    #leadGenerationModal .error-form-1 {
        top: 40px;
    }
    .firstformleadgen .usertypedropdown-content .usertypeselect, .firstformleadgen .userplacedropdown-content .userplaceselect, .firstformleadgen .userenquiretypedropdown-content .userenquireselect {
        height: 40px;
        line-height: 40px;
    }
    .firstform-part-1 .usertypes {
        max-width: none !important;
        width: 56%;
        height: 26px;
    }
    .firstform-part-2 .userplaces {
        max-width: none !important;
        width: 68%;
        height: 26px;
    }
    .firstform-part-3 .userenquiretypes {
        max-width: none !important;
        width: 64%;
        height: 26px;
    }
    .firstform-part-1, .firstform-part-2, .firstform-part-3 {
        font-size: 25px !important;
        width: 100%;
        height: 26px;
    }
    .firstformleadgen #firstform input {
        line-height: 24px;
    }
    .firstform-part-1 .usertypes::after, .firstform-part-2 .userplaces::after, .firstform-part-3 .userenquiretypes::after {
        top: -9px;
    }
    #userplacesDropdown > ul li a {
        padding-left: 74px;
    }
    .ui-datepicker.ui-widget.ui-widget-content.ui-helper-clearfix.ui-corner-all {
        max-height: 443px;
        overflow: scroll;
        height: 100%;
        top: 0 !important;
    }
}
@media only screen and (max-width:520px) {
    .logo-image-top-leadpage img {
        width: 118px !important;
    }
    #leadGenerationModal .error-form-1q {
        font-size: 12px;
    }
    .close-lead-gen-modal {
        width: 30px;
        padding-top: 0;
    }
    .close-lead-gen-modal::after, .close-lead-gen-modal::before {
        top: 13px;
        width: 30px;
    }
    .firstform-part-1, .firstform-part-2, .firstform-part-3 {
        font-size: 20px !important;
        width: 100%;
    }
    .firstform-part-2, .firstform-part-3 {
        margin-top: 45px;
    }
    .firstformleadgen {
        margin: 50px auto 0;
    }
    .firstform-part-1 .usertypes {
        width: 62%;
    }
    .firstform-part-2 .userplaces {
        width: 71%;
    }
    .firstform-part-3 .userenquiretypes {
        width: 53%;
    }
    .firstformleadgen #firstform .firstform-part-4::after {
        top: -49px;
    }
    .firstformleadgen #firstform .firstform-part-4 > input {
        padding: 36px;
    }
    .firstformleadgen #firstform .firstform-part-4 {
        margin-top: 65px;
    }
    .firstformleadgen #firstform .firstform-part-4 {
        width: 80px;
        height: 80px;
    }
    .firstformleadgen .usertypedropdown-content, .firstformleadgen .userplacedropdown-content, .firstformleadgen .userenquiretypedropdown-content {
        width: 300px;
        right: 0;
    }
    .firstform-part-4 .pie_progress__content {
        height: 72px;
        left: calc(50% - 36px) !important;
        width: 72px !important;
    }
    .firstformleadgen #firstform input {
        line-height: 20px;
    }
    .firstform-part-2, .firstform-part-3 {
        margin-top: 55px;
    }
    .firstform-part-1 .usertypes::after, .firstform-part-2 .userplaces::after, .firstform-part-3 .userenquiretypes::after {
        height: 15px;
        top: -9px;
        width: 15px;
    }
    #leadGenerationModal .error-form-1 {
        font-size: 15px;
        line-height: 17px;
    }
}
@media only screen and (max-width:340px) {
    .firstform-part-1, .firstform-part-2, .firstform-part-3 {
        font-size: 18px !important;
    }
    .firstformleadgen .usertypedropdown-content, .firstformleadgen .userplacedropdown-content, .firstformleadgen .userenquiretypedropdown-content {
        width: 280px;
        right: -20px;
        top: 35px;
    }
    .firstformleadgen #firstform input {
        line-height: 18px;
    }
    .firstform-part-1 .usertypes::after, .firstform-part-2 .userplaces::after, .firstform-part-3 .userenquiretypes::after {
        top: -12px;
    }
}

/* ----- FIREST FORM ENDS ---------*/
.ui-datepicker table tbody td.ui-datepicker-today > a {
    background: #ce1126 none repeat scroll 0 0 !important;
    border-radius: 150px;
    color: #fff !important;
}

/* ----- SECOND FORM ---------*/
.secondformleadgen {
    margin: -80px -1.25em -1.25em;
}
.cform .cf-fs1 {
    margin-top: 0 !important;
}
.second-form-content-1-combine-div {
    background: #f4f4f4 none repeat scroll 0 0;
    font-size: 16px;
    height: 150px;
}
.lead-generation-container {
    width: 930px;
    margin: 0 auto;
}
.secondformleadgen .second-form-content-1-combine-div div.resetform {
    display: inline-block;
    font-size: 18px;
    line-height: 20px;
    margin-top: 90px;
}
.secondformleadgen .second-form-content-1-combine-div .whole-div-second-form {
    display: inline-block;
    margin-left: 0;
    margin-top: 94px;
    text-align: center;
    width: 877px;
}
.secondformleadgen .second-form-content-1-combine-div .whole-div-second-form > div {
    display: inline-block;
}
.secondformleadgen .second-form-content-1-combine-div div.resetform a {
    color: #c3c3c3;
    font-family: "itc_frnklingoticstdmed";
    position: relative;
}
.secondformleadgen .second-form-content-2-combine-div {
    background: rgba(0, 0, 0, 0) url("../images/form-2-bg.jpg") no-repeat scroll center top / cover;
    height: 100%;
    overflow: scroll;
    position: fixed;
    width: 100%;
}
.secondformleadgen .second-form-content-2-combine-div > form {
    margin: 0 auto;
    width: 941px;
    background: transparent none repeat scroll 0 0;
    border: 0 none transparent;
    padding-bottom: 200px;
    font-family: 'itc_frnklingoticstdbook';
}
.cform.find-a-rep-form {
    background: transparent none repeat scroll 0 0;
    border: 0 none transparent;
}
.second-form-content-1-combine-div .second-form-content-1-2, .second-form-content-1-combine-div .second-form-content-2-2, .second-form-content-1-combine-div .second-form-content-3-1 {
    color: #b71500;
}
.cform.inquire-order-form .inputtextContent input.cf_date {
    background: rgba(0, 0, 0, 0) url("../images/icon-calender.png") no-repeat scroll right 15px;
}
.secondformleadgen .second-form-content-1-combine-div div.resetform a::before {
    box-shadow: 4px 4px 0 #c3c3c3;
    content: "";
    display: inline-block;
    height: 20px;
    vertical-align: middle;
    margin-right: 0px;
    -ms-transform: rotate(-136deg); /* IE 9 */
    -webkit-transform: rotate(-136deg); /* Safari */
    transform: rotate(136deg);
    width: 20px;
    left: 8px;
    position: relative;
    top: -2px;
}
.secondformleadgen .second-form-content-1-combine-div div.resetform a:hover::before {
    box-shadow: 4px 4px 0 #ce1126;
}
.secondformleadgen .second-form-content-1-combine-div div.resetform a:hover {
    color: #ce1126;
}
.ui-datepicker.ui-widget.ui-widget-content.ui-helper-clearfix.ui-corner-all {
    z-index: 999999 !important;
}

/* ----- FORM input fields alignments---------*/
.cform fieldset {
    margin: 30px 0 0 !important;
    padding: 0 !important;
}
.cform .fieldsetforcomments .cf-ol > li {
    margin-top: 0 !important;
}
.cform .cf-ol > li {
    color: #c3c3c3;
    display: inline-table;
    font-size: 18px;
    margin: 0 !important;
    width: 50%; 
}
.cform.request-a-reconditioning-quote .cf-fs5 li#li-7-29 {
    font-size: 0;
}
.cform.request-a-reconditioning-quote .cf-fs5 ol li, .cform.request-a-reconditioning-quote .cf-fs6 ol li, .cform.request-a-reconditioning-quote .cf-fs7 ol li {
    text-align: left;
    width: 100%;
}
.cform.request-a-reconditioning-quote .cf-fs6 .single.fldrequired, .cform.request-a-reconditioning-quote .cf-fs7 .single.fldrequired {
    width: 100%;
}
.cform.request-a-reconditioning-quote .cf-fs6 .inputtextContent, .cform.request-a-reconditioning-quote .cf-fs7 .inputtextContent {
    margin-left: 0;
}
.cform.request-a-reconditioning-quote .cf-fs6, .cform.request-a-reconditioning-quote .cf-fs7 {

    /*margin-top: 60px !important;*/
}
.cform ol li:nth-child(2n) .inputtextContent {
    margin-left: 19px;
}
.cform.find-a-rep-form .cf-fs2, .cform.ask-question-comment-form .cf-fs2, .cform.contact-rep-form .cf-fs2, .cform.inquire-order-form .cf-fs2, .cform.smart-helmets-form .cf-fs2, .cform.request-a-reconditioning-quote .cf-fs2, .cform.request-a-reconditioning-quote .cf-fs4 {
    margin-top: 10px !important;
}
.cform .fieldsetforcomments {
    margin-top: 20px !important;
}

/* ----- FORM input fields (inputtextContent)---------*/
.secondformleadgen .cform .inputtextContent input {
    background: transparent none repeat scroll 0 0;
    border-color: transparent transparent #d5d6d7;
    border-style: none none solid;
    border-width: 0 0 4px;
    color: #fff;
    font-size: 24px;
    height: 55px;
    margin-bottom: 0;
    padding: 10px 10px 3px 0;
    width: 451px;
}
.secondformleadgen .cform .inputtextContent input:focus, .secondformleadgen .cform .inputtextContent input:hover {
    border-color: transparent transparent #fff;
    box-shadow: none;
    color: #fff;
    outline: medium none;
}
.cform .inputtextContent.inputFocussed label, .cform .inputtextContent.hasValue label {
    -ms-transform: translate3d(0px, 15px, 0px) scale(0.5); /* IE 9 */
    -webkit-transform: translate3d(0px, 15px, 0px) scale(0.5); /* Safari */
    transform: translate3d(0px, 15px, 0px) scale(0.5);
}
.cform .inputtextContent > label {
    color: #d5d6d7;
    font-size: 24px;
    line-height: 21px;
    margin: 0;
    text-align: left;
    -ms-transform: translate3d(0px, 42px, 0px) scale(1); /* IE 9 */
    -webkit-transform: translate3d(0px, 42px, 0px) scale(1); /* Safari */
    transform: translate3d(0px, 42px, 0px) scale(1);
    transform-origin: left top 0;
    transition: all 0.25s cubic-bezier(0.25, 0.8, 0.25, 1) 0s;
    width: 100%;
}

/* ----- FORM input fields (inputtextContent)---------*/
.second-form-content-2-combine-div .cform .cf-fs3 ol li,#cforms5form .cf-fs4 ol li  {
    text-align: left;
    width: 100%;
    margin-bottom: 20px !important;
}

/* ----- partition line---------*/
.cform .textonly.partition-line {
    margin: 42px 0 0 !important;
    padding: 0 !important;
    text-align: center;
    width: 100%;
}
.cform .textonly.partition-line > span {
    background: #000 none repeat scroll 0 0;
    border: medium none;
    border-radius: 0;
    display: block;
    font-size: 0;
    height: 4px;
    margin: 0 auto;
    padding: 0;
    width: 140px;
}

/* ----- partition line---------*/
.cform.find-a-rep-form .cf-fs4 li#li-2-23 .inputtextContent::after, .cform.request-a-reconditioning-quote .cf-fs4 li#li-7-23 .inputtextContent::after, .cform.open-a-online-store .cf-fs4 li#li-6-23 .inputtextContent::after, .cform.open-a-online-store .cf-fs4 li#li-6-25 .inputtextContent::after, .cform.inquire-order-form .cf-ol li#li-3-17 .inputtextContent::after {
    background: transparent none repeat scroll 0 0;
    box-shadow: 4px 4px 0 #b3b3b3;
    content: "";
    display: inline-block;
    height: 18px;
    position: absolute;
    right: 5px;
    top: 27px;
    transform: rotate(45deg);
    width: 18px;
    z-index: 1;
}

.cform.ask-question-comment-form .cf-ol li#li-4-16 .inputtextContent::after, .cform.contact-rep-form .cf-fs4 li#li--18 .inputtextContent::after, .cform.smart-helmets-form .cf-ol li#li-5-16 .inputtextContent::after{
	background: transparent none repeat scroll 0 0;
    box-shadow: 4px 4px 0 #b3b3b3;
    content: "";
    display: inline-block;
    height: 18px;
    position: absolute;
    right: 5px;
    top: 27px;
    transform: rotate(45deg);
    width: 18px;
    z-index: 1;	
}

/* ----- text box area (bottom)---------*/
.cform .textonly.subheadingforms {
    color: #fff;
    font-family: "itc_frnklingoticstdmed";
    font-size: 24px;
    margin: 0 !important;
    padding: 0;
    text-shadow: 0 0 0; /*margin-bottom: 20px !important;*/
}

/* - changes accordingly-*/
.cform .fieldsetforcomments .cf-ol > li:last-child {
    display: none;
}
.cform .fieldsetforcomments .cf-ol > li {
    text-align: left;
    width: 100%;
}
.cform .fieldsetforcomments .cf-ol > li .inputtextContent {
    margin: 0;
}

/* - changes accordingly-*/
.secondformleadgen .cform .inputtextContent textarea {
    background: transparent none repeat scroll 0 0;
    border-color: transparent transparent #d5d6d7;
    border-style: none none solid;
    border-width: 0 0 4px;
    color: #fff;
    font-size: 24px;
    height: 55px;
    margin-bottom: 0;
    padding: 10px 10px 10px 0;
    width: 100%;
    font-family: Helvetica;
}
.secondformleadgen .cform .inputtextContent.hasValue textarea {
    height: 71px;
}
.secondformleadgen .cform .inputtextContent textarea:focus, .secondformleadgen .cform .inputtextContent textarea:hover {
    border-color: transparent transparent #fff;
    box-shadow: none;
    color: #fff;
    outline: medium none;
}

/* ----- text box area (bottom)---------*/
.cform .submit-form-container {
    color: #d5d6d7;
    display: inline-block;
    font-size: 18.1px;
    height: 83px;
    margin-bottom: 50px;
    margin-top: 50px;
    width: 100%;
}
.cform .submit-form-container-2 {
    display: inline-block;
    height: auto;
    position: relative;
    text-align: left;
    vertical-align: middle;
    width: 50%;
}
.cform .button-area-lead-form2 {
    display: inline-block;
    float: right;
    width: 50%;
    height: 83px;
}
.cform .submit-form-container label {
    color: #d5d6d7;
}
.cform .submit-form-container-2 label > p {
    display: inline-block;
    line-height: 30px;
    margin: 0 0 0 18px;
}
.cf-box-group {
    margin-top: 10px;
}
.cform .cf-box-group label p {
    color: #c3c3c3;
    display: inline-block;
    font-size: 24px;
    line-height: 26px;
    margin: 0 0 0 14px;
}
.cform .cf-box-group label:hover p {
    color: #fff;
}
.cform .submit-form-container .cancelform {
    display: inline-block;
    vertical-align: middle;
}
.cform .submit-form-container .submitform-lead-2 {
    display: inline-block;
    float: right;
    height: 100%;
}
.cform .submit-form-container .cancelform {
    display: inline-block;
    position: relative;
    text-align: right;
    top: 50% !important;
    transform: translateY(-50%);
    width: 152px;
}
.cform .submit-form-container .cancelform > a {
    color: inherit;
}
.cform .submit-form-container .cancelform > a:hover {
    text-decoration: underline;
}
.cform .submit-form-container + span {
    color: #d5d6d7;
    position: relative;
    top: -72px;
}

/* ----- submit button---------*/
.cform .submit-form-container p {
    position: relative;
    display: inline-block;
}
.cform .submit-form-container p .sendbutton {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background: #fff;
    border: 0 none;
    border-radius: 0;
    color: #000;
    cursor: pointer;
    float: right;
    font-family: "united_sanscondbld";
    font-size: 40px;
    letter-spacing: 4px;
    margin: 0;
    padding: 20px 95px 12px 74px;
    position: relative;
    text-decoration: none;
    text-transform: uppercase;
    transition: all 0.3s ease-in 0s;
    z-index: 200;
    text-shadow: 0 0 0;
}
.cform .submit-form-container .button-area-lead-form2 p::after {
    content: '';
    position: absolute;
    top: -10px;
    left: -10px;
    right: -10px;
    bottom: -10px;
    border: #fff 4px solid;
    border-top: #fff 5px solid;
    transition: all 0.3s ease-in;
}
.cform .submit-form-container .button-area-lead-form2 p::before {
    background: transparent none repeat scroll 0 0;
    box-shadow: 4px 4px 0 #000;
    content: "";
    display: inline-block;
    height: 21px;
    position: absolute;
    right: 84px;
    top: 26px;
    transition: all 0.3s ease-in 0s;
    transform: rotate(-45deg);
    width: 21px;
    z-index: 999;
}
.cform .submit-form-container .submitform-lead-2:hover p .sendbutton {
    background: #000 none repeat scroll 0 0;
    box-shadow: none;
    color: #fff;
    cursor: pointer;
}
.cform .submit-form-container .submitform-lead-2:hover p:after {
    border-color: #000;
    cursor: pointer;
}
.cform .submit-form-container .submitform-lead-2:hover p::before {
    box-shadow: 4px 4px 0 #fff;
    cursor: pointer;
}
.cform .submit-form-container .submitform-lead-2:active p .sendbutton {
    cursor: pointer;
}
.cform .submit-form-container .submitform-lead-2:visited p .sendbutton {
    cursor: pointer;
}

/* ----- submit button---------*/

/* ----- SECOND FORM ENDS---------*/

/* ----- checkbox---------*/



.cform .submit-form-container input[type="checkbox"]:not(old), .cform .product-checkbox-lead input[type="checkbox"]:not(old) {
    font-size: 0;
    height: 30px;
    margin: 0;
    opacity: 0;
    padding: 0;
    width: 30px;
}
.cform .submit-form-container input[type="checkbox"]:not(old) + label, .cform .product-checkbox-lead input[type="checkbox"]:not(old) + label {
    display: inline-block;
    line-height: unset;
    margin: 0 0 0 -35.5px;
    width: 94%;
}
.cform .product-checkbox-lead input[type="checkbox"]:not(old) + label {
    margin: 0 0 0 -29.5px !important;
}
.cform .submit-form-container input[type="checkbox"]:not(old) + label > span, .cform .product-checkbox-lead input[type="checkbox"]:not(old) + label > span {
    background: transparent none repeat scroll 0 0;
    border: 4px solid #d5d6d7;
    border-radius: 0;
    display: inline-block;
    font-size: 0;
    height: 30px;
    margin: 0;
    vertical-align: bottom;
    width: 30px;
}
.cform .submit-form-container input[type="checkbox"]:checked:not(old) + label > span, .cform .product-checkbox-lead input[type="checkbox"]:checked:not(old) + label > span {
    border: 4px solid #fff;
}
.cform .submit-form-container input[type="checkbox"]:checked:not(old) + label > span::before, .cform .product-checkbox-lead input[type="checkbox"]:checked:not(old) + label > span::before {
    background: rgba(0, 0, 0, 0) url("../images/tick-sign.svg") no-repeat scroll center center / 18px auto;
    content: "";
    display: block;
    font-size: 0;
    height: 100%;
    width: 100%;
}
.cform .cf-box-group input[type="radio"]:not(old) {
    font-size: 0;
    height: 32px;
    margin: 0;
    opacity: 0;
    padding: 0;
    width: 32px;
}
.cform .cf-box-group input[type="radio"]:not(old) + label {
    margin: 0 25px 0 -30px;
    width: auto;
    text-align: center;
}
.cform #li-7-17items.cf-box-group input[type="radio"]:not(old) + label {
    margin: 0 20px 0 -30px;
}
.cform #li-7-29items.cf-box-group input[type="radio"]:not(old) + label {
    margin: 0 45px 0 -30px;
}
.cform #li-7-29items.cf-box-group input[type="radio"]:not(old) + label#label-7-294 {
    margin: 0 0 0 -30px;
}
.cform .cf-box-group input[type="radio"]:not(old) + label > span {
    background: transparent none repeat scroll 0 0;
    border: 4px solid #d5d6d7;
    border-radius: 50px;
    display: inline-block;
    font-size: 0;
    height: 32px;
    margin: 0;
    vertical-align: bottom;
    width: 32px;
}
.cform .cf-box-group input[type="radio"]:not(old):checked + label > span {
    border: 4px solid #fff;
}
.cform .cf-box-group input[type="radio"]:not(old):checked + label > span::before {
    background: #fff none repeat scroll 0 0;
    border-radius: 50px;
    content: "";
    display: inline-block;
    height: 18px;
    position: relative;
    top: 50%;
    transform: translateY(-50%);
    width: 18px;
}
.cform ol.cf-ol li.cf-box-title {
    color: #c3c3c3;
    font-size: 18px;
    font-weight: 400;
    padding-left: 0px;
}

/* ----- checkbox---------*/
.cform .fieldsetforcomments .textonly.subheadingforms {
    margin-bottom: 0 !important;
}

/* -------validation-------*/
.cform .cf_li_err .cf_li_text_err {
    bottom: 0;
    display: inline-block;
    height: 40px;
    left: 0;
    line-height: 40px;
    margin: 0;
    position: relative;
    width: 451px;
}
.cform .cf_li_err .cf_li_text_err li {
    background: #fff none repeat scroll 0 0 !important;
    color: #d31c1c;
    font-family: "itc_frnklingoticstdbook";
    font-size: 20px;
    font-weight: 400;
    line-height: 40px;
    margin: 0 !important;
    padding: 0 0 0 15px;
}
.cform ol.cf-ol li.cf_li_err {
    background: transparent none repeat scroll 0 0 !important;
    border: medium none;
    margin: 0 !important;
    padding: 0 !important;
}
.cform .cf_li_err .inputtextContent::before, .cform .cf_li_err .cf-box-group::before {
    background: #fff none repeat scroll 0 0;
    border-radius: 100px;
    color: red;
    content: "!";
    font-family: "itc_frnklingoticstdmed";
    font-size: 20px;
    font-weight: 900;
    left: -37px;
    padding: 5px 12px 0;
    position: absolute;
    top: 37px;
    z-index: 99999999;
}
.cform .cf_li_err .cf-box-group::before {
    top: -39px !important;
}
.cform .cf_li_err .inputtextContent, .cform .cf_li_err .cf-box-group {
    position: relative;
}

/* -------validation-------*/

/* -------dropdown-------*/
.cform .dropdownlist, .dropdownlisthearaboutriddell {
    overflow: scroll;
    width: 451px;
    z-index: 9999;
    height: 322px;
}
.cform .dropdownlist a, .cform .dropdownlisthearaboutriddell a {
    background: #fff none repeat scroll 0 0;
    color: #000;
    font-size: 24px;
    font-weight: 400;
    line-height: 46px;
    padding: 0 17px;
}
.cform .dropdownlist a:hover, .cform .dropdownlisthearaboutriddell a:hover {
    background: #b71500 none repeat scroll 0 0;
    color: #fff;
}

/* -------dropdown-------*/

/* -------specific space in grid-------*/

.cform.find-a-rep-form .cf-fs2 #li-2-13, .cform.open-a-online-store .cf-fs2 #li-6-13, .cform.request-a-reconditioning-quote .cf-fs2 #li-7-13 {
    padding-left: 14px !important;
}
.cform.find-a-rep-form .cf-fs4 {
    margin-top: 0 !important;
}

/* -------datepicker-------*/
.ui-datepicker {
    border: 0 none transparent !important;
    border-radius: 0 !important;
    font-family: "itc_frnklingoticstdbook" !important;
    margin-top: 10px;
    width: 451px !important;
    padding: 25px 36px 0 !important;
}
.ui-datepicker .ui-widget-header {
    background: transparent none repeat scroll 0 0;
    border: medium none;
    color: #000;
    font-size: 24px;
    font-weight: 400;
    padding: 0 !important;
}
.ui-datepicker .ui-widget-header .ui-icon {
    background: transparent none repeat scroll 0 0;
    box-shadow: 4px 4px 0 rgb(213, 214, 215);
    content: "";
    display: inline-block;
    height: 20px;
    position: absolute;
    right: 47px;
    top: 14px;
    transform: rotate(138deg);
    width: 20px;
}
.ui-datepicker .ui-widget-header .ui-icon {
    background: transparent none repeat scroll 0 0;
    box-shadow: 4px 4px 0 rgb(213, 214, 215);
    content: "";
    display: inline-block;
    height: 20px;
    position: absolute;
    right: 47px;
    top: 19px;
    width: 20px;
}
.ui-datepicker .ui-widget-header .ui-datepicker-next .ui-icon {
    transform: rotate(-45deg);
}
.ui-datepicker .ui-widget-header .ui-datepicker-prev .ui-icon {
    transform: rotate(135deg);
}
.ui-datepicker .ui-datepicker-next {
    right: 0px !important;
}
.ui-datepicker .ui-datepicker-prev {
    left: 0px !important;
}
.ui-state-hover, .ui-widget-content .ui-state-hover, .ui-widget-header .ui-state-hover, .ui-state-focus, .ui-widget-content .ui-state-focus, .ui-widget-header .ui-state-focus {
    background: transparent none repeat scroll 0 0 !important;
    border: 0 none transparent !important;
    color: transparent !important;
}
.ui-datepicker .ui-datepicker-next-hover {
    right: 0px !important;
}
.ui-datepicker .ui-datepicker-prev-hover {
    left: 0px !important;
}
.ui-datepicker .ui-datepicker-title select {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    border: medium none;
    color: #000;
    font-family: "itc_frnklingoticstdbook";
    font-size: 24px;
    outline: medium none;
    width: 67px !important;
}
.ui-datepicker-calendar {
    border: 0 none transparent;
}
.ui-datepicker table tr.even, .ui-datepicker table tr.alt, .ui-datepicker table tr:nth-of-type(2n) {
    background: transparent none repeat scroll 0 0;
}
.ui-datepicker table thead {
    background: transparent none repeat scroll 0 0;
    color: #000;
    font-size: 20px;
}
.ui-datepicker table thead th {
    padding: 25px 0;
}
.ui-datepicker table tbody td > a {
    background: transparent none repeat scroll 0 0 !important;
    border: 0 none transparent !important;
    color: #959595 !important;
    display: block;
    font-size: 18px;
    height: 40px;
    line-height: 40px;
    margin: 0 auto;
    text-align: center;
    width: 40px;
}
.ui-datepicker table tbody td > a:hover {
    background: #ce1126 none repeat scroll 0 0 !important;
    border-radius: 150px;
    color: #fff !important;
}
.ui-datepicker-buttonpane.ui-widget-content {
    border: 0 none !important;
    display: block;
    margin: 25px -39px 0 !important;
}
.ui-datepicker-buttonpane.ui-widget-content button {
    background: #ececec none repeat scroll 0 0;
    border: 0 none transparent;
    border-radius: 0 !important;
    color: #000;
    font-family: "itc_frnklingoticstdbook" !important;
    font-size: 24.18px !important;
    font-weight: 400 !important;
    margin: 0 !important;
    padding: 0 !important;
    text-transform: uppercase;
    width: 222px !important;
    height: 70px !important;
}
.ui-datepicker-buttonpane.ui-widget-content button:hover {
    background: #e1e1e1 none repeat scroll 0 0 !important;
    color: inherit !important;
}
.ui-datepicker-trigger {
    display: none;
}
.ui-datepicker-clear.ui-state-default.ui-priority-primary.ui-corner-all {
    float: right !important;
}
.ui-datepicker .ui-datepicker-buttonpane button {
    float: left !important;
}

/* -------datepicker-------*/

/* -------images area (interested products)-------*/
#cforms5form .cf-fs4 li#li-5-23 {
    display: none;
}
#cforms5form #li-5-23items.cf-box-group {
    margin: 0 !important;
    padding: 0;
}
#cforms5form #li-5-23items.cf-box-group .product-checkbox-lead, #cforms5form #li-5-23items.cf-box-group .product-checkbox-lead-last-div {
    display: block;
    float: left;
    font-family: "itc_frnklingoticstdbook";
    position: relative;
    width: 33.33%;
}
#cforms5form .product-checkbox-lead .inputtextContent input {
    width: 100%;
}
#cforms5form #li-5-23items.cf-box-group .product-checkbox-lead h3 {
    color: #c3c3c3;
    font-family: "itc_frnklingoticstdbook";
    font-size: 24px;
    font-weight: 400;
    margin: 0 0 13px;
    padding-left: 48px;
}
.cform .product-checkbox-lead input[type="checkbox"]:not(old) + label > span {
    position: absolute;
    top: 0;
    left: 1px;
}
#cforms5form #li-5-23items.cf-box-group .product-checkbox-lead p {
    color: #d5d6d7;
    font-size: 16px;
    line-height: normal;
    margin: 5px 0 0;
}
#cforms5form #li-5-23items.cf-box-group .product-checkbox-lead img {
    border: 4px solid #fff;
}
#cforms5form .cf-fs4 #li-5-22.textonly {
    font-size: 18px;
    margin: 0 0 25px !important;
    padding: 0;
}
#cforms5form .cf-fs4 .textonly.subheadingforms {
    margin-bottom: 5px !important;
}
#cforms5form #li-5-23items.cf-box-group .product-checkbox-lead-last-div .product-checkbox-lead {
    width: 100%;
}
#cforms5form #li-5-23items.cf-box-group .product-checkbox-lead-last-div .product-checkbox-lead h3 {
    margin-bottom: 15px;
}
#cforms5form #li-5-23items.cf-box-group .product-checkbox-lead-last-div .product-checkbox-lead p {
    margin: 0;
}
#cforms5form #li-5-23items.cf-box-group .product-checkbox-lead-last-div .product-checkbox-lead #label-5-233 {
    margin-bottom: 43px !important;
}
#cforms5form #li-5-23items.cf-box-group .product-checkbox-lead-last-div .product-checkbox-lead .inputtextContent {
    margin: 0;
}
#cforms5form .cf-fs4 li#li-5-24 {
    display: none;
}
.lead-generation-container.secondform-lead-header {
    width: 988px;
}
.cform.request-a-reconditioning-quote .cf-fs6 #li-7-33 .cf_li_text_err, .cform.request-a-reconditioning-quote .cf-fs7 #li-7-37 .cf_li_text_err {
    width: 100%;
}
.secondformleadgen .cform .inputtextContent input::-webkit-input-placeholder {

    /* Chrome/Opera/Safari */
    color: #d5d6d7;
    opacity: 1;
}
.secondformleadgen .cform .inputtextContent input::-moz-placeholder {

    /* Firefox 19+ */
    color: #d5d6d7;
    opacity: 1;
}
.secondformleadgen .cform .inputtextContent input:-ms-input-placeholder {

    /* IE 10+ */
    color: #d5d6d7;
    opacity: 1;
}
.secondformleadgen .cform .inputtextContent input:-moz-placeholder {

    /* Firefox 18- */
    color: #d5d6d7;
    opacity: 1;
}
.ui-datepicker select.ui-datepicker-month, .ui-datepicker select.ui-datepicker-year {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}
.cform.request-a-reconditioning-quote .cf-fs5 .textonly.subheadingforms, .cform.request-a-reconditioning-quote .cf-fs6 .textonly.subheadingforms, .cform.request-a-reconditioning-quote .cf-fs7 .textonly.subheadingforms {
  margin-bottom: 15px !important;
}
.cform.request-a-reconditioning-quote .cf-fs5, .cform.request-a-reconditioning-quote .cf-fs6, .cform.request-a-reconditioning-quote .cf-fs7 {
  margin-top: 35px !important;
}
@media only screen and (min-width:930px) and (max-width:1115px) {
    .secondformleadgen .second-form-content-1-combine-div .whole-div-second-form {
        text-align: center;
        width: 831px !important;
    }
    .secondformleadgen .second-form-content-1-combine-div div.resetform {
        vertical-align: top;
    }
}
@media only screen and (max-width:1024px) {
    #cforms5form #li-5-23items.cf-box-group .product-checkbox-lead h3 {
        line-height: 35px;
    }
    .header .logo a, .header .logo img {
        display: block;
        z-index: 90;
    }
    #leadGenerationModal {
        z-index: 999999;
        padding-top: 0px;
    }
    .logo-image-top-leadpage {
        display: inline-block !important;
        margin-top: 28px;
        text-align: center;
        width: 100%;
        position: relative;
        z-index: 1000000;
    }
    .logo-image-top-leadpage img {
        width: 180px;
    }
    #leadGenerationModal .class-above-close-button {
        right: 0;
        padding-right: 0;
        position: absolute;
        top: 80px;
        width: auto;
        z-index: 0;
        z-index: 9999999;
    }
}
@media only screen and (max-width:990px) {
    .lead-generation-container.secondform-lead-header {
        width: 100%;
    }
}
@media only screen and (max-width:929px) {
    .cform .fieldsetforcomments .textonly.subheadingforms {
        transform: translatey(12px);
    }
    .second-form-content-2-combine-div .cform .cf-fs3 ol li {
        text-align: left;
        width: 100%;
        margin-bottom: 0px !important;
    }
    .lead-generation-container {
        margin: 0 auto;
        padding: 0 70px;
        position: relative;
        width: 100%;
    }
    .firstformleadgen {
        min-height: 650px;
    }
    .second-form-content-1-combine-div {
        height: 204px;
    }
    .secondformleadgen .second-form-content-1-combine-div div.resetform {
        left: 43px;
        margin: 0 !important;
        position: absolute;
        top: 43px;
        z-index: 99999999999;
    }
    .secondformleadgen .second-form-content-1-combine-div .whole-div-second-form {
        display: inline-block;
        font-size: 24px;
        margin-left: 0;
        margin-top: 94px;
        width: 100%;
    }
    .secondformleadgen {
        margin: -85px -1.25em -1.25em;
    }
    .secondformleadgen .second-form-content-2-combine-div {
        padding: 0 70px;
        width: 100%;
    }
    .secondformleadgen .second-form-content-2-combine-div > form {
        width: 100%;
        padding-bottom: 300px;
    }
    .cform .cf-ol > li, .secondformleadgen .cform .inputtextContent input {
        width: 100%;
    }
    .cform .dropdownlist, .cform .dropdownlisthearaboutriddell {
        width: 100%;
    }
    .cform ol li:nth-child(2n) .inputtextContent {
        margin-left: 0;
    }
    #cforms5form #li-5-23items.cf-box-group .product-checkbox-lead, #cforms5form #li-5-23items.cf-box-group .product-checkbox-lead-last-div {
        width: 100%;
    }
    .cform .inputtextContent > label {
        font-size: 30px;
    }
    .secondformleadgen .cform .inputtextContent input {
        font-size: 30px;
    }
    #cforms5form .cf-fs3 .textonly.subheadingforms, .cform .textonly.subheadingforms {
        font-size: 35px;
    }
    #cforms5form .cf-fs3 #li-5-17.textonly {
        font-size: 24px;
    }
    #cforms5form #li-5-23items.cf-box-group .product-checkbox-lead h3 {
        font-size: 30px;
        line-height: 50px;
        padding-left: 73px;
    }

    /* ----- checkbox---------*/
    .cform .submit-form-container input[type="checkbox"]:not(old) + label > span, .cform .product-checkbox-lead input[type="checkbox"]:not(old) + label > span {
        background: transparent none repeat scroll 0 0;
        border: 4px solid #d5d6d7;
        border-radius: 0;
        display: inline-block;
        font-size: 0;
        height: 50px;
        margin: 0;
        vertical-align: bottom;
        width: 50px;
    }
    .cform .submit-form-container input[type="checkbox"]:not(old), .cform .product-checkbox-lead input[type="checkbox"]:not(old) {
        height: 50px;
        width: 50px;
    }
    .cform .submit-form-container input[type="checkbox"]:not(old) + label, .cform .product-checkbox-lead input[type="checkbox"]:not(old) + label {
        display: inline-block;
        line-height: unset;
        margin: 0 0 0 -55.5px;
        width: 94%;
    }
    .cform .submit-form-container input[type="checkbox"]:checked:not(old) + label > span::before, .cform .product-checkbox-lead input[type="checkbox"]:checked:not(old) + label > span::before {
        background: rgba(0, 0, 0, 0) url("../images/tick-sign.svg") no-repeat scroll center center / 26px auto;
    }
    .cform .cf-box-group input[type="radio"]:not(old) + label > span {
        text-align: center;
    }
    .cform fieldset {
        margin: 35px 0 0 !important;
    }
    .cform .cf-box-group input[type="radio"]:not(old) + label > span {
        width: 42px;
        height: 42px;
    }
    .cform .cf-box-group input[type="radio"]:not(old) {
        width: 42px;
        height: 42px;
    }
    .cform .cf-box-group input[type="radio"]:not(old):checked + label > span::before {
        width: 26px;
        height: 26px;
    }
    .cform .cf-box-group label p {
        font-size: 22px;
        line-height: 36px;      /*margin-left: 6px;*/
    }
    .cform .cf-box-group input[type="radio"]:not(old) + label, .cform #li-7-17items.cf-box-group input[type="radio"]:not(old) + label {
        margin: 0 34px 0 -50px;
    }
    .cform #li-7-29items.cf-box-group input[type="radio"]:not(old) + label {
        margin: 0 45px 0 -42px;
    }

    /* ----- checkbox---------*/
    #cforms5form #li-5-23items.cf-box-group .product-checkbox-lead p {
        margin: 15px 0 15px;
    }
    .cform .submit-form-container-2 label > p {
        line-height: 50px;
    }
    .cform .submit-form-container-2 {
        height: 100px;
        width: 100%;
    }
    .cform .submit-form-container {
        height: auto;
        font-size: 24px;
    }
    .cform .button-area-lead-form2 {
        width: 420px;
        margin-top: 70px;
    }
    .cform .submit-form-container + span {
        top: -218px;
        font-size: 24px;
    }
    .cform .submit-form-container-2 label > p {
        font-size: 24px;
        letter-spacing: 0.0025em;
        line-height: 26px;
        width: 82%;
    }
    .cform .cf_li_err .cf_li_text_err {
        width: 100%;
    }
    .cform.find-a-rep-form .cf-fs2 #li-2-13, .cform.open-a-online-store .cf-fs2 #li-6-13, .cform.request-a-reconditioning-quote .cf-fs2 #li-7-13 {
        padding: 30px 0 0 !important;
        font-size: 17px;
    }
    .cform .submit-form-container .cancelform {
        width: 100px;
    }
    .cform .cf_li_err .inputtextContent::before, .cform .cf_li_err .cf-box-group::before {
        padding: 5px 11px 0;
    }
    #cforms5form #li-5-23items.cf-box-group .product-checkbox-lead img {
        width: 100%;
        height: auto;
    }
    .cform .product-checkbox-lead input[type="checkbox"]:not(old) + label {
        width: 100%;
        margin: -41px 0 50px !important;
    }
    .cform #li-7-29items.cf-box-group input[type="radio"]:not(old) + label, .cform #li-7-29items.cf-box-group input[type="radio"]:not(old) + label#label-7-294 {
        margin: -41px 0 50px;
        width: 100%;
        text-align: left;
    }
    .cform #li-7-29items.cf-box-group input[type="radio"]:not(old) + label#label-7-294 {
        margin-bottom: 0px !important;
    }
}
@media only screen and (max-width:768px) {
    #cforms5form #li-5-23items.cf-box-group .product-checkbox-lead h3 {
        line-height: 40px;
    }
    .cform .submit-form-container .cancelform {
        position: absolute;
    }
    .cform .submit-form-container .button-area-lead-form2 {
        position: relative;
        height: auto;
    }
    .secondformleadgen .second-form-content-1-combine-div div.resetform {
        left: 43px;
        margin: 0 !important;
        position: absolute;
        top: 43px;
        z-index: 99999999999;
    }
    .secondformleadgen .second-form-content-1-combine-div .whole-div-second-form {
        display: inline-block;
        font-size: 24px;
        margin-left: 0;
        margin-top: 94px;
        width: 100% !important;
    }
    #leadGenerationModal .class-above-close-button {
        top: 28px;
    }
    .cform.smart-helmets-form .cf-fs3 .product-checkbox-lead input[type="checkbox"]:not(old) + label{
        margin: -41px 0 35px !important;
    }
.cform.smart-helmets-form .cf-fs3 .product-checkbox-lead label p {
    margin-bottom: 0px !important;
}
    .cform.find-a-rep-form .cf-fs2 #label-2-131, .cform.open-a-online-store .cf-fs2 #label-6-131, .cform.request-a-reconditioning-quote .cf-fs2 #label-7-131{
        
        padding-right: 50px;
    }
}

/* -------scroll background-------- */
@media only screen and (max-width:737px) {
    .secondformleadgen .second-form-content-2-combine-div {
        position: relative;
    }
    .secondformleadgen .second-form-content-2-combine-div > form {
        padding-bottom: 50px;
    }
    .secondformleadgen .second-form-content-2-combine-div {
        background: transparent none repeat scroll 0 0;
        padding: 0 70px;
        width: 100%;
    }
    #leadGenerationModal {
        background: rgba(0, 0, 0, 0) url("../images/form-2-bg.jpg") no-repeat scroll center top / cover;
    }
    #leadGenerationModal.lead-gen-popup.firstformcontainer.showleadpopup {
        background: rgba(244, 244, 244, 0.98) none repeat scroll 0 0;
    }
    #cforms5form #li-5-23items.cf-box-group .product-checkbox-lead h3 {
        padding-left: 54px;
    }
    #cforms5form #li-5-23items.cf-box-group .product-checkbox-lead h3 {
        line-height: 40px;
    }
    .cf-fs2 #li-2-13items.cf-box-group label#label-2-131.cf-after {
        margin-right: 75px;
    }

}
@media only screen and (max-width:667px) {
    #cforms5form #li-5-23items.cf-box-group .product-checkbox-lead h3 {
        line-height: 40px;
        margin-left: 5px;
    }
    .secondformleadgen .second-form-content-1-combine-div .whole-div-second-form {
        font-size: 22px;
        line-height: 28px;
    }
    .cform.request-a-reconditioning-quote .cf-fs5 .textonly.subheadingforms, .cform.request-a-reconditioning-quote .cf-fs6 .textonly.subheadingforms, .cform.request-a-reconditioning-quote .cf-fs7 .textonly.subheadingforms {
  margin-bottom: 5px !important;
}
}
@media only screen and (max-width:639px) {
    .secondformleadgen .second-form-content-1-combine-div .whole-div-second-form > div {
        font-size: 20px;
    }
    .lead-generation-container {
        padding: 0 40px;
    }
    .second-form-content-1-combine-div {
        height: 200px;
    }
    .secondformleadgen .second-form-content-2-combine-div {
        padding: 0 40px;
    }
    .cform .cf-ol > li {
        font-size: 15px;
    }
    .cform .inputtextContent > label {
        font-size: 23px;
    }
    .secondformleadgen .cform .inputtextContent input {
        font-size: 23px;
        text-overflow: ellipsis;
    }
    #cforms5form .cf-fs3 .textonly.subheadingforms, .cform .textonly.subheadingforms {
        font-size: 32px;
    }
    .cform .submit-form-container input[type="checkbox"]:not(old) + label > span, .cform .product-checkbox-lead input[type="checkbox"]:not(old) + label > span {
        width: 40px;
        height: 40px;
    }
    .cform .submit-form-container input[type="checkbox"]:not(old), .cform .product-checkbox-lead input[type="checkbox"]:not(old) {
        height: 40px;
        width: 40px;
    }
    .cform .submit-form-container-2 label > p {
        font-size: 19px;
        line-height: 20px;
        width: 83%;
    }
    .cform .submit-form-container + span {
        font-size: 19px;
    }
    #cforms5form #li-5-23items.cf-box-group .product-checkbox-lead h3 {
        font-size: 30px;
    }
    .cform .button-area-lead-form2 {
        width: 390px;
    }
    .cform .submit-form-container p .sendbutton {
        padding: 21px 95px 12px 76px;
    }
    .cform .submit-form-container-2 label > p {
        width: 310px;
    }
    .cform .cf_li_err .inputtextContent::before, .cform .cf_li_err .cf-box-group::before {
        padding: 6px 11px 1px;
        left: -32px;
    }
    .firstformleadgen {
        min-height: 530px;
    }
    .cform .submit-form-container .cancelform {
        width: 100%;        /*position: absolute;*/
        right: 319px;
    }
    #cforms5form #li-5-23items.cf-box-group .product-checkbox-lead h3 {
        line-height: 50px;
    }
    .cform.request-a-reconditioning-quote .cf-fs4 {
        margin-top: 0px !important;
    }
}
@media only screen and (max-width:520px) {
    .secondformleadgen .second-form-content-1-combine-div div.resetform {
        top: 53px;
        left: 20px;
        z-index: 99999999999;
    }
    .cform .dropdownlist a, .cform .dropdownlisthearaboutriddell a {
        font-size: 22px;
    }
    .ui-datepicker {
        left: 0 !important;
        margin-left: 2%;
        margin-right: 2%;
        width: 96% !important;
    }
    .ui-datepicker-buttonpane.ui-widget-content button {
        width: 49% !important;
    }
    .cform .cf-box-group input[type="radio"]:not(old) + label > span {
        width: 32px;
        height: 32px;
    }
    .cform .cf-box-group input[type="radio"]:not(old) {
        width: 32px;
        height: 32px;
    }
    .cform .cf-box-group input[type="radio"]:not(old):checked + label > span::before {
        width: 16px;
        height: 16px;
    }
    .cform .cf-box-group label p {
        font-size: 18px;
        line-height: 26px;
    }
    .cform .cf-box-group input[type="radio"]:not(old) + label {
        margin: 0 31px 0 -32px
    }
    .cform .product-checkbox-lead input[type="checkbox"]:not(old) + label {
        width: 100%;
        margin: -31px 0 15px !important;
    }
}
@media only screen and (max-width:480px) {
    #cforms5form #li-5-23items.cf-box-group .product-checkbox-lead h3 {
        line-height: 30px;
    }
}
@media only screen and (max-width:479px) {
    .lead-generation-container {
        padding: 0 20px;
    }
    .secondformleadgen .second-form-content-1-combine-div .whole-div-second-form > div {
        font-size: 17px;
        line-height: 25px;
    }
    .secondformleadgen .second-form-content-1-combine-div .whole-div-second-form {
        margin-top: 100px;
    }
    .cform .submit-form-container input[type="checkbox"]:not(old) + label > span, .cform .product-checkbox-lead input[type="checkbox"]:not(old) + label > span {
        vertical-align: top;
    }
    .cform .submit-form-container input[type="checkbox"]:not(old) + label {
        margin: 0 0 0 -45.5px;
    }
    .cform .submit-form-container-2 label > p {
        font-size: 14px;
        left: 0;
        margin-left: 0;
        padding-left: 60px;
        position: absolute;
        width: 100%;
    }
    .cform .submit-form-container p .sendbutton {
        font-size: 28px;
        padding: 15px 55px 11px 35px;
    }
    .cform .submit-form-container .button-area-lead-form2 p::before {
        height: 18px;
        right: 42px;
        top: 17px;
        width: 18px;
    }
    .cform .submit-form-container .cancelform {
        right: 216px;
    }
    .cform .button-area-lead-form2 {
        height: 110px;
        margin-top: 50px;
        width: 100%;
    }
    .cform .button-area-lead-form2 {
    }
    .cform .submit-form-container .submitform-lead-2 {

        /*margin-right: 11px;*/
    }
    .cform .submit-form-container + span {
        font-size: 17px;
        top: -180px;
    }
    #cforms5form #li-5-23items.cf-box-group .product-checkbox-lead h3 {
        font-size: 25px;
    }
    #cforms5form .cf-fs3 #li-5-17.textonly {
        font-size: 20px;
    }
    #cforms5form .cf-fs3 .textonly.subheadingforms, .cform .textonly.subheadingforms {
        font-size: 30px;
        line-height: 34px;
    }
    .cform .dropdownlist a, .cform .dropdownlisthearaboutriddell a {
        font-size: 20px;
    }
    .cform .cf-box-group input[type="radio"]:not(old) + label, .cform #li-7-17items.cf-box-group input[type="radio"]:not(old) + label {
        margin: -32px 0 0;
        text-align: left;
        width: 100%;
    }
    .cf-fs2 #li-2-13items.cf-box-group label#label-2-131.cf-after {
        margin-right: 10px;
    }
    .cform.request-a-reconditioning-quote .cf-fs3, .cform.find-a-rep-form .cf-fs3, .cform.open-a-online-store .cf-fs3, .cform.open-a-online-store .cf-fs4 {
        margin-top: 10px !important;
    }
}
@media only screen and (max-width:399px) {
    .cform .dropdownlist a, .cform .dropdownlisthearaboutriddell a {
        font-size: 18px;
    }
    .cform .product-checkbox-lead input[type="checkbox"]:not(old) + label {
        margin: -40px 0 40px !important;
    }
    #cforms5form #li-5-23items.cf-box-group .product-checkbox-lead #label-5-182 h3, #cforms5form #li-5-23items.cf-box-group .product-checkbox-lead #label-5-184 h3 {
        line-height: 29px;
    }
    #cforms5form #li-5-23items.cf-box-group .product-checkbox-lead h3 {
        line-height: 40px;
        margin-left: 0px;
    }
    #cforms5form #li-5-23items.cf-box-group .product-checkbox-lead-last-div .product-checkbox-lead #label-5-183 {
        margin-bottom: 36px !important;
    }
    .ui-datepicker .ui-datepicker-title {
        margin: 0 !important;
    }
    .cform .submit-form-container p .sendbutton {
        font-size: 24px;
        padding: 10px 45px 10px 27px;
    }
    .cform .submit-form-container .button-area-lead-form2 p::before {
        height: 15px;
        right: 36px;
        top: 12px;
        width: 15px;
        box-shadow: 3px 3px 0 #000;
    }
    .cform .submit-form-container .cancelform {
        right: 186px;
        font-size: 15px;
    }
    .cform .button-area-lead-form2 {
        margin-top: 30px;
    }
    .cform .submit-form-container + span {
        top: -168px;
    }
    .cform .inputtextContent > label {
        font-size: 21px;
    }
}
@media only screen and (max-width:375px) {
    #cforms5form #li-5-23items.cf-box-group .product-checkbox-lead h3 {
        line-height: 50px;
    }
    #cforms5form #li-5-23items.cf-box-group .product-checkbox-lead #label-5-182 h3 {
        line-height: 50px;
    }
}
@media only screen and (max-width:359px) {
    .cform .cf-ol > li {
        font-size: 14px;
    }
    .cform .dropdownlist a, .cform .dropdownlisthearaboutriddell a {
        font-size: 16px;
    }
    .cform .inputtextContent > label {
        font-size: 20px;
    }
    .secondformleadgen .cform .inputtextContent input {
        font-size: 20px;
    }
    #cforms5form .cf-fs3 .textonly.subheadingforms, .cform .textonly.subheadingforms {
        font-size: 28px;
    }
    .cform .cf-box-group label p {
        font-size: 20px;
    }
    .cform .textonly.subheadingforms {
        color: #fff;
        font-family: "itc_frnklingoticstdmed";
        font-size: 24px;
        margin: 0 !important;
        padding: 0;
        text-shadow: 0 0 0;
        margin-bottom: 0px !important;
    }
    .second-form-content-2-combine-div .cform .cf-fs3 ol li {
        text-align: left;
        width: 100%;
        margin-bottom: 0px !important;
    }
}
@media only screen and (max-width:330px) {
    .secondformleadgen .second-form-content-1-combine-div .whole-div-second-form > div {
        font-size: 14px;
    }
    .cform .submit-form-container .submitform-lead-2 {
        display: block;
        float: right;
        height: 100%;       /*margin-top: 15px;
        margin-left: 11px;*/
    }
    .cform .inputtextContent > label {
        font-size: 18px;
    }
    .secondformleadgen .cform .inputtextContent input {
        font-size: 18px;
    }
    .cform .cf-box-group label p {
        font-size: 18px;
    }
    .ui-datepicker {
        padding: 15px 10px 0 !important;
    }
    .ui-datepicker-buttonpane.ui-widget-content {
        margin: 6px -13px 0 !important;
    }
    .ui-datepicker table tbody td > a {
        width: 35px;
    }
    .cform .submit-form-container .cancelform {

        /*top: 40px !important;
        transform: translateY(0%);*/
        right: 179px;
    }
    .cform .submit-form-container + span {
        top: -176px;
        font-size: 14px;
    }
    #cforms5form #li-5-23items.cf-box-group .product-checkbox-lead h3 {
        line-height: 30px;
        margin-left: 0px;
        font-size: 18px;
    }
    .cform .product-checkbox-lead input[type="checkbox"]:not(old) + label {
        margin: -30px 0 0px !important;
    }
    #cforms5form #li-5-23items.cf-box-group .product-checkbox-lead #label-5-182 h3 {
        line-height: 29px;
    }
}

/* ----- thankyou page---------*/
.col-stry {
    float: left;
    padding-left: 10px;
    padding-right: 8px;
    width: 33.3333%;
}
.innerstimgon {
    background-color: #b71500;
    box-shadow: 0 0 3px 1px rgba(0, 0, 0, 0.2);
    overflow: hidden;
    position: relative;
    transition: all 0.4s ease 0s;
}
.innerstimgon img.strimgbg {
    width: 100%;
    display: block;
    mix-blend-mode: multiply;
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
    transition: all 0.4s;
}
.innerstimgon:hover {
    background-color: #fff;
}
.innerstimgon:hover img.strimgbg {
    -webkit-transform: scale3d(1.2, 1.2, 1);
    transform: scale3d(1.2, 1.2, 1);
}
a.strylnk {
    text-decoration: none;
}
.strttmmbful .innerttlst {
    position: absolute;
    top: 57%;
    transform: translateY(-50%);
    width: 100%;
}
.strttmmbful .innerttlst img {
    width: 110px;
    height: auto;
    display: block;
    margin: auto;
}
.strttmmbful .innerttlst hr {
    width: 34px;
    height: 4px;
    margin: 22px auto 18px;
    background-color: #fff;
    border: 0px;
    transition: all 0.4s ease 0s;
}
.strttmmbful .innerttlst h6 {
    color: #fff;
    display: block;
    font-family: "itc_frnklingoticstdmed";
    font-size: 20px;
    letter-spacing: 0.1em;
    margin-bottom: 0;
    margin-top: 0;
    text-align: center;
    text-transform: uppercase;
    transition: all 0.4s ease 0s;
}
.stryftbl {
    float: left;
    margin-top: 16px;
    width: 100%;
}
.strttmmbful .innerttlst p {
    color: #fff;
    font-family: Helvetica;
    font-size: 14px;
    font-weight: lighter !important;
    letter-spacing: 0.025em;
    line-height: 20px;
    padding: 0 30px;
    text-align: center;
    transition: all 0.4s ease 0s;
}
.storytmbndl .col-stry:first-child {
    padding-left: 0;
    padding-right: 10px;
}
.storytmbndl .col-stry:nth-child(2n) {
    padding-left: 6px;
    padding-right: 6px;
}
.storytmbndl .col-stry:last-child {
    padding-right: 0;
}
.innerstimgon:hover hr {
    opacity: 0;
    position: relative;
}
.innerstimgon:hover .innerttlst p {
    margin-top: 25px;
    opacity: 0;
}
.innerstimgon:hover .innerttlst h6 {
    margin-top: 100px;
}
@media only screen and (max-width:929px) {
    .col-stry {
        padding: 0 !important;
        width: 45%;
        margin: 40px auto 0;
        float: unset;
    }
    .stryftbl {
        margin-top: 0;
    }
    .subpage_banner .banner_wrap .text .table .valign.thankyou {
        padding: 40px;
    }
}
@media only screen and (max-width:768px) {
    .col-stry {
        width: 70%;
    }
    .subpage_banner .banner_wrap .text .table .valign.thankyou {
        text-align: center;
    }
    .subpage_banner .banner_wrap .text .caption.thankyou {
        font-size: 24px;
        line-height: 30px;
        margin-top: 22px !important;
    }
    .subpage_banner .banner_wrap .text .headline.thankyou {
        font-size: 54.92px;
    }
    .strttmmbful .innerttlst h6 {
        font-size: 30px;
    }
    .strttmmbful .innerttlst p {
        font-size: 20px;
        line-height: 25px;
    }
    .logo-image-top-leadpage {
        z-index: 1000000;
        position: relative;
    }
}
@media only screen and (max-width:640px) {
    .col-stry {
        width: 80%;
    }
}
@media only screen and (max-width:480px) {
    .strttmmbful .innerttlst h6 {
        font-size: 24px;
    }
    .strttmmbful .innerttlst p {
        font-size: 14px;
        line-height: 20px;
    }
}
@media only screen and (max-width:390px) {
    .col-stry {
        width: 90%;
    }
    .cms-index-defaultnoroute .subpage_banner .banner_wrap .text .table .valign .headline {
        font-size: 33px !important;
    }
}
span.max-chars-leadform {
    position: relative;
    top: 10px;
}
#li-7-33.cf_li_err .inputtextContent::before {
    top: 10px;
}
#li-7-37.cf_li_err .inputtextContent::before {
    top: 10px;
}
@media only screen and (min-width:1024px) {
    #label-2-131.cf-after {
        margin-right: 60px;
    }
    #label-6-131.cf-after {
        margin-right: 60px;
    }
    #label-6-171.cf-after {
        margin-right: 60px;
    }
    #label-7-131.cf-after {
        margin-right: 60px;
    }
}
@media(max-width:767px) {
.cform.find-a-rep-form .cf-fs2 .cf-box-group, .cform.open-a-online-store .cf-fs2 .cf-box-group, .cform.request-a-reconditioning-quote .cf-fs2 .cf-box-group{}
}

.cform.ask-question-comment-form li:nth-child(odd) .inputtextContent::after, .cform.contact-rep-form li:nth-child(odd) .inputtextContent::after, .cform.smart-helmets-form li:nth-child(odd) .inputtextContent::after {
    right: 25px !important;
}


