@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;700;900&display=swap');
.ac_test_advisor {
    text-align: center;
    background: #EDEDED;
	padding: 50px;
}
.ac_test_advisor .cont {
	max-width: 700px;
	margin: 0 auto;
}
.ac_test_advisor *{
    font-family: 'Montserrat', sans-serif;
}
.ac_test_advisor #email,
.ac_test_advisor #end, 
.ac_test_advisor #loader {
    display: none;
}
.ac_test_advisor .title {
    font-size: 30px;
    padding: 20px;
    color: #0077ee;
    font-weight: 700;
	line-height: 30px;    
}
.ac_test_advisor .subtitle {
	font-size: 18px;
    padding: 5px;
    color: #0077ee;
    font-weight: normal;
	line-height: 30px;  
}
.ac_test_advisor .spacer {
	max-width: 500px;
	height: 2px;
	background: rgba(0,0,0,0.1);
	margin: 20px auto;
}
.ac_test_advisor input[type="text"]{
    width: 300px;
    display: inline-block;
    padding: 20px 40px;
    margin: 5px;
    border-radius: 5px;
    background: #FFF;
    border: 2px solid RGBA(0,0,0,0.2);
    box-shadow: 0px 5px RGBA(0,0,0,0.2);
    outline: 0;
    cursor: pointer;
    box-sizing: border-box;
}
.ac_test_advisor input[type="text"]:focus {
	border: 2px solid #0077ee !important;
	border-color: #0077ee !important;
}
.ac_button {
	display: block;
}
.ac_test_advisor button,
.ac_button {
    display: inline-block;
    padding: 20px 40px;
    margin: 5px;
    border-radius: 5px;
    background: #FFF;
    border: 2px solid RGBA(0,0,0,0.2);
    box-shadow: 0px 5px RGBA(0,0,0,0.2);
    outline: 0;
    cursor: pointer;
    box-sizing: border-box;
	color: #222;
}
.ac_test_advisor button:hover,
.ac_button:hover {
    background: #dbdbdb;
    border: 2px solid RGBA(0,0,0,0.22);
    box-shadow: 0px 5px RGBA(0,0,0,0.2);
}
.ac_test_advisor button:active,
.ac_button:active {
    box-shadow: 0px 0px !important;
    transform: translateY(5px);
    color: #0077ee !important;
	border-color: #0077ee;
}
.ac_test_advisor #end {
    background: #fff;
    border-radius: 5px;
    padding: 20px;
    box-shadow: 0px 5px RGBA(0,0,0,0.1);
}
.ac_test_advisor #end #results {
    color: #0077ee;
}
.ac_test_advisor .end_products {
	display: flex;
	align-items: center;
	justify-content: center;
	flex-wrap: wrap;
}
.ac_test_advisor .end_products .end_product {
	width: 300px;
	height: auto;
	background: #fff;
	padding: 10px;
	margin: 20px;
	border-radius: 20px;
	overflow: hidden;
}
.ac_test_advisor .end_products .end_product img {
	border-radius: 12px;
}
.ac_test_advisor .end_products .end_product .end_title {
	color: #0077ee;
	font-weight: 700;
	margin: 10px;
	font-size: 18px;
}
.ac_test_advisor .end_products .end_product .end_price {
	color: #333;
	text-align: center;
}
#email #email_error,
#email #data_prot_error {
	display: none;
	color: red;
	font-size: 14px;
}
#back_button {
	display: none;
	margin: 0 auto;
    background: #eee;
    color: #777;
    padding: 10px;
}
#progress_bar {
	width: 100%;
	height: 20px;
	background: #94c6f7;
	border-radius: 100px;
	margin: 20px auto;
	overflow: hidden !important;
}
#progress_bar_inner {
	height: 20px;
	background: #0077ee;
	border-radius: 100px;
	transition: width .2s ease;
}
.data_prot_hold {
	display: flex;
	align-items: flex-start;
	justify-content: start;
	margin-top: 15px;
	margin-bottom: 15px;
}
.data_prot_hold label {
    color: #666;
    font-size: 12;
    text-align: left;
    margin-left: 10px;
	line-height: 19px;
}
.ac_test_advisor input[type="checkbox"]{
	width: 30px;
	height: 30px;
	flex-shrink: 0;
}
#loader .spinner {
	width: 50px;
	height: 50px;
	background: #0077ee;
	margin: 0 auto;
	animation: spin 1s infinite linear;
}
@keyframes spin {
	0%{transform: rotate(0deg);}
	100%{transform: rotate(360deg);}
}
#loader .text { 
	margin-top: 50px;
	text-align: center;
	color: #0077ee;
}