@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;600;700&display=swap');

body{
	font-family: 'Montserrat', sans-serif;
}

header{
	box-shadow: 0 1px 6px 0 rgb(9 47 86 / 20%);
/*	-moz-box-shadow: 0 1px 1px 0 rgba(9,47,86,0.25);
    -webkit-box-shadow: 0 1px 1px 0 rgba(9,47,86,0.25);*/
	color: #111;
}

header p{
    margin: 0;
    font-size: 18px;
}

.header-phone p{
	color: #111;
    /*font-size: 25px;*/
    font-size: 22px;
    line-height: 1.1em;
    font-weight: 500;
}

.header-phone:hover p{
	color: #316FFF;
}

.header-phone span{
	font-size: 13px;
    line-height: 15px;
    color: #68707d;
}

.mdlogo{
	display: block;
}
.smlogo{
	display: none;
	max-width: 30px !important;
}

/* FORM WRAPPER */

.form-wrapper{
	/*margin-top: 4.6rem;*/
	margin-top: 2.6rem;
    margin-bottom: 1.6rem;
    min-height: 56vh;

}

.f16{
	font-size: 16px !important;
}

/* PROGRESS BAR */

.progress-wrapper{
	max-width: 380px;
}

.progress{
	width: 100%;
	height: 6px;
    margin-top: 5px;
    background: #f5f8fa;
    border: 1px solid #c4cad6;
	margin-bottom: 40px;
}

.progress-bar{
	flex-direction: column;
    justify-content: center;
    color: #fff;
    text-align: center;
    white-space: nowrap;
    background-color: #007bff;
    transition: width .6s ease;
	max-width: 100% !important;
}


/* FORM STEPS */

.step {
	display: none;
}

.step.show{
	display: block;
}

.step h2{
	font-size: 28px;
	margin-top: 10px;
	margin-bottom: 20px;
	color: #111;
    font-weight: 700;
}
.step h2 span.opt{
	font-size: 16px;
}

.input-wrap{
	width: 100%;
	max-width: 380px;
	margin-left: auto;
	margin-right: auto;
}

.input-form{
	background: #fff;
    border: 1px solid #c4cad6;
    box-sizing: border-box;
    border-radius: 4px;
    height: 68px;
    font-family: Montserrat;
    font-style: normal;
    font-weight: 400;
    font-size: 18px;
    line-height: 22px;
    display: block;
    margin: 1rem 0 0;
    padding: 22px 30px 15px;
	width: 100%;
}

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

input[type=number] {
  -moz-appearance: textfield;
}

.input-form--small{
	width: 30%
}

.input-form--large{
	width: 40%
}

/* radio button */

.radio-button{
	box-sizing: border-box;
    box-shadow: inset 0 -4px 4px rgb(21 46 83 / 70%);
    padding-top: 15px;
    font-size: 20px;
    background: #007bff;
    border: 1px solid #c4cad6;
    border-radius: 4px;
    width: 100%;
    height: 68px;
    color: #fff;
    text-transform: uppercase;
    font-weight: 700;
    text-align: center;
	position: relative;
}

.radio-button:hover{
	cursor: pointer;
}

.radio-button input{
	width: 100%;
    height: 100%;
    top: 0;
    left: 0;
	position: absolute;
    opacity: 0;
    z-index: 999;
	cursor: pointer;
}

.radio-button:hover{
	cursor: pointer;
	background: #076cd8;
}


/* FORM BUTTONS */

.form-buttons{
	margin-top: 30px;
}

#btn-next{
	background: #007bff;
    color: #fff;
    box-shadow: 0 2px 4px rgb(0 0 0 / 24%);
    border-radius: 6px;
	font-family: Montserrat;
    font-style: normal;
    font-weight: 700;
    font-size: 20px;
	display: block;
	width: 100%;
	max-width: 380px;
	margin: auto;
	margin-right: auto;
	padding: 15px 10px;
	text-transform: uppercase;
	margin-bottom: 20px;
}

.next-arrow {
    display: inline-block;
    margin-left: 13px;
    margin-bottom: 3px;
}

#btn-back, #btn-skip{
	font-family: Montserrat;
    font-style: normal;
    font-weight: 500;
    font-size: 20px;
    display: block;
    margin: 0 auto;
    align-items: center;
    letter-spacing: .02em;
    text-transform: uppercase;
	padding: 15px 10px;
    color: #a9b3cb;
	width: 100%;
	max-width: 380px;
	margin: auto;
	margin-right: auto;
}

.back-arrow {
    display: inline-block;
    margin-right: 13px;
    margin-bottom: 3px;
}

.btn-wrapper{
	display: flex;
    position: relative;
    max-width: 380px;
    margin: auto;
    flex-wrap: nowrap;
}

/* VALIDATION */

.input-wrap > div {
	position: relative;
}

.validate-text{
	font-style: normal;
    font-weight: 400;
    font-size: 12px;
    line-height: 145.31%;
    color: #eb1010;
    display: inline-block;
    position: absolute;
    top: 20px;
    left: 7px;
	display: none;
}

.input-wrap > div.error .validate-text{
	display: block;
}

div.error input{
	border: 1px solid #eb1010;
}

.icon-val{
	position: absolute;
    bottom: 24px;
    left: 10px;
}

.icon-error{
	color:rgb(235, 16, 16);
	display: none !important;
}

div.error .icon-error{
	display: block !important;
}

.icon-good{
	color:rgb(0, 193, 179);;
	display: none !important;
}

div.good .icon-good{
	display: block !important;
}

.icon-edit {
    display: inline-block;
    margin-left: 10px;
}

#show-adress {
	display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    text-align: left;
	margin-top: 15px;
}

#show-adress svg:hover{
	cursor: pointer;
}

#show-adress svg:hover path{
	fill:#007bff;
}

#street-address {
    font-family: Montserrat;
    font-style: normal;
    font-weight: 400;
    font-size: 14px;
    display: flex;
    align-items: center;
    letter-spacing: .02em;
    color: #9fa9b5;
}

#zip-code{
	padding-left: 30px;
    padding-right: 10px;
}

.dob-prefix{
	position: relative;
}

.dob-prefix input{
	padding-left: 48px;
}

.dob-prefix label{
	position: absolute;
    top: 40px;
    left: 30px;
    font-weight: 600;
    font-size: 18px;
}

/* DISCLAIMER */

.disclaimer{
	font-size: 14px;
	text-align: left;
	max-width: 850px;
	margin-left: auto;
	margin-right: auto;
	margin-top: 50px;
}

.disclaimer.show{
	display: block !important;
}

/* FOOTER */

footer {
	color: #333;
}

footer a{
	text-decoration: underline;
	color: #316FFF;
}

@media only screen 
  and (min-device-width: 768px) 
  and (max-device-width: 1024px) 
  and (orientation: portrait) 
  and (-webkit-min-device-pixel-ratio: 2) {

	.header-phone p{
		font-size: 17px;
	}

}


@media (max-width: 767px){
	
	.f16{
		font-size: 12px !important;
	}

	.mdlogo{
		display: none;
	}
	.smlogo{
		display: block;
	}
	.header-phone p{
		font-size: 17px;
	}
	
	.header-phone-icon{
		max-width: 23px;
	}
	
	.header-phone span {
    	font-size: 9px;
		line-height: 1.3em;
	}
	
	.step h2{
		font-size: 22px;
	}
	.step h2 span.opt{
		font-size: 14px;
	}
	
	.input-form{
		height: 53px;
		font-size: 16px;
		padding: 10px 25px 10px 10px !important;
		margin-top: 1.5rem;
	}
	
	.icon-val {
		left: unset;
		right: 10px;
		top: 42px;
	}
	
	.good.pr-3 .icon-val,
	.error.pr-3 .icon-val{
		right: 20px;
	}
	
	.validate-text{
		top: unset;
    	left: 0;
	}
	
	.dob-prefix label {
		position: absolute;
		top: 39px;
		left: 22px;
		font-size: 16px;
	}
	
	.dob-prefix input {
		padding-left: 38px !important;
	}
	
}


.logoimg{
	max-width: 180px;
}




@media only screen 
  and (max-device-width: 320px)   
  and (-webkit-min-device-pixel-ratio: 2)
  and (orientation: portrait) {
	  /*.header-phone-icon{
		  max-width: 28px;
	  }*/

	  .headrow{
		display: flex;
		display: -webkit-flex;
		/*justify-content: center;
		-webkit-justify-content: center;*/
		justify-content: flex-end;
		-webkit-justify-content: flex-end;
		flex: 1;
		-webkit-flex: 1 1 0%;
	}

	.ma-xx-small{
		min-width: 0 !important;
		padding: 0 !important;
	}
}


label.leadid_tcpa_disclosure{
	color: #000;
}
label.leadid_tcpa_disclosure a{ 
	text-decoration: underline;
}

/**Loader css**/
#loader, .loading{display:none;}
#loader {
	position: absolute;
    z-index: 1;
    text-align: center;
    margin: 0 auto;
    width: 20%;
    height: 80vh;
    left: 0;
    right: 0;
}

.thankyou {
    color: #000;
    z-index: 1000;
    position: absolute;
    text-align: center;
    margin: 0 auto;
    left: 0;
    right: 0;
    font-weight: 600;
	bottom: 20%;
}
h1.thankyou.ml13{
	bottom:10%;
}
.loading:before {
  content: '';
  display: block;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #fff;
  background: #fff;
  z-index:1;
}

@media only screen and (max-width: 767px) {
	#loader {	
		width: 55%;
	}
  .thankyou {
   padding: 0px 5px;
   font-size: 25px;
  }
}

/***endof loader css***/