
/*@font-face {*/
/*    font-family: 'Product-Sans-italic';*/
/*    src: url('../fonts/ProductSans-Italic.woff2') format('woff2'),*/
/*        url('../fonts/ProductSans-Italic.woff') format('woff');*/
/*    font-weight: normal;*/
/*    font-style: italic;*/
/*    font-display: swap;*/
/*}*/

/*@font-face {*/
/*    font-family: 'Product-Sans-regular';*/
/*    src: url('../fonts/ProductSans-Regular.woff2') format('woff2'),*/
/*        url('../fonts/ProductSans-Regular.woff') format('woff');*/
/*    font-weight: normal;*/
/*    font-style: normal;*/
/*    font-display: swap;*/
/*}*/

/*@font-face {*/
/*    font-family: 'Product-Sans-italic-bold';*/
/*    src: url('../fonts/ProductSans-BoldItalic.woff2') format('woff2'),*/
/*        url('../fonts/ProductSans-BoldItalic.woff') format('woff');*/
/*    font-weight: bold;*/
/*    font-style: italic;*/
/*    font-display: swap;*/
/*}*/

/*@font-face {*/
/*    font-family: 'Product-Sans-bold';*/
/*    src: url('../fonts/ProductSans-Bold.woff2') format('woff2'),*/
/*        url('../fonts/ProductSans-Bold.woff') format('woff');*/
/*    font-weight: bold;*/
/*    font-style: normal;*/
/*    font-display: swap;*/
/*}*/


.empty_s {
    height: 0px !important;
    display: none;
}

.timeZoneLabel{
	
}
.form-3-circle-1-summary{
    position:absolute;left:10px;top:3px;
}
.form-3-circle-2-summary{
    position:absolute;left:10px;top:3px;
}
.form-3-circle-3-summary{
    position:absolute;left:10px;top:3px;
}

#notComplete,
#submitGood,
#dbError {
    display: none;
}

#results {
    margin: 0 auto;
    /*text-align:center;*/
    width: 600px;
    margin-top: 50px;
    color: #222;
}

/*form styles*/
#msform {
    margin: 0px auto;
}

/*#msform fieldset {
    border: 0 none;
    border-radius: 3px;
    padding: 20px 30px;
    box-sizing: border-box;
    width: 80%;
    margin: 0 10%;
    position: absolute;
}*/

/*Hide all except first fieldset*/
#msform fieldset:not(:first-of-type) {
    display: none;
}

/*inputs*/
#msform input, #msform textarea, #msform select {
    padding: 0px 55px;
    border: 1px solid #cfcfcf;
    border-radius: 50px;
    margin-bottom: 10px;
    width: 100%;
    box-sizing: border-box;
    font-family: 'Jost', sans-serif;
    color: #4e4e4e;
    font-size: 16px;
    outline: 0;
    direction:rtl;
}
#msform textarea{
    border-radius: 15px !important;
    padding: 15px;
}
 #msform input, #msform select {
    height: 51px;
}
.thank-you-text h2 {
    font-family: 'Jost', sans-serif;
    color:orange;
    padding: 10px 0;
}
.thank-you-text h3 {
    font-family: 'Jost', sans-serif;
    color: #0d9ca4 ;
    font-size: 31px;
}
.thank-you-text ul {
    list-style: none;
    padding: 0;
}
.thank-you-text ul i {
    font-size: 14px;
    padding: 2px;
    border: 2px solid #0d9ca4;
    color: #0d9ca4;
    border-radius: 30px;
    margin-right: 10px;
    position: relative;
    top: -2px;
}
.thank_you {
    padding: 30px 30px 0px;
}
.thank-you-text ul li {
    font-size: 18px;
    font-family: 'Jost', sans-serif;
    margin-bottom: 10px;
}
        /*buttons*/
#msform .action-button {
    width: 150px;
    background: white;
    font-weight: bold;
    color: #565657;
    border: 1px solid #cdcdcd;
    border-radius: 50px;
    cursor: pointer;
    padding: 10px 5px;
    margin: 10px 5px;
    text-transform: uppercase;
}

#msform .action-button:hover,
#msform .action-button:focus {
    /*box-shadow: 0 0 0 2px white, 0 0 0 3px lightgray;*/
    outline: none;
}

/*headings*/
.fs-title {
    font-size: 15px;
    text-transform: uppercase;
    color: #222;
    margin-bottom: 10px;
}

.fs-subtitle {
    font-weight: normal;
    font-size: 13px;
    color: #666;
    margin-bottom: 20px;
}

/*progressbar*/
#progressbar {
    flex-flow:row-reverse;
    overflow: hidden;
    counter-reset: step;
    display: flex;
    justify-content: space-between;
    margin: 0;
    background: #f8f8f8;
    padding: 15px 0px;
}

#progressbar li {
    list-style-type: none;
    color: #4e4e4e;
    font-size: 16px;
    width: 20%;
    float: left;
    position: relative;
    text-align: center;
    font-weight: bold;
}
#progressbar li.active {
    color: orange;
}
#progressbar li:before {
    content: counter(step);
    counter-increment: step;
    width: 50px;
    height: 50px;
    line-height: 40px;
    display: block;
    font-size: 16px;
    color: #fff;
    padding-top: 5px;
    background: #d8d8d8;
    border-radius: 50px;
    margin: 0 auto 5px auto;
    position: sticky;
    z-index: 100;
}

/*progressbar connectors*/
#progressbar li:after {
    /*content: '';
    width: 100%;
    height: 3px;
    background: #D8D8D8;
    position: absolute;
    left: -50%;
    top: 13px;
    z-index: 0;*/
    content: "";
    width: 188%;
    height: 3px;
    background: #d8d8d8;
    position: absolute;
    left: 53%;
    top: 27px;
    z-index: 0;
}

#progressbar li:first-child:after {
    /*connector not needed before the first step*/
    content: none;
}

/*marking active/completed steps green*/
/*The number of the step and the connector before it = green*/
#progressbar li.active:before,
#progressbar li.active:after {
    background: orange;
    color: white;
}

.e-list {
    list-style: none;
    margin: 0;
    margin-top: 20px;
    padding: 48px 20px;
    color: black;
    text-align: left;
    font-family: 'Jost', sans-serif;
    text-align:right;
}

.e-list img {
    margin-right: 10px;
    height: 30px;
}

.e-list li {
    margin-top: 10px;
    display: flex;
    font-size: 16px;
    padding-left: 50px;
    font-family: 'Jost', sans-serif;
    flex-flow:row-reverse;
}

.next {
    float: left;
}

.previous {
    float: right;
}

.submit {
    background: #f88c0c;
    box-shadow: 0px 0px 0px 5px rgb(210 210 210 / 49%);
    border-radius: 30px;
    padding: 12px 21px;
    text-transform: uppercase;
    float: right;
}

#molDiv{
    display: none;
}

#cexpDiv {
    display: none;
}

#monSelect{
    display: none;
}

#hearAboutDiv {
    display: none;
}

#multiLingualDiv {
    display: none;
}

.multiStepShowDiv {
    margin: 0px auto 0px auto;
    background: #ffffff;
    padding: 14px;
    border-radius: 10px;
    box-shadow: 0 0 15px 1px rgb(0 0 0 / 40%);
}

.card_one {
    box-shadow: 0 0 15px 1px rgb(154 154 154 / 40%);
    padding: 40px 25px;
    border-radius: 20px;
    margin: 25px 0;
    min-height: 96%;
    background-color: white;
    text-align:right;
}
.e-list.e-list-left li i {
    color: orange;
    padding-right: 5px;
    padding-top: 3px;
    position: relative;
    left: 4px;
}
.bootstrap-select .dropdown-toggle .filter-option {
    background: #fff;
}
.filter-option-inner-inner {
    color: orange;
    font-family: 'Jost', sans-serif;
}
.bootstrap-select > .dropdown-toggle {
    border: none;
}
.filter-option-inner-inner:after {
    content: "+";
    margin-left: 4px;
}
.card_two {
    box-shadow: 0 0 15px 1px rgb(154 154 154 / 40%);
    padding: 0px;
    border-radius: 20px;
    margin: 25px 0;
    background-color: white;
    min-height: 96%;
}

.multiformCardBoxHeader {
    color: #0d9ca4;
    font-size: 22px;
    font-weight: bold;
    font-family: 'Jost', sans-serif;
    margin: 0;
    line-height: 0.6;
}
.box_header{
    color: #565657;
}
.floatingSelectInput:focus ~ label, .floatingSelectInput:not([value=""]):valid ~ label {
    top: -10px;
    /*left: 25px;*/
    font-size: 14px;
    color: black;
    /*background-color: white;*/
    font-weight: 700;
}
.selectLabel{
    font-weight:bold;
}
.mfBoxOneLabels {
    color: black;
    font-weight: bold;
    font-size: 16px;
}

.mfBoxTwoLabels {
    color: black;
    font-weight: bold;
    font-size: 16px;
    font-family: 'Jost', sans-serif;
    padding-left: 5px;
}
.terms_con{
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    color: #0d9ca4;
}
.step___2 li, .third_step li {
    padding-left: 10px !important;
}
.multiformCardBoxHeader.right_col {
    font-size: 18px;
}
.bootstrap-select:not([class*="col-"]):not([class*="form-control"]):not(.input-group-btn) {
    width: 175px !important;
}
.third_right_title{
    color: #0d9ca4;
     display: block;
     font-size: 18px;
     font-family: 'Jost', sans-serif;
     padding-right:10px;
}
.third_right_title +p {
    padding-right: 10px;
}

.mfBoxThreeLabels {
    color: black;
    font-weight: bold;
    font-size: 12px;
}

.mfDaySelection {
    color: black;
    font-size: 16px;
    font-family: 'Jost', sans-serif;
    margin-bottom: 10px;
}

#modeTxt {
    color: black;
    position: absolute;
    top: 123px;
    left: 40px;
    background: white;
    margin: 0;
    display: none;
}

#cexpTxt {
    color: black;
    position: absolute;
    top: 206px;
    left: 40px;
    background: white;
    margin: 0;
    display: none;
}

@media only screen and (max-width: 540px) {
    #msform fieldset {
        padding: 0px;
        width: 100%;
        margin: 0 0%;
    }
}

body {
    font-family: 'Jost', sans-serif;
}
.main__div {
    background: url(../images/multiformBG.png);
    background-position: center;
    padding: 50px 0;
    background-size: cover;
}
.guarantee_img{
    height: 100px;
    position: absolute;
    right: 27px;
    top: 265px;
}
.form-wrapper-outer{
    padding: 40px;
    border-radius: 8px;
    margin: auto;
    width: 460px;
    border: 1px solid #DADCE0;
    margin-top: 7%;
}

.form-wrapper-outer .form-logo{
    margin: 0px auto 15px;
    width: 100px;
}

.form-wrapper-outer .form-logo img{
    width: 100%;
}

.form-greeting{
    text-align: center;
    font-size: 25px;
    margin-bottom: 15px;
}

.form-button{
    text-align: right;
}

.field-wrapper{
    position: relative;
    margin-bottom: 15px;
}

.field-wrapper input{
    border: 1px solid #DADCE0;
    padding: 15px;
    border-radius: 4px;
    width: 100%;
}

.field-wrapper .field-placeholder{
    font-size: 12px;
    position: absolute;
    /* background: #fff; */
    bottom: 17px;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    color: black;
    right: 8px;
    top:10px;
    /* padding: 0 8px; */
    -webkit-transition: transform 150ms cubic-bezier(0.4,0,0.2,1),opacity 150ms cubic-bezier(0.4,0,0.2,1);
    transition: transform 150ms cubic-bezier(0.4,0,0.2,1),opacity 150ms cubic-bezier(0.4,0,0.2,1);
    z-index: 1;
    font-weight:bold;
    text-align: right;
    /*width: 100%;*/
    padding-right:5px;
}        

.field-wrapper .field-placeholder span {
    background: #ffffff;
    padding: 1px 8px;
    color: black;
    font-family: 'Jost', sans-serif;
    font-size: 16px;
    position: relative;
    top: 4px;
}
.call_back {
    display: flex;
}
.call_back .field-placeholder {
    left: 0;
    right:90px;
}
.call_back select {
    background: none;
    width: 80px !important;
    font-size: 14px !important;
}
.call_back select:focus{
    background: none;
}
.field-wrapper input:not([disabled]):focus~.field-placeholder{
    color:grey;
}
.call_back #holderPhone {
    border-top-left-radius: 50px;
    border-bottom-left-radius: 50px;
    border-bottom-right-radius: 0;
    border-top-right-radius: 0;
}
.field-wrapper input:not([disabled]):focus~.field-placeholder,
.field-wrapper.hasValue input:not([disabled])~.field-placeholder, 
.field-wrapper textarea:not([disabled]):focus~.field-placeholder,
.field-wrapper.hasValue textarea:not([disabled])~.field-placeholder 
{
    -webkit-transform: scale(.9) translateY(-39px) translateX(-60px);
    transform: scale(.9) translateY(-28px) translateX(-20px);
    
}
.field-wrapper input:not([disabled]):focus~.field-placeholder span,
.field-wrapper.hasValue input:not([disabled])~.field-placeholder span, 
.field-wrapper textarea:not([disabled]):focus~.field-placeholder span,
.field-wrapper.hasValue textarea:not([disabled])~.field-placeholder span{
color: orange;
}
.floatingLabelSelect { 
    position:relative; 
    margin-bottom:20px; 
}
.field-wrapper label {
    font-size: 16px;
    font-family: 'Jost', sans-serif;
    padding-left: 15px;
}
.floatingSelectInput {
    /*margin-top: 20px;*/
    font-size:14px;
    padding:4px 4px;
    display:block;
    width:100%;
    height:40px;
    background-color: transparent;
    border:none;
    border-bottom:1px solid #757575;
}

.floatingSelectInput:focus {
    outline:none;
    border-bottom:2px solid #5264AE; 
}

.selectLabel {
    color: #000;
    font-size: 16px;
    font-weight: 600;
    position: absolute;
    pointer-events: none;
    background: #fff;
    right: 50px;
    top: 14px;
    font-family: 'Jost', sans-serif;
    transition: 0.4s ease all;
    -moz-transition: 0.4s ease all;
    -webkit-transition: 0.4s ease all;
}

.floatingSelectInput:focus ~ label, .floatingSelectInput:not([value=""]):valid ~ label {
    top: -10px;
    /*left: 60px;*/
    font-size: 14px;
    color: orange;
    /*background-color: white;*/
}
#msform input:focus ,#msform input:active , #msform select:focus, #msform select:active{
border-color: orange;
}
/* active state */
.floatingSelectInput:focus ~ .floatingSelectInput:focus ~  {
    width:50%;
}

*, *:before, :after {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

.floatingSelectInput:focus ~  {
    -webkit-animation:inputHighlighter 0.3s ease;
    -moz-animation:inputHighlighter 0.3s ease;
    animation:inputHighlighter 0.3s ease;
}

.selectInputWidth{
    width: 330px;
}

.box__header{
    color: black;
    text-align: justify;
    font-size: 12px;
    line-height: 20px;
}
select {
    background-image: linear-gradient(45deg, transparent 50%, gray 50%), linear-gradient(135deg, gray 50%, transparent 50%), linear-gradient(to right, #ccc, #ccc);
    background-position: calc(100% - 20px) calc(1.2em + 2px), calc(100% - 15px) calc(1.2em + 2px), calc(100% - 2.5em) 0.7em;
    background-size: 5px 5px, 5px 5px, 1px 1.5em;
    background-repeat: no-repeat;
    -webkit-appearance: none;
}
select:focus {
    background-image:linear-gradient(45deg, orange 50%, transparent 50%), linear-gradient(135deg, transparent 50%, orange 50%), linear-gradient(to right, #ccc, #ccc);
    background-position: calc(100% - 15px) 1.2em, calc(100% - 20px) 1.2em, calc(100% - 2.5em) 0.7em;
    background-size:5px 5px, 5px 5px, 1px 1.5em;
    background-repeat: no-repeat;
    border-color: orange;
    outline: 0;
}
input.checkbox {
    height: 15px !important;
}
@media only screen and (max-width:1199px){
    .guarantee_img {
        top: 225px;
    }
}
@media (max-width:991px){
    .guarantee_img {
        top: 50%;
    }
}
@media (max-width: 767px){
    .guarantee_img {
        top: 38%;
    }
    .thank_you img {
        max-width: 250px;
    }
    .thank-you-text h2 {
        font-size: 22px;
    }
    .thank-you-text h3 {
        font-size: 20px;
    }
    .thank-you-text ul li {
        font-size: 14px;
    }
    .thank-you-text ul i {
        font-size: 9px;
    }
    .step___2 li, .third_step li {
        padding-left: 10px !important;
    }
    .query_text .field-placeholder {
        line-height: 1.2;
        width: 80%;
        text-align: right;
        top: 4px;
    }
    .query_text .field-placeholder span {
        padding-left: 0;
        left: 6px;
        font-size: 15px;
    }
}
/*ovr*/
@media (max-width:575px){
    .bootstrap-select:not([class*="col-"]):not([class*="form-control"]):not(.input-group-btn) {
        width: 100% !important;
    }
    #progressbar li {
        font-size: 12px;
        line-height: 15px;
    }
    .selectLabel {
        font-size: 13px;
        padding: 4px 0;
        top: 10px;
    }
    .query_text .field-placeholder span {
        font-size: 14px !important;
    }
    #msform input, #msform textarea, #msform select {
        font-size: 14px;
    }
    .box_header {
        font-size: 14px;
    }
    .e-list li {
        font-size: 12px;
        padding-left: 35px;
    }
    .multiformCardBoxHeader {
        font-size: 20px;
    }
    .guarantee_img {
        top: 235px;
    }
    .card_one{
        padding:30px 15px;
    }
    #msform .action-button {
        width: 125px;
        }
        .thank_you img {
        max-width: 200px;
    }
    .field-wrapper .field-placeholder span {
        font-size: 13px;
        top: 5px;
    }
    .floatingSelectInput:focus ~ label, .floatingSelectInput:not([value=""]):valid ~ label {
        font-size: 12px;
        margin-bottom: 0;
        top: -14px;
    }
    select {
        background-position: calc(100% - 20px) calc(1.2em + 2px), calc(100% - 15px) calc(1.2em + 2px), calc(100% - 2.5em) 0.9em;
    }
    select:focus {
        background-position: calc(100% - 15px) 1.4em, calc(100% - 20px) 1.4em, calc(100% - 2.5em) 0.9em;
    }
    .mfBoxTwoLabels {
        font-size: 14px;
    }
    .dropdown.bootstrap-select .dropdown-menu.show{
        max-height: 230px !important;
        min-width: 215px !important;
    }
    .form-3-circle-1-summary{
        top:6px;
    }
    .form-3-circle-2-summary{
        top:6px;
    }
    .form-3-circle-3-summary{
        top:6px;
    }
}
@media (max-width: 480px){
    .query_text .field-placeholder {
        line-height: 1.2;
        width: 230px;
        text-align: right;
        padding-right:10px;
        top: 4px;
    }
    .query_text .field-placeholder span {
        padding-left: 0;
        left: 6px;
        font-size: 14px !important;
    }
    .mfDaySelection {
        font-size: 14px;
    }
}
@media (max-width: 415px){
    .selectLabel.query_480 {
        width: 75%;
        line-height: 1.2;
        top: 5px;
    }
    #msform input, #msform textarea, #msform select {
        font-size: 12px;
    }
    .top_mm {
        margin-top: 25px !important;
    }
    .floatingSelectInput:focus ~ label.query_480, .floatingSelectInput:not([value=""]):valid ~ label.query_480 {
        top: -20px;
        width: 180px;
    }
    select {
        background-position: calc(100% - 20px) calc(1.2em + 7px), calc(100% - 15px) calc(1.2em + 7px), calc(100% - 2.5em) 1.2em;
    }
    select:focus {
        background-position: calc(100% - 15px) 1.7em, calc(100% - 20px) 1.7em, calc(100% - 2.5em) 1.2em;
    }
}
@media (max-width: 399px){
    .selectLabel {
        font-size: 13px;
    }
    .guarantee_img {
        top: 200px;
    }
}