@charset "utf-8";
/*====CSS Document====*/

body {
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	margin: auto;
	padding: 0;
	background: #ffffff;
	color: #000000;
	text-align: center;
    font-family: 'Inter';
	font-weight: normal;
	}
div, ul, h1, h2, h3, h4, h5, li, p, img, form, input, textarea {margin: 0;padding: 0;}
header, section, footer, aside, nav, main, article, figure {display: block;}
table, tr, td {border: 0;}
a {outline: none;color: inherit;text-decoration: none;}
img {border: none; max-width: 100%; height: auto;}
li {list-style: none;}
* {box-sizing: border-box;}
.img-full {max-width: 100%;}
.clearall {
	clear: both;
	font-size: 1px;
	line-height: 1px;
	height: 1px;
	}
.fl{ float:left;}
.fr{ float:right;}

/*-----------------------
FONTS
------------------------*/
@font-face {
	font-family: 'Inter';
	src: url('Inter-Light.woff2') format('woff2'),
	url('Inter-Light.woff') format('woff');
	font-weight: 300;
	font-style: normal;
	font-display: swap;
	}
	
@font-face {
    font-family: 'Inter';
    src: url('Inter-Regular.woff2') format('woff2'),
	url('Inter-Regular.woff') format('woff');
	font-weight: normal;
	font-style: normal;
	font-display: swap;
	}

@font-face {
	font-family: 'Inter';
	src: url('Inter-SemiBold.woff2') format('woff2'),
	url('Inter-SemiBold.woff') format('woff');
	font-weight: 600;
	font-style: normal;
	font-display: swap;
	}

@font-face {
    font-family: 'Inter';
    src: url('Inter-Bold.woff2') format('woff2'),
	url('Inter-Bold.woff') format('woff');
	font-weight: bold;
	font-style: normal;
	font-display: swap;
	}

/*-----------------------
MAIN CSS START
------------------------*/
.container {
	width:1170px;
	margin:0 auto;
	padding:0;
	position:relative;
	}
		
/*--------TOP-STRIP--------*/
.top__strip{
	float:left;
	width:100%;
	background:#000;
	padding:5px 0 6px;
	}
.top__strip_text{
	float:left;
	width:100%;
	color:#fff;
	font-size:17px;
	line-height:23px;
	font-weight:400;
	letter-spacing:0.5px;
	}

/*--------Header--------*/
.header{
	float: left;
	width: 100%;
	padding:10px 0;
	}
.header__inner{
	float:left;
	width:100%;
	display:flex;
	align-items:center;
	justify-content:space-between;
	}
.header__logo{
	width:228px;
	}
.header__list{
	width:auto;
	display:flex;
	column-gap:30px;
	align-items:center;
	justify-content:center;
	}
.header__list li{
	width:auto;
	padding-left:20px;
	font-size:16px;
	line-height:16px;
	font-weight:600;
	letter-spacing:0.5px;
	background:url(../images/header-check.png) no-repeat 0 1px;
	background-size:14px;
	}

	
/*========Question-Section========*/
.quiz-sec{
	background:url(../images/banner-background.jpg) no-repeat center top;
	float:left;
	width:100%;
	min-height:calc(100vh - 200px);
	padding:50px 0;
	background-size:cover;
	}
.contnt-sec{
	display:inline-block;
	vertical-align:middle;
	max-width:635px;
	width:100%;
	background:#fff;
	border-radius:22px;
	overflow:hidden;
	padding:35px 10px 30px;
	}

.progress-container{
	display: inline-block;
    vertical-align: top;
    max-width: 340px;
    width: 100%;
    position: relative;
	}
ul.progress-list{
	float:left;
	width:100%;
	position:relative;
	z-index:11;
	}
ul.progress-list li{
	float:left;
	width: 8.25%;
	text-align:center;
	position:relative;
	height:15px;
	}
ul.progress-list li span{
	display:inline-block;
	vertical-align:top;
	width:15px;
	height:15px;
	background:#d9e9f7;
	border-radius:50%;
	position:relative;
	z-index:3;
	}
ul.progress-list li.active span{background:#004075;}

.progressbar{
	position:absolute;
	width:86%;
	left: 7%;
    top: 50%;
    margin-top: -2px;
	background:#d9e9f7;
	height:4px;	
	}
.prgress-1{
	float:left;
	height:100%;
	background:#004075;
	position:relative;
	transition:all ease 1s;
	-webkit-transition:all ease 1s;	
	}

.question_box{
	float:left;
	width:100%;
	margin-top:20px;
	}
.step_heading{
    font-size: 30px;
    line-height: 36px;
	color:#000;
    font-weight: bold;
	}
.step_sub_heading{
	color:#000;
	font-size:18px;
	line-height:24px;
	letter-spacing:0.3px;
	margin-top:10px;
	}
.option-box{
	display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    flex-wrap: wrap;
	justify-content:center;
	width:100%;
	max-width:485px;
	gap:15px;
	margin:25px auto 0;
	}
.option-col{
	display:inline-block;
	vertical-align:middle;
	width:100%;
	position:relative;
	}		
.desc-opt{
	float: left;
    width: 100%;
	height:60px;
	text-align:left;
	padding:8px 20px 10px;
    position: relative;
    cursor: pointer;
	text-align:left;
	border:1px solid #d1d1d1;
    background:#fff;
	border-radius:6px;
	transition: all .15s ease-in-out;
	
    font-size:17px;
    line-height:21px;
	color:#000;
	font-family: 'Inter';
    letter-spacing:0.5px;	
	
	display: -webkit-flex;
	display: flex;
	-webkit-align-items: center;	
    align-items: center;
	}
.option-col:hover .desc-opt{
	background:#004075;
	border-color: #004075;
	transform: scale(1.01);
	}
.option-col input[type="radio"]:checked + span + .desc-opt, .option-col input[type="checkbox"]:checked + span + .desc-opt{
    background-color: #004075;
    border-color: #004075;
    transform: scale(1.01);
    color: #fff;
	}	
.option-col:hover .desc-opt{ color:#fff;}	
.option-col input[type="radio"]:checked span + .desc-opt p, .option-col input[type="checkbox"]:checked span + .desc-opt p{ color:#fff;}	
.option-col input[type="radio"],.option-col input[type="checkbox"]{
	opacity:0;
	position:absolute;
	left:0;
	top:0;
	}	
.option-col input[type="radio"]:checked + .desc-opt,.option-col input[type="radio"]:checked + .desc-opt{
	background:#004075;
	border-color:#004075;
	}	
.option-col input[type="radio"] + span, .option-col input[type="checkbox"] + span{
    width: 18px;
    height: 18px;
    position: absolute;
    right: 20px;
    top: 50%;
    margin-top: -9px;
	border-radius:50%;
    z-index: 1;
    background:url(../images/tik.svg) center center no-repeat #c9c9c9;
    cursor: pointer;
	background-size:14px;
	}
.option-col:hover input[type="radio"] + span, .option-col:hover input[type="checkbox"] + span{
	background:url(../images/hover-tik.svg) center center no-repeat #15ab2f;
	background-size:14px;
	transform: scale(1.01);
	}	
.option-col input[type="radio"]:checked + span, .option-col input[type="checkbox"]:checked + span{ 
	background:url(../images/hover-tik.svg) center center no-repeat #15ab2f;
	background-size:14px;
	transform: scale(1.01);
	}
	
.form-elements{
	float:left;
	width:100%;
	}
.form-elements.half{width:calc(50% - 10px);}
.form-elements.fr{float:right;}
.inputflds{
	float:left;
	width:100%;
	height:60px;
	border:1px solid #d1d1d1;
	border-radius:5px;
	background:#fff;
	color:#000;
	padding:0 20px;
	font-family: 'Inter';
	font-size:17px;
	-webkit-appearance:none;
	outline:none;
	}
.inputflds::placeholder{ color:#a6a6a6;}
.inputflds:focus{
	outline:none;
	}
select.inputflds{
    background: url(../images/down-arrow.png) no-repeat center right 15px;
	}	
.agree_text{
	display:inline-block;
	vertical-align:top;
	width:100%;
	text-align:center;
	font-size:14px;
	line-height:20px;
	color:#000;
	letter-spacing:0.5px;
	padding:0 20px;
	margin-top:20px;
	}	
.agree_text a{ color:#0055dc;}	

.common_btn{
	display:inline-block;
	vertical-align:top;
	width:100%;
	max-width:420px;
	height:70px;
	color:#000;
	font-size:28px;
	line-height:70px;
	border-radius:5px;
	background:#ffc600;
	text-align:center;
    font-family: 'Inter';
	font-weight:bold;
	margin-top:25px;
	
	-webkit-appearance:none;
	border:none;
	outline:none;
	cursor:pointer;
	}
.btn_arw{
	display:inline-block;
	vertical-align:middle;
	margin:-2px 0 0 20px;
	}
	
.secure_txt{
	display:inline-block;
	vertical-align:top;
	width:100%;
    font-size: 14px;
    line-height: 16px;
  	color: #000;
    text-align: center;
    margin-top: 10px;
	}	
.secure_txt img{
	display: inline-block;
    vertical-align: middle;
    margin: -6px 10px 0 0;
	width:12px;
	}	
	
.btn-back{
	display:inline-block;
	vertical-align:top;
	color:#000;
    font-size:15px;
    line-height:15px;
	letter-spacing:1px;
	text-transform:uppercase;
	cursor:pointer;
	margin-top:30px;
	}
.btn-back img{
	display:inline-block;
	vertical-align:middle;
	margin:-3px 7px 0 0;
	width:20px;
	}	

/*--------FOOTER--------*/
.footer{
	float:left;
	width:100%;
	background:#fff;
	padding:20px 0 45px;
	}
.footer_left{
	float:left;
	width:22%;
	text-align:left;
	}
.footer__logo{
	float:left;
	margin-top:20px;
	width:200px;
	}
.footer__text1{
	float:left;
	width:100%;
	margin-top:20px;
	font-size:16px;
	line-height:22px;
	font-weight:300;
	}
.footer__right{
	float:right;
	width:74%;
	text-align:left;
	margin-top:20px;
	}
.footer__text2{
	float:left;
	width:100%;	
	font-size:15px;
	line-height:21px;
	font-weight:400;
	}

.border_top{
	float:left;
	width:100%;
	margin-top:20px;
	padding-top:15px;
	border-top:1px solid #e4e4e4;
	
	display: -webkit-flex;
    display: flex;
    justify-content: space-between;
    align-items: center;	
	}	
.footer__text3{
	font-size:15px;
	line-height:21px;
	font-weight:400;
	}
.footer__text3 a{
	display:inline-block;
	vertical-align:middle;
	padding:0 10px;
	}
.footer__text3 a:first-child{ padding-left:0;}
	
/*-----------------------
MEDIA-QUERY
------------------------*/
.show-mob, .show-tab{display:none;}

@media only screen and (max-width: 1200px){
.container{width:1004px;}

.footer_left { width: 26%;}
.footer__right { width: 70%;}
}

@media only screen and (max-width:1021px){	
.container{width:750px;}
.show-tab{ display:block;}
.show-desk{ display:none;}

.top__strip_text { font-size: 16px; line-height: 22px;}
.header__logo { width: 210px;}
.header__list { column-gap: 25px;}
.header__list li { padding-left: 17px; font-size: 16px; line-height: 16px; letter-spacing: 0; background-position: 0 2px; background-size: 12px;}

.border_top{ flex-wrap: wrap;}
.footer__text3{ float:left; width:100%;}
.ftr_top{ margin-top:10px;}
.footer__logo{ width: 160px;}
}

@media only screen and (max-width:767px){
	
.container{ max-width:600px; width:100%; padding:0px 10px; box-sizing:border-box;}
.show-mob{ display:block;}
.hide-mob{ display:none;}

.top__strip_text { font-size: 14px; line-height: 20px;}

.header__inner{ justify-content:center;}
.header{ padding: 8px 0;}
.header__logo { width: 120px;}
.header__list li { font-size: 12px; line-height: 14px; }

.contnt-sec{ padding:25px 10px 25px;}

.quiz-sec{ background:#edf7ff; padding:30px 0 35px; min-height: auto; background-size: cover;}
.question_box{ margin-top:10px;}
.step_heading{ font-size:21px; line-height:29px;}
.step_sub_heading{ font-size: 15px; line-height: 21px; padding:0 25px;}
.option-box{ gap:10px; margin: 20px auto 0;}
.option-col{ width:100%;}
.desc-opt{ font-size:15px; line-height:19px; height:55px; padding:10px 15px;}
.option-col input[type="radio"] + span, .option-col input[type="checkbox"] + span{ right:15px;}

.inputflds{ height:55px; font-size:15px; padding:0 15px;}

.common_btn{ height:60px; font-size:22px; line-height:60px; margin:20px auto 0;}
.btn_arw{ margin:-2px 0 0 15px; width:8px;}

.secure_txt{ font-size:12px; line-height:20px;}
.secure_txt img{ margin: -5px 7px 0 0; width: 10px;}

.agree_text{ font-size: 13px; line-height: 19px; letter-spacing: 0.5px; padding: 0 5px; margin-top: 15px;}

.btn-back{ font-size:14px; line-height:16px; margin-top:20px;}
.btn-back img{ margin:-2px 6px 0 10px; width:17px;}

.footer { padding: 25px 0 25px;}
.footer_left { width: 100%; text-align:center;}
.footer__logo { display: block; margin: 0 auto; float:none;}
.footer__text1 { margin-top: 15px;}
.footer__right { width: 100%; text-align:center; margin-top:15px;}
.footer__text2 { font-size: 14px; line-height: 21px;}
.border_top{ margin-top:15px; padding-top:15px;}
.ftr_top{ margin-top: 5px;}
}


/*========CONGRATS_PAGE==============*/
.loader_box{
	float:left;
	width:100%;
	}
	
.loader{
	display:block;
	margin:0 auto;
	width:330px;
	height:30px;
	border:2px solid #d1d1d1;
	padding:3px;
	border-radius:2px;
	}
.loader ul{
	width:100%;
	height:100%;
	display: flex;
    display: -webkit-flex;
    flex-wrap: wrap;
	}
.loader ul li{
	display:none;
	width:calc((100% / 30) - 3px);
	height:100%;
	margin-right:3px;
	}
.loader ul li span{	
	display:block;
	height:100%;
	width:100%;
	border-radius:2px;
	background: rgb(0,1,112);
	background: -moz-linear-gradient(0deg, rgba(0,1,112,1) 0%, rgba(0,1,112,1) 50%, rgba(0,1,112,1) 100%);
	background: -webkit-linear-gradient(0deg, rgba(0,1,112,1) 0%, rgba(0,1,112,1) 50%, rgba(0,1,112,1) 100%);
	background: linear-gradient(0deg, rgba(0,1,112,1) 0%, rgba(0,1,112,1) 50%, rgba(0,1,112,1) 100%);
	filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#007c70",endColorstr="#007c70",GradientType=1);
	}		
	
ul.loader_list{
	display:inline-block;
	vertical-align:top;
	width:100%;
	max-width:365px;
	margin-top:10px;
	}
ul.loader_list li{
	text-align:left;
	margin-top:30px;
	}
ul.loader_list li h3{
	font-size:20px;
	line-height:28px;
	color:#000000;
	font-weight:bold;
	}
ul.loader_list li p{
	font-size:20px;
	line-height:28px;
	color:#000000;
	margin-top:8px;
	}
ul.loader_list li p img{
	display:inline-block;
	vertical-align:middle;
	margin:-7px 10px 0 0;
	}
	
.quiz-inr-box{
    display: inline-block;
    vertical-align: top;
    width: 100%;
    background: #fff;
    overflow: hidden;
	min-height: 490px;
	padding:50px 30px 45px;
	}

/*=========RESULTS PAGE=========*/
.quotes-section{
	float:left;
	width:100%;
	border-top:1px solid #ccc;
	padding:50px 0 60px;
	}
.result-hdng1{
	color:#000073;
	font-size:55px;
    line-height:45px;
	font-weight:bold;
	}
.result-hdng2{
	color:#000;
	font-size:20px;
    line-height:28px;
	font-weight:600;
	margin-top:15px;
	}
.result-hdng3{
	color:#000;
	font-size:18px;
    line-height:26px;
	margin-top:25px;
	}
.quotos-block{
	float:left;
	width:100%;
	padding:0 100px;
	margin-top:10px;
	}	
.pck-bx{
	float:left;
	width:100%;	
	transition:all ease 0.5s;
	border:3px solid #000073;
	border-radius:10px;
	padding:30px 30px;
	margin-top:20px;
	
	display: -webkit-flex;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
	position:relative;	
	}
.pck-bx:hover{
	transform: scale(1.025);
	transition:all ease 0.5s;
	box-shadow: 0px 0 25px -5px rgba(0,0,0,0.5);
	}
.comon-pck-bx{border:1px solid #bfbfbf;}	
.pck-bx-lft{
    width:17%;
	}
.pck-rbn{
	position:absolute;
    top:10px;
    left:-15px;
	color:#fbee18;
    font-size:16px;
    line-height:22px;
    font-weight:bold;
	background:#ff0000;
    padding:6px 10px 6px 15px;
	}
.pck-rbn:before{
	content:'';
	position:absolute;
	top:0;
	right:-10px;
	border-top:17px solid #ff0000;
	border-bottom:17px solid #ff0000;
    border-right:10px solid transparent;	
	}	
.pck-rbn:after{
	content:'';
	position:absolute;
	left:0;
	bottom:-10px;
	border-top:10px solid #ff3939;
    border-left:12px solid transparent;	
	}
.pck-img{	
	display:block;
	margin:0 auto 0;
	width:175px;
	max-width:100%;
	}
.pck-bx-cont{
	width:48%;
	text-align:left;
	margin-left:50px;
	}
.pck-cont-head{
	float:left;
	width:100%;
	color:#000073;
	font-size:22px;
	line-height:30px;
	font-weight:bold;
	}	
.pck-list{
	float:left;
	width:100%;
	margin-top:5px;
	}
.pck-list li{
	float:left;
	width:100%;
	color:#000;
	font-size:16px;
    line-height:21px;
	text-align:left;
    padding-left:20px;
    margin-top:10px;
	position:relative;
	}
.pck-list li:before{
	content:'';
	position:absolute;
	top:8px;
	left:0;
	width:6px;
	height:6px;
	background:#000;
	border-radius:50%;	
	}
.pck-btn-bx{
	width:24%;
    text-align:center;
	}
a.pck-btn{
	display:inline-block;
	vertical-align:top;
	width:100%;
	height:60px;
	color:#fff;
	font-size:20px;
	line-height:60px;	
	font-weight:bold;
	text-align:center;
	background:#04d36f;
	border-radius:5px;
	margin-top:10px;
	}
a.pck-btn.red {
	background-color: #ff0000;
}

@media only screen and (max-width: 1200px){		
.quotos-block{padding:0 0;}
.pck-rbn{font-size:13px;line-height:20px;}
.pck-rbn:before{border-top:16px solid #ff0000;border-bottom:16px solid #ff0000;}
.pck-bx{padding:20px 15px;}
.pck-bx-lft{width:26%;}
.pck-img{max-width:100%;}
.pck-bx-cont{width:40%; margin-left:0;}
.pck-cont-head{font-size:20px; line-height:26px;}
.pck-btn-bx{width:26%;}
a.pck-btn{height:55px; font-size:15px; line-height:55px; margin-top:5px;}
.pck-btn-txt{font-size:14px; line-height:19px;}	
}

@media only screen and (max-width:767px){
.loader{width:260px;}
.loader ul li {width: 6px;margin-right: 2px;}
	
ul.loader_list li h3{ font-size:18px; line-height:26px;}
ul.loader_list li p{ font-size:18px; line-height:26px;}
.congrts-hdng{ font-size:28px; line-height:34px;}
.congrts-text1 {font-size: 18px;line-height: 24px; margin-top: 10px;}
ul.pre-list{ margin-bottom:10px;}
ul.pre-list li{ font-size:18px; line-height:26px;}
ul.loader_list{ max-width:325px;}

/*=========RESULTS PAGE=========*/
.quotes-section{padding:25px 0 35px;}
.result-hdng1{font-size:28px; line-height:32px;}
.result-hdng2{font-size:16px; line-height:24px; margin-top:5px;}
.result-hdng3{font-size:16px; line-height:24px; margin-top:5px;}
.quiz-inr-box{ padding:25px 0;}
.quotos-block{padding:0 20px; margin-top:5px;}
.pck-bx{padding:25px 20px; margin-top:20px;justify-content: center;}
.pck-bx:hover{ box-shadow:none; transform:none; transition:none;}
.pck-bx1{ padding-top:60px;}
.pck-img{width: 150px;}
.pck-rbn{ font-size: 15px;}
.pck-bx-lft{width:100%;}
.pck-bx-cont{ width:100%; text-align:center; margin-top:20px;}
.pck-cont-head{ font-size: 22px; line-height: 28px;}
.pck-list{float: none; display: inline-block; vertical-align: top; width:300px; padding-right:20px;}
.pck-list li{background-size:15px; background-position:left 6px; padding-left:22px; letter-spacing:0.3px; line-height:22px;}
.pck-bx-rev{ width:70%; padding:20px 15px; margin-top:25px;}
.grading-txt{font-size:35px; line-height:29px;}
.pck-bx-btm{padding-top:18px; margin-top:18px;}
.pck-star{ width:95px; margin-top:6px;}
.ranking-txt{line-height:20px; margin-top:8px;}
.pck-btn-bx{width:100%; margin-top:20px;}
.pck-btn-txt{ font-size:15px; line-height:21px;}
a.pck-btn{font-size:20px; margin-top:8px;}

}
	
	
	

/*CSS FOR MODAL*/
#app_common_modal,
#error_handler_overlay{position:fixed;top:0;left:0;padding:0;margin:0;width:100%;height:100%;z-index:2147483647;background:#333;background:rgba(255, 255, 255, .8);display:none;overflow-x:hidden;-webkit-overflow-scrolling:touch}
#app_common_modal .app_modal_body,
#error_handler_overlay .error_handler_body{max-width:600px;-webkit-background-clip:padding-box;font-family:Verdana, Geneva, sans-serif;box-sizing:border-box;outline:0}
#error_handler_overlay .error_handler_body{margin:100px auto;width:95%;padding:20px;background-color:#fff;background-clip:padding-box;border:1px solid #999;border:1px solid rgba(0, 0, 0, .2);border-radius:0;-webkit-box-shadow:0 3px 9px rgba(0, 0, 0, .5);box-shadow:0 3px 9px rgba(0, 0, 0, .5);font-size:14px;line-height:1.42857143;color:#333;position:relative;-webkit-box-sizing:border-box;-moz-box-sizing:border-box}
#app_common_modal_close,
#error_handler_overlay_close{position:absolute;right:-10px;top:-10px;color:#FFF;background-color:#333;border:2px solid #FFF;border-radius:50%;width:30px;height:30px;text-align:center;cursor:pointer;text-decoration:none;font-weight:700;line-height:26px;padding:0;margin:0}
#app_common_modal .app_modal_body{margin:100px auto;min-width:inherit;width:95%;min-height:400px;padding:1.5%;background-color:#fff;background-clip:padding-box;border:1px solid #999;border:1px solid rgba(0, 0, 0, .2);border-radius:0;-webkit-box-shadow:0 3px 9px rgba(0, 0, 0, .5);box-shadow:0 3px 9px rgba(0, 0, 0, .5);font-size:14px;line-height:1.42857143;color:#333;position:relative;-webkit-box-sizing:border-box;-moz-box-sizing:border-box;-ms-box-sizing:border-box}
#app_common_modal .app_modal_body iframe{min-height:400px;width:100%;border:1px solid #d5d6ef}
.exitpop-content{position:fixed;height:400px;width:708px;margin:-200px 0 0 -354px;top:50%;left:50%;text-align:left;padding:0;border:none;z-index:2147483647}
.exitpopup-overlay{background:rgba(0, 0, 0, .6);height:100%;left:0;position:fixed;top:0;width:100%;z-index:2147483647;display:none}
.exitpop-content img{display:block;margin:0 auto;position:relative;text-align:center;max-width:100%;height:auto}
.exitpop-discountbar{background-color:red;border-bottom:4px dashed #fff;color:#fff;font-family:Arial, Helvetica, sans-serif;font-size:15px;font-weight:700;height:50px;line-height:50px;position:fixed;text-align:center;top:0;width:100%;z-index:9999;display:none}
.app-load-spinner{display:none;position:fixed;top:0;bottom:0;left:0;right:0;width:100px;height:100px;margin:auto;background-color:#333;border-radius:100%}
#loading-indicator::after,
#loading-indicator::before{box-sizing:border-box;left:50%;position:absolute;top:50%}
.all-card-types li{float:left;margin-right:20px}
#loading-indicator{background-color:rgba(0, 0, 0, .5);bottom:0;box-sizing:border-box;font-size:1px;height:100%;left:0;margin:0!important;padding:0!important;position:fixed;right:0;top:0;width:100%;z-index:2147483646}
#loading-indicator::before{background:url(../images/loading.gif) center center no-repeat rgba(0, 0, 0, 0);content:"";height:70px;margin-left:-35px;margin-top:-70px;width:70px;z-index:2}
#loading-indicator::after{background:#fff;border-radius:5px;color:#000;content:"Processing, one moment please... ";font-family:arial;font-size:17px;height:110px;line-height:98px;margin-left:-150px;margin-top:-75px;padding-top:35px;text-align:center;width:300px;z-index:1}

@-webkit-keyframes scaleout{
0%{-webkit-transform:scale(0)}
100%{-webkit-transform:scale(1);opacity:0}
}

@keyframes scaleout{
0%{transform:scale(0);-webkit-transform:scale(0)}
100%{transform:scale(1);-webkit-transform:scale(1);opacity:0}
}

@media screen and (max-device-width:767px) and (orientation:landscape){
#app_common_modal .app_modal_body, #error_handler_overlay .error_handler_body{margin:20px auto;}
#app_common_modal .app_modal_body iframe{min-height:360px;}
}

@media(max-device-width:767px){#app_common_modal .app_modal_body{margin:2% auto}}

input.has-error {
	border: 1px solid red;
}

.agree_text a {
	text-decoration: underline;
	color: blue;
}

.ui-slider .ui-slider-handle {
	height: 2.4em !important;
	top: -0.9em !important;
}

.disabled {
	pointer-events: none;
	opacity: 0.6;
}