body{
	color: #333;
	font-size: 16px;
	line-height: 1.6;
	font-weight: 400;
	font-family: "Open Sans", sans-serif;
	background-image: url(../img/main-bg.jpg);
	background-repeat: no-repeat;
	-webkit-background-size: cover;
	background-size: cover;
	background-position: center;
	margin: 0;
	padding: 0;
	overflow-x: hidden;
}


*{
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}

.wrapper{
	background-color: #fff;
	width: 96%;
	padding: 20px 30px 75px 30px;
	margin: 50px auto;
    min-height: calc(100vh - 100px);
    position: relative;
}

.top-header{
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: flex;
	justify-content: space-between;
	-ms-align-items: center;
	align-items: center;
	padding-bottom: 15px;
}

.top-header .header-logo{
	max-width: 173px;
	min-width: 173px;
	width: 100%;
	height: 37px;
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: flex;
	-webkit-transition: all 0.3s ease-in-out;
	-o-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
}

.top-header .header-logo:hover{
	opacity: 0.6;
}

img{
	max-width: 100%;
	height: auto;
}

.top-header h1 span{
	color: #015889;
	display: block;
	font-size: 23px;
}

.top-header h1{
	text-transform: uppercase;
	font-weight: 300;
	color: #007CC0;
	font-size: 24px;
	line-height: 1;
	text-align: right;
	margin: 0;
}

.main-content{
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: flex;
	justify-content: space-between;
	height: calc( 100vh - 160px );
}

.main-content .steps{
	width: calc(60% - 15px);
}

.main-content .right-sidebar{
	width: calc(40% - 15px);
	overflow-x: auto;
}

.pagination{
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: flex;
	-ms-align-items: center;
	align-items: center;
	justify-content: space-between;
	width: 100%;
	position: absolute;
	bottom: 15px;
	left: 30px;
	width: calc(100% - 60px);
}

.btn{
	color: #fff;
	background-color: #007CC0;
	padding: 8px 20px;
	display: block;
	text-align: center;
	text-decoration: none;
	font-weight: 700;
	font-size: 14px;
	-webkit-transition: all 0.3s ease-in-out;
	-o-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
	min-width: 120px;
	text-transform: uppercase;
	cursor: pointer;
	border: 2px solid #007CC0;
}

.btn:hover{
	background: transparent;
	color: #007CC0;
}

.btn.btn-back{
	background-color: transparent;
	border: 2px solid #007CC0;
	color: #007CC0;
}

.btn.btn-back:hover{
	background-color: #007CC0;
	color: #fff;
}

.pagination_steps{
	list-style: none;
	margin: 0;
	padding: 0;
	bottom: 9px;
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: flex;
	justify-content: space-between;
	align-items: center;
	position: relative;
	width: 100%;
}

.pagination_steps::before{
	position: absolute;
	content: '';
	display: block;
	left: 16%;
	top: 31px;
	height: 4px;
	background-color: #007CC0;
	z-index: 1;
	transition: right 0.3s ease;
}


.pagination_steps li{
	display: block;
	flex: 1;
	cursor: pointer;
	text-align: center;
	color: #848484;
	position: relative;
	margin-top: 3px;
	font-size: 14px;
	font-weight: 400;
}

.pagination_steps li span{
	display: none;
}

.pagination_steps li::before{
	position: absolute;
	content: '';
	display: block;
	width: 8px;
	height: 8px;
	border-radius: 100%;
	top: 0;
	left: 50%;
	margin-left: -9px;
	border: 4px solid #d0d0d0;
	background-color: #d0d0d0;
	z-index: 3;
}
.pagination_steps li:after{
	position: absolute;
	content: '';
	display: block;
	right: 50%;
	width: 100%;
	top: 6px;
	height: 4px;
	background-color: #d0d0d0;
	z-index: 1;
}
.pagination_steps li:first-child:after{
	display: none;
}

.pagination_steps li.active{
	color: #007CC0;
}


.pagination_steps li.active::before{
	background: #007CC0;
	border-color: #007CC0;
}
.pagination_steps li.active:after{
	background: #007CC0;
}

ul{
	list-style-type: none;
	margin: 0;
	padding: 0;
}

.accordion-item{
	margin-bottom: 1px;
}

.accordion-content{
	margin-top: 5px;
}

.accordion-content .additional-info{
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: flex;
	justify-content: flex-end;
}

.accordion-content .additional-info .additional-info-inner{
	width: 30%;
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: flex;
	-ms-align-items: center;
	align-items: center;
	font-size: 14px;
}

.answer-list .answer-items{
	width: calc(30% - 10px);
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: flex;
	-ms-align-items: center;
	align-items: center;
}

.answer-list .answer-items strong{
	flex-grow: 1;
	text-align: center;
	padding: 0 5px;
}

.accordion-content .additional-info span{
	flex-grow: 1;
	padding: 0 5px;  
	text-align: center;
}

.accordion-title{
	padding: 8px 20px;
	font-weight: 700;
	color: #fff;
	width: 100%;
	background-color: #007CC0;
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: flex;
	-ms-align-items: center;
	align-items: center;
	justify-content: space-between;
	cursor: pointer;
	font-size: 14px;
}

.accordion-item .icon{
	-webkit-transition: all 0.3s ease-in-out;
	-o-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
	width: 20px;
}

.accordion-item.accordion-active .icon{
	-webkit-transform: rotate(180deg);
	-ms-transform: rotate(180deg);
	-o-transform: rotate(180deg);
	transform: rotate(180deg);
}

.accordion-item:not(:first-child) .accordion-content{
	display: none;
}

.answer-list li{
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: flex;
	justify-content: space-between;
	-ms-align-items: center;
	align-items: center;
	padding-top: 7px;
	padding-bottom: 7px;
	padding-left: 20px;
	padding-right: 20px;
	border-bottom: 1px solid #E9EAEE;
	font-size: 14px;
	-webkit-transition: all 0.3s ease-in-out;
	-o-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
}

.answer-list li.active {
	color: #007CC0;
	text-decoration: underline;
}

.answer-list li:hover{
	color: #007CC0;
}

.answer-list li h4{
	margin: 0;
}

.answer-list li:last-child{
	border-bottom: none;
}

.answer-list li span{
	/*cursor: pointer;*/
	text-align: left;
}

.answer-list li strong{
	width: calc(30% - 10px);
	text-align: right;
	word-break: break-word;
}

.step_form th{
	padding: 10px;
	border-bottom: 1px solid #e9eaee;
}

.step_form.step_form_double input{
	margin-top: 5px;
	width: 100%;
}

.step_form.step_form_double .yes_no div{
	flex-grow: 1;
}

.products-list{
	margin-top: 10px;
}

.products-list li{
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: flex;
	-ms-align-items: center;
	align-items: center;
	justify-content: space-between;
	margin-bottom: 10px;
	position: relative;
}

.products-list li::before{
	content: '';
	position: absolute;
	height: 1px;
	left: 0;
	top: 50%;
	width: 100%;
	border-top: 2px dotted #E9EAEE;
}

.products-list li .img-wrap{
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: flex;
	padding-right: 10px;
	background-color: #fff;
	position: relative;
}

.products-list li .img-wrap img{
	min-width: 45px;
}

.products-list li .pd-price{
	font-weight: 700;
	font-size: 20px;
	position: relative;	
	text-align: right;
	width: calc(25% - 15px);
}

.products-list li .pd-price span{
	display: inline-block;
	background-color: #fff;
	padding-left: 5px;
}

.products-list li .pd-left-info{
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: flex;
	-ms-align-items: center;
	align-items: center;
	position: relative;
	width: calc(75% - 15px);
}

.products-list li .pd-left-info h4{
	font-size: 14px;
	color: #333;
	margin: 0;
	background-color: #fff;
	padding-right: 5px;
	font-weight: 400;
}

.product-block .btn-wrap{
	margin-top: 20px;
}

.product-block .btn-wrap .btn{
	margin: 0 auto;
	font-family: inherit;
}




@media(min-width: 1400px){
	.main-content{
		height: calc( 100vh - 295px );
	}
	.main-content .steps{
		width: calc( 70% - 15px );
	}
	.main-content .right-sidebar{
		width: calc( 30% - 15px );
	}
}
@media(max-width: 1400px){
	.wrapper{
		margin: 0 auto;
		min-height: 100vh;
	}
}

@media(max-width: 800px){
	.step_form.step_form_double td:last-child{
		display: block;
	}
	.step_form.step_form_double td:nth-child(2){
		width: 100%;
	}
	.step_form.step_form_double th{
		display: block;
		width: 100%;
		border: none;
	}
	.step_form.step_form_double th:nth-child(2){
		border-bottom: 1px solid #e9eaee;
	}
	.step_form.step_form_double thead{
		display: block;
	}
	.step_form.step_form_double td:nth-child(2){
		padding-left: 20px;
	}

	.step_form.step_form_triple td:last-child{
		display: block;
	}
	.step_form.step_form_triple td:nth-child(2), .step_form.step_form_triple td:nth-child(3){
		width: 100%;
	}

	.step_form.step_form_triple th{
		display: block;
		width: 100%;
		border: none;
	}
	.step_form.step_form_triple th:nth-child(2){
		border-bottom: 1px solid #e9eaee;
	}
	.step_form.step_form_triple th:nth-child(3){
		border-bottom: 1px solid #e9eaee;
	}
	.step_form.step_form_triple thead{
		display: block;
	}
	.step_form.step_form_triple td:nth-child(2){
		padding-left: 20px;
	}
}

@media(max-width: 576px){
	.top-header{
		-webkit-flex-direction: column;
		-moz-flex-direction: column;
		-ms-flex-direction: column;
		-o-flex-direction: column;
		flex-direction: column;
	}
	.top-header .header-logo{
		margin-bottom: 20px;
	}
	.btn{
		padding: 5px 15px;
		min-width: 110px;
	}
	.wrapper{
		padding-left: 15px;
		padding-right: 15px;
	}
	.pagination{
		left: 15px;
		width: calc(100% - 30px);
	}
	.products-list li .pd-price{
		font-size: 18px;
	}
}


/* Added  style */
.show-products{
	display: none;
}

/* end added  style */