@import url('https://fonts.googleapis.com/css?family=Lato:300,400,700,900&display=swap');

/*-----Global Styles-----*/

body {
	font-family: 'Lato', sans-serif!important;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}
.form-control {
	color: #000;
}


/*---Validation Styling---*/

.has-error .form-control {
	background-color:#FFC8C8;
}
.has-error .control-label {
	color: black;
}
.errorMsg, .errorMsg {
	font-size: 12px;
	display: block;
	color: #e60000;
	margin-top: 3px;
	margin-left: 1px;
	font-weight:400;
	text-align: center;
}


/*-----Site Header -----*/

#header {
	padding: 14px;
    background: #4F98DC;
}
#header .site-logo {
	width: 170px;
	float: left;
	margin-left: 10px;
	margin-top:4px;
}
#header .call-icon {
	float: right;
	width: 24px;
	margin-right: 10px;
	margin-top: 8px;
}
#header .call-now {
	float: right;
	margin-right: 10px;
	margin-top: 15px;
	font-weight: 400;
	font-size: 20px;
	color: #fff;
}
#header .call-now a {
	font-weight: 700;
	color: #fff;
}


/*----- Progress bar  -----*/

.prog-bar {
	display: -webkit-box;
	display: -moz-box;
	display: -ms-flexbox;
	display: flex;
}
.prog-outer {
	width: 100%;
	background: #F6F6F6;
	height: 22px;
	margin-top: 20px;
    margin-bottom: 20px;
	display: -webkit-box;
	display: -moz-box;
	display: -ms-flexbox;
	display: flex;
	position: relative;
}
.prog-inner {
	background: #79BD6C;
    height: 22px;
	padding-right: 20px;
	display: -webkit-box;
	display: -moz-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
    justify-content: flex-end;
    -moz-justify-content: flex-end;
	-webkit-justify-content: flex-end;
	z-index: 3;
	transition : width 0.4s ease;
}
.step-1 .prog-inner {
	width: 20%;
}
.step-2 .prog-inner {
	width: 30%;
}
.step-3 .prog-inner {
	width: 40%;
}
.step-4 .prog-inner {
	width: 50%;
}
.step-5 .prog-inner {
	width: 60%;
}
.step-6 .prog-inner {
	width: 70%;
}
.step-7 .prog-inner {
	width: 80%;
}
.step-8 .prog-inner {
	width: 90%;
}
.prog-note {
	color: #fff;
	font-weight: 900;
	margin-top: 1px;
	z-index: 100;
	z-index: 6;
}
.prog-note.mobile {
    color: #000;
    font-weight: 700;
	text-align: center;
	margin-top: 16px;
}
.step-1 .prog-note::after {
	content: "Enter ZIP to Start"
}
.step-2 .prog-note::after {
	content: "25% Complete"
}
.step-3 .prog-note::after {
	content: "35% Complete"
}
.step-4 .prog-note::after {
	content: "45% Complete"
}
.step-5 .prog-note::after {
	content: "55% Complete"
}
.step-6 .prog-note::after {
	content: "65% Complete"
}
.step-7 .prog-note::after {
	content: "85% Complete"
}
.step-8 .prog-note::after {
	content: "95% Complete"
}
.prog-icon {
	width: 34px;
    height: 34px;
    margin-top: -6px;
	margin-left: -8px;
    background: #5EA44F;
    border: 2px solid #fff;
	border-radius: 50px;
	box-shadow: 0px 0px 6px 0px grey;
	z-index: 5;
}
.prog-icon .glyphicon {
	color: #fff;
	top: 6px;
	left: 8px;
	z-index: 100;
}
		

/*----- Main Content -----*/

#main-site-wrapper {
	position:relative;
	overflow:hidden;
	min-height: 80vh;
}
#main-site-wrapper h1 {
    text-align: center;
    font-weight: 900;
	margin-top: 30px;
	font-size: 22px;
}
#main-site-wrapper h2 {
    text-align: center;
    font-weight: 700;
    color: #4F98DC;
    font-size: 14px;
	margin-top: 10px;
	line-height: 22px;
}
#main-site-wrapper h2 span {
	text-decoration: underline;
	font-weight: 900;
}
.step-1 h2 .seconds::after {
	content: "60"
}
.step-2 h2 .seconds::after {
	content: "50"
}
.step-3 h2 .seconds::after {
	content: "40"
}
.step-4 h2 .seconds::after {
	content: "30"
}
.step-5 h2 .seconds::after {
	content: "25"
}
.step-6 h2 .seconds::after {
	content: "20"
}
.step-7 h2 .seconds::after {
	content: "10"
}
.step-8 h2 .seconds::after {
	content: "5"
}
#main-site-wrapper form {
	margin: 0 auto;
	max-width: 400px;
}
#main-site-wrapper form .question-wrapper {
	padding: 14px 14px 4px 14px;
	color: #555555;
	text-align: center;
}
#main-site-wrapper form .form-group {
	margin-bottom:8px;
	text-align: left;
}
#main-site-wrapper form .form-group .radio {
	display: -webkit-box;
	display: -moz-box;
	display: -ms-flexbox;
	display: flex;
    justify-content: center;
    -moz-justify-content: center;
	-webkit-justify-content: center;
	flex-wrap: wrap;
	-moz-flex-wrap: wrap;
	-webkit-flex-wrap: wrap;
	padding-left: 0;
}
#main-site-wrapper.step-4 form .form-group .radio {
	max-width: 600px;
	margin: 0 auto;
	justify-content: left;
    -moz-justify-content: left;
	-webkit-justify-content: left;
}
#main-site-wrapper.step-6 form .form-group .radio {
	flex-direction: column;
	-moz-flex-direction: column;
	-webkit-flex-direction: column;
	align-items: center;
	-moz-align-items: center;
	-webkit-align-items: center;
}
#main-site-wrapper form .form-group .radio .btn {
	width: 110px;
	height: 40px;
	line-height: 26px;
	box-shadow: none;
	font-weight: 900;
	color: #000;
}
#main-site-wrapper form .form-group .radio .btn.active {
	background: #fff;
	color: #4F98DC;
	border: 2px solid #4F98DC;
}
.checkmark {
    display: none!important;
}
.active .checkmark {
	display: inline!important;
    right: 15%;
    color: #4F98DC;
}
#main-site-wrapper.step-4 .active .checkmark, .step-5 .active .checkmark {
    right: 12%;
}
#main-site-wrapper.step-6 .active .checkmark {
	right: 8%;
}
#main-site-wrapper.step-3 form .form-group .radio .btn {
	width: 80px;
}
#main-site-wrapper.step-4 form .form-group .radio .btn {
	width: 56px;
}
#main-site-wrapper.step-6 form .form-group .radio .btn {
	width: 220px;
}
#main-site-wrapper.step-7 form .form-group, .step-8 form .form-group {
	margin: 0 8px 8px;
}
#main-site-wrapper form .double-input {
	display: -webkit-box;
	display: -moz-box;
	display: -ms-flexbox;
	display: flex;
	justify-content: center;
    -moz-justify-content: center;
	-webkit-justify-content: center;
	flex-direction: column;
	-moz-flex-direction: column;
	-webkit-flex-direction: column;
}
#main-site-wrapper form .control-label {
	display:block;
	color:#000000;
	font-size:18px;
    font-weight:700;
    text-align: center;
	margin-bottom: 8px;
}
#main-site-wrapper form .form-group .form-control {
	font-size:16px;
    width: 200px;
    height: 45px;
	margin: 0 auto;
	text-align: center;
}
#main-site-wrapper form .form-group .form-control::placeholder {
    text-align: center;
    font-size: 14px;
    font-weight: 900;
    color: #C0C0C0;
}
.tcpa-disclosure {
	font-size: 12px;
	color: gray;
	line-height: 14px;
}

/*----- Copy Text-----*/ 

.copy-text {
	margin-bottom: 10px;
}

/*----- Partners -----*/ 

.partners-wrapper {
    padding: 10px 0;
    width: 100%;
}
.partners-wrapper h3 {
    font-weight: bold;
    font-size: 14px;
    line-height: 20px;
    margin-top: 12px;
	margin-bottom: 0;
    text-align: center;
    color: #636363;
}
.partners-wrapper h3 span{
    display: inline-block;
}
.partners-wrapper .partners-images {
	display: -webkit-box;
	display: -moz-box;
	display: -ms-flexbox;
	display: flex;
    justify-content: center;
    -moz-justify-content: center;
    -webkit-justify-content: center;
    margin-top: 10px;
    margin-bottom: 30px;
}
.partners-wrapper .image {
	margin: 0 10px;
}
.partners-wrapper .image img {
	width: 60px;
}
.partners-wrapper .image.blue-cross img {
	margin-top: 5px;
}


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

#main-site-wrapper .site-submit-btn {
	background-color:#F1900A;
	cursor:pointer;
	color:#ffffff;
	font-size:16px;
	font-weight:900;
	border:none;
	display: block;
	width: 120px;
	height: 45px;
    margin: 20px auto;
    margin-bottom: 0;
	white-space: nowrap;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
}

#main-site-wrapper.step-8 .site-submit-btn {
	background-color:#79BD6C;
	width: 250px;
	margin: 10px auto;
}

/*----- footer -----*/

#footer {
	background-color: #E5E5E5;
	margin-bottom: -20px;
    padding-top:2.5em;
    padding-bottom:3.125em;
    color:#333333;
    font-size:.75em;
	font-family: 'Lato'
}

#footer img.site-logo {
    width:200px;
    height:auto;
    margin-bottom:0.3125em;
}

#footer p {
    margin-bottom:1.25em;
}

#footer .socialmedia-wrapper {
    padding:0px 0px 10px;
}

#footer .socialmedia-wrapper i {
    margin-right:5px;
}
#footer .socialmedia-wrapper i:hover {
    color:#DCDCDC;
}

#footer ul {
    list-style-type:none;
    padding-left:0px;
}

#footer ul li {
    font-family: 'Open Sans';
    font-weight: bold;
}

#footer ul li a {
    cursor:pointer;
	color:#333333;
	font-family: 'Lato'
}


/*----- Confirmpage - popover -----*/

.cq-header .prov-num {
	font-size: 16px;
	text-align: center;
	margin-top: 4px;
}
.cq-header .prov-num p,
.cq-header .prov-num a {
	color: #333333;
}
.cq-header .prov-num a {
	font-weight: bold;
}
.confirm-page .main-headline {
	text-align: center;
}
.confirm-page .step-copy {
	text-align: center;
}
#confirm-popover .modal-content {
	border-radius:0!important;
	border:none!important;
}
#confirm-popover .modal-header p {
	font-size: 24px;
	color: #1984d7;
	font-weight: 400;
	text-align: center;
	margin-bottom: 0!important;
}
#confirm-popover .modal-body .calling-icon {
	width:40px;
	height:auto;
	margin:0 auto 15px;
	display:block;
}
#confirm-popover .modal-body {
	text-align: center;
}
#confirm-popover .modal-body p {
	font-size: 20px;
	color: #000000;
	font-weight: 400;
	text-align: center;
}
#confirm-popover .modal-body p .attention {
	font-size: 20px;
	color: #fd9700;
	font-weight: 700;
	display:inline-block;
}
#confirm-popover .modal-body p.no-accept {
	font-size: 20px;
	color: #da1e1e;
	font-weight: 400;
	text-align: center;
}
#confirm-popover .modal-body p.number {
	font-size: 24px;
	color: #fd9700;
	font-weight: 700;
	display:block;
	text-align: center;
}
#confirm-popover .modal-body p.sm-text {
	font-size: 16px;
	color: #000000;
	font-weight: 400;
	display:block;
	text-align: center;
}
#confirm-popover .modal-footer {
	text-align: center;
	font-size:16px;
	padding:18px 20px 12px;
	margin-top:0;
}
#confirm-popover .modal-footer .orange-btn-offer {
	-webkit-border-radius: 28px;
	-moz-border-radius: 28px;
	border-radius: 28px;
	font-weight:400;
	color: #ffffff;
	background: #fd9700;
	padding: 8px 20px;
	text-decoration: none;
	border:none;
	cursor:pointer;
	width:180px;
	display:block;
	font-size:16px;
	margin:0 auto 5px;
}
#confirm-popover .modal-footer .orange-btn-offer:hover {
	background: #fd8300;
	color: #ffffff;
	text-decoration: none;
}


/* Small Devices, Tablets */
@media only screen and (min-width : 768px) {
	#header {
		padding: 10px;
		height: 80px;
	}
	#header .site-logo {
		float: left;
		width: 180px;
		margin-top: 12px;
	}
	#main-site-wrapper h1 {
		font-size: 36px;
	}
	#main-site-wrapper h2 {
		font-size: 20px;
	}
	#main-site-wrapper form .control-label {
		margin-bottom: 16px;
	}
	form .double-input {
		flex-direction: row;
		-moz-flex-direction: row;
		-webkit-flex-direction: row;
	}
	.prog-outer {
		margin-top: 70px;
		margin-bottom: 40px;
	}
	.partners-wrapper {
    	margin-top: -35px;
	}
	.partners-wrapper .image {
		margin: 0 30px;
	}
	.partners-wrapper .image img {
		width: 120px;
	}
	#main-site-wrapper .site-submit-btn {
		margin: 40px auto;
	}
}





/* ANIMATIONS */

.animated {
	-webkit-animation-duration: .4s;
	animation-duration: .4s;
	-webkit-animation-fill-mode:both;
	animation-fill-mode:both;
}

@-webkit-keyframes slideInRight {
	0% {
		-webkit-transform: translate3d(100%, 0, 0);
		transform: translate3d(100%, 0, 0);
		visibility: visible;
	}
	100% {
		-webkit-transform: translate3d(0, 0, 0);
		transform: translate3d(0, 0, 0);
	}
}

@keyframes slideInRight {
	0% {
		-webkit-transform: translate3d(100%, 0, 0);
		transform: translate3d(100%, 0, 0);
		visibility: visible;
	}
	100% {
		-webkit-transform: translate3d(0, 0, 0);
		transform: translate3d(0, 0, 0);
	}
}

.slideInRight {
	-webkit-animation-name: slideInRight;
	animation-name: slideInRight;
}

@-webkit-keyframes slideOutLeft {
	0% {
		-webkit-transform: translate3d(0, 0, 0);
		transform: translate3d(0, 0, 0);
	}
	100% {
		visibility: hidden;
		opacity: 0;
		-webkit-transform: translate3d(-100%, 0, 0);
		transform: translate3d(-100%, 0, 0);
	}
}

@keyframes slideOutLeft {
	0% {
		-webkit-transform: translate3d(0, 0, 0);
		transform: translate3d(0, 0, 0);
	}
	100% {
		visibility: hidden;
		opacity: 0;
		-webkit-transform: translate3d(-100%, 0, 0);
		transform: translate3d(-100%, 0, 0);
	}
}

.slideOutLeft {
	-webkit-animation-name: slideOutLeft;
	animation-name: slideOutLeft;
}
