body {
	background-image: url(/data/uploads/rasa-thalian-hall-extended.webp);
	background-size: cover;
	background-position: -330px -150px;
	background-repeat: no-repeat;
	min-height: 100%;
	font-size: 14px;
}

@media (min-width: 1024px) {
	body{
		background-position: center -100px;
	}
}

.primary-section h1,
.primary-section .h1 {
	color: #fff;
	font-size: 4rem;
	
}

.primary-section {
	position: relative;
	width: 100%;
	padding: 2rem 0;
	display: inline-block;
	vertical-align: middle;
	
}

.primary-container {
	position: relative;
	margin-top: -50rem;
	margin-bottom: 6rem;
}

@media (min-width: 1024px) {
	.primary-container {
		position: relative;
		margin-top: -50rem;
		margin-bottom: 6rem;
	}
}

.inner-container {
	background-color: transparent;
	padding: 1rem 1rem;
}


h1 span,
h2 span,
h3 span {
	color: var(--thm-primary);
}

.quiz-step h3 {
	font-weight: bold;
}

.quiz-step .form-wizard {
	position: relative;
	max-width: 750px;
	width: 100%;
	margin: 0 auto;
	padding: 3rem 3rem;
	font-family: Montserrat,'Helvetica Neue',Helvetica,Arial,sans-serif;
	background: rgba(255,255,255, 1);
	box-shadow: 0 3px 60px rgb(0 0 0 / 0.5);
	border-radius: 5px;
	
}

@media (min-width: 1024px) {
	.quiz-step .form-wizard {
		padding: 4rem 2.5rem;
	}
}

.quiz-step .form-wizard  p {
	font-size: 1.2rem;
}
.quiz-step .form-wizard .question-p {
	font-weight: 700;
	color: #000;
	font-size: 1.4rem;
	max-width: 100%;
	line-height: 1.2;
	margin: 0 0 1.25rem;
}

@media (min-width: 1200px) {
	.quiz-step .form-wizard .question-p {
		font-size: 1.6rem;
	}
}

.quiz-step .form-wizard a {
	text-decoration: none;
}

.quiz-step .form-wizard.success {
	font-family: var(--thm-font);
	text-align: left;
}

.quiz-step .form-wizard.success p {
	font-size: 1rem;
}

.quiz-step .form-wizard.success ul,
.quiz-step .form-wizard.success ul li {
	list-style-type: none;
}



.box-radio-btn {
	position: relative;
}

.box-radio-btn .radio-btn {
	background: #fff;
	width: calc(50% - 18px);
	max-width: 180px;
	height: 130px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	flex-direction: column;
	vertical-align: top;
	margin: 15px;
	position: relative;
	border: solid 1px #ccc;
	border-radius: 15px;
	box-shadow: 2px 2px 5px 0 rgb(0 0 0 / 10%);
	cursor: pointer;
	transition: background-color .2s ease-in-out,border .2s ease-in-out,transform .25s cubic-bezier(.17,.88,.42,2.1);
}

.box-radio-btn .radio-btn:hover {
	background-color: rgba(var(--thm-primary-rgb),.03);
	border: solid 1px var(--thm-primary);
	transform: scale(1.05);
	transition: background-color .2s ease-in-out,border .2s ease-in-out,transform .25s cubic-bezier(.17,.88,.42,2.1);
}

.box-radio-btn .radio-btn i {
	font-size: 45px;
	color: var(--thm-base);
	margin-bottom: 8px;
}

.box-radio-btn .radio-btn span {
	color: var(--thm-base);
	font-size: 14px;
	font-weight: 600;
	padding: 0 5px;
}

.disclaimer {
	position: relative;
	width: 100%;
	overflow: hidden;
	padding: 3rem 0
}

#disclaimer {
	display: none;
}
.disclaimer P {
	padding: 0;
	margin: 0;
	font-size: 11px;
	line-height: 1rem;
	color: #999;
	
}

/** FORM WIZARD **/

ul.progressbar {
	overflow: hidden;
	counter-reset: step;
	margin: 0 auto;
	padding: 0;
	max-width: 600px;
	
}

ul.progressbar li {
	list-style-type: none;
	color: #fff;
	text-transform: uppercase;
	font-size: 12px;
	width: 10%;
	float: left;
	position: relative;
	padding-left: 0;
	display: block;
	padding-bottom: 0;
	margin-bottom: 2rem;
}

ul.progressbar li.hide {
	display: none;
}

@media (min-width: 768px) {
	ul.progressbar li {
		margin-bottom: 4rem;
	}
}

ul.progressbar li:first-child:after {
	content: none;
}

ul.progressbar li::before {
	width: 20px;
	height: 20px;
	line-height: 20px;
	display: block;
	font-size: 10px;
	font-weight: 600;
	color: #fff;
	background: #c7c7c7;
	border-radius: 15px;
	padding: 1px;
	position: relative;
	z-index: 2;
	text-align: center;
	border: none;
	left: 50%;
	margin-left: -10px;
	transform: none;
	top: 4px;
	content: " ";

}

ul.progressbar li::after {
	content: "";
	width: 100%;
	height: 3px;
	background: #c7c7c7;
	position: absolute;
	left: -50%;
	top: 12px;
	z-index: 1;
}


ul.progressbar li.active::after,
ul.progressbar li.active::before,
ul.progressbar li.activated::before,
ul.progressbar li.activated::after {
	background: var(--thm-primary);
	color: #fff;
}

.invisible {
	visibility: hidden!important;
}

.btn-prev-step {
	font-size: 28px;
	color: var(--thm-base);
	background: transparent;
	display: inline-flex;
	position: absolute;
	top: 20px;
	left: 20px;
	border: 0;
	border-radius: 100%;
}

.btn-prev-step:hover,
.btn-prev-step:focus {
	color: rgba(var(--thm-base-rgb), 0.4);
	cursor: pointer;
}

.quiz-step .form-group {
	width: 100%;
	position: relative;
	margin: 0 auto 20px;
}

@media (min-width: 576px) {
	.quiz-step .form-group {
		max-width: 375px;
	}
}

@media (min-width: 576px) {
	.quiz-step .form-group.ranger {
		max-width: 600px;
	}
}

.quiz-step .form-control {
	border: solid 1px #aaa;
	padding: 0.75rem 1rem;
}

.form-wizard fieldset { 
	display: none; 
	border: 0 !important
}

.box-radio-btn .radio-input {
	width: 1px;
	height: 1px;
	position: absolute;
	opacity: 0;
}

.box-radio-btn .radio-input:checked+.radio-btn,
.box-radio-btn .radio-input:focus+.radio-btn {
	background-color: rgba(var(--thm-primary-rgb),.03);
	border: solid 1px var(--thm-primary);
}

.box-radio-btn.stacked {
	display: flex;
	align-items: center;
	flex-direction: column;
}

.box-radio-btn.stacked .radio-btn {
	width: 100%;
	max-width: 100%;
	height: auto;
	min-height: 65px;
	margin: 10px 0;
	padding: 15px 10px;
	justify-content: center;
}

@media (min-width: 576px) {
	.box-radio-btn.stacked .radio-btn {
		max-width: 340px;
	}
}

/** RANGE SLIDER -------------------- **/

.rangeslider,
.rangeslider__fill {
  display: block;
  -moz-box-shadow: inset 0px 1px 3px rgba(0, 0, 0, 0.3);
  -webkit-box-shadow: inset 0px 1px 3px rgba(0, 0, 0, 0.3);
  box-shadow: inset 0px 1px 3px rgba(0, 0, 0, 0.3);
  -moz-border-radius: 10px;
  -webkit-border-radius: 10px;
  border-radius: 10px;
}

.rangeslider {
  background: #7f8c8d;
  position: relative;
  margin-top: 30px;
  margin-bottom: 50px;
}

.rangeslider--horizontal {
  height: 20px;
  width: 100%;
}

.rangeslider--vertical {
  width: 20px;
  min-height: 150px;
  max-height: 100%;
  height: 100%;
}

.rangeslider--disabled {
  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=40);
  opacity: 0.4;
}

.rangeslider__fill {
  background: var(--thm-primary);
  position: absolute;
}
.rangeslider--horizontal .rangeslider__fill {
  top: 0;
  height: 100%;
}
.rangeslider--vertical .rangeslider__fill {
  bottom: 0;
  width: 100%;
}

.rangeslider__handle {
  background: white;
  border: 1px solid #ccc;
  cursor: pointer;
  display: inline-block;
  width: 40px;
  height: 40px;
  position: absolute;
  background-image: url('data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz4gPHN2ZyB2ZXJzaW9uPSIxLjEiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PGRlZnM+PGxpbmVhckdyYWRpZW50IGlkPSJncmFkIiBncmFkaWVudFVuaXRzPSJvYmplY3RCb3VuZGluZ0JveCIgeDE9IjAuNSIgeTE9IjAuMCIgeDI9IjAuNSIgeTI9IjEuMCI+PHN0b3Agb2Zmc2V0PSIwJSIgc3RvcC1jb2xvcj0iI2ZmZmZmZiIgc3RvcC1vcGFjaXR5PSIwLjAiLz48c3RvcCBvZmZzZXQ9IjEwMCUiIHN0b3AtY29sb3I9IiMwMDAwMDAiIHN0b3Atb3BhY2l0eT0iMC4xIi8+PC9saW5lYXJHcmFkaWVudD48L2RlZnM+PHJlY3QgeD0iMCIgeT0iMCIgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgZmlsbD0idXJsKCNncmFkKSIgLz48L3N2Zz4g');
  background-size: 100%;
  background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, rgba(255, 255, 255, 0)), color-stop(100%, rgba(0, 0, 0, 0.1)));
  background-image: -moz-linear-gradient(rgba(255, 255, 255, 0), rgba(0, 0, 0, 0.1));
  background-image: -webkit-linear-gradient(rgba(255, 255, 255, 0), rgba(0, 0, 0, 0.1));
  background-image: linear-gradient(rgba(255, 255, 255, 0), rgba(0, 0, 0, 0.1));
  -moz-box-shadow: 0 0 8px rgba(0, 0, 0, 0.3);
  -webkit-box-shadow: 0 0 8px rgba(0, 0, 0, 0.3);
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.3);
  -moz-border-radius: 50%;
  -webkit-border-radius: 50%;
  border-radius: 50%;
}
.rangeslider__handle:after {
  content: "";
  display: block;
  width: 18px;
  height: 18px;
  margin: auto;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-image: url('data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz4gPHN2ZyB2ZXJzaW9uPSIxLjEiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PGRlZnM+PGxpbmVhckdyYWRpZW50IGlkPSJncmFkIiBncmFkaWVudFVuaXRzPSJvYmplY3RCb3VuZGluZ0JveCIgeDE9IjAuNSIgeTE9IjAuMCIgeDI9IjAuNSIgeTI9IjEuMCI+PHN0b3Agb2Zmc2V0PSIwJSIgc3RvcC1jb2xvcj0iIzAwMDAwMCIgc3RvcC1vcGFjaXR5PSIwLjEzIi8+PHN0b3Agb2Zmc2V0PSIxMDAlIiBzdG9wLWNvbG9yPSIjZmZmZmZmIiBzdG9wLW9wYWNpdHk9IjAuMCIvPjwvbGluZWFyR3JhZGllbnQ+PC9kZWZzPjxyZWN0IHg9IjAiIHk9IjAiIHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiIGZpbGw9InVybCgjZ3JhZCkiIC8+PC9zdmc+IA==');
  background-size: 100%;
  background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, rgba(0, 0, 0, 0.13)), color-stop(100%, rgba(255, 255, 255, 0)));
  background-image: -moz-linear-gradient(rgba(0, 0, 0, 0.13), rgba(255, 255, 255, 0));
  background-image: -webkit-linear-gradient(rgba(0, 0, 0, 0.13), rgba(255, 255, 255, 0));
  background-image: linear-gradient(rgba(0, 0, 0, 0.13), rgba(255, 255, 255, 0));
  -moz-border-radius: 50%;
  -webkit-border-radius: 50%;
  border-radius: 50%;
}
.rangeslider__handle:active, .rangeslider--active .rangeslider__handle {
  background-image: url('data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz4gPHN2ZyB2ZXJzaW9uPSIxLjEiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PGRlZnM+PGxpbmVhckdyYWRpZW50IGlkPSJncmFkIiBncmFkaWVudFVuaXRzPSJvYmplY3RCb3VuZGluZ0JveCIgeDE9IjAuNSIgeTE9IjAuMCIgeDI9IjAuNSIgeTI9IjEuMCI+PHN0b3Agb2Zmc2V0PSIwJSIgc3RvcC1jb2xvcj0iIzAwMDAwMCIgc3RvcC1vcGFjaXR5PSIwLjEiLz48c3RvcCBvZmZzZXQ9IjEwMCUiIHN0b3AtY29sb3I9IiMwMDAwMDAiIHN0b3Atb3BhY2l0eT0iMC4xMiIvPjwvbGluZWFyR3JhZGllbnQ+PC9kZWZzPjxyZWN0IHg9IjAiIHk9IjAiIHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiIGZpbGw9InVybCgjZ3JhZCkiIC8+PC9zdmc+IA==');
  background-size: 100%;
  background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, rgba(0, 0, 0, 0.1)), color-stop(100%, rgba(0, 0, 0, 0.12)));
  background-image: -moz-linear-gradient(rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.12));
  background-image: -webkit-linear-gradient(rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.12));
  background-image: linear-gradient(rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.12));
}
.rangeslider--horizontal .rangeslider__handle {
  top: -10px;
  touch-action: pan-y;
  -ms-touch-action: pan-y;
}
.rangeslider--vertical .rangeslider__handle {
  left: -10px;
  touch-action: pan-x;
  -ms-touch-action: pan-x;
}

input[type="range"]:focus + .rangeslider .rangeslider__handle {
  -moz-box-shadow: 0 0 8px rgba(255, 0, 255, 0.9);
  -webkit-box-shadow: 0 0 8px rgba(255, 0, 255, 0.9);
  box-shadow: 0 0 8px rgba(255, 0, 255, 0.9);
}

.range_output {
	font-size: 28px;
	font-weight: 600;
	text-align: center;
}

output.monetary::before {
	content: '$';
}

output.percentage::after {
	content: '%';
}

.range-slider-range {
	font-size: 13px;
	font-weight: 400;
	color: #aaa;
	display: flex;
	justify-content: space-between;
}

.percentage .rangeslider {
	margin-bottom: 15px;
}

.step-note {
	font-size: 12px;
	text-align: center;
	margin-top: 20px;
	line-height: 1.2rem;
}

@media (max-width: 1499px) {
	.step-note {
		margin-top: 15px;
	}
}

@media (min-width: 576px) {
	.step-note {
		
	}
}

.quiz-step .form-control.input-error {
	border: 1px solid rgba(252,108,108, 0.5);
	background-color: rgba(252,108,108, 0.2);
}

.btn.btn-black {
	padding: 0.5rem 2rem;
}

.hide,
.input-container input[type=radio],
.input-container input[type=checkbox],
.input-container-icons input[type=radio],
.input-container-icons input[type=checkbox],
.input-radio-container input[type=radio],
.input-radio-container-small input[type=radio] {
	display: none;
}

.input-container  input[type=radio]+label,
.input-container-icons input[type=radio]+label,
.input-radio-container input[type=radio]+label  {
	padding: 50px 30px;
	box-shadow: 1px 10px 30px rgb(0 0 0 / 2%);
	background: #fff;
	border-radius: 10px;
	padding: 50px 30px;
	margin: 10px;
	cursor: pointer;
	transition: all .2s ease-out;
	position: relative;
	top: 0;
	width: auto;
	text-align: center;
}

.input-container  input[type=radio]+label:hover,
.input-container-icons  input[type=radio]+label:hover {
	background: rgba(252,248,209, 0.5);
}

.input-container input[type=checkbox]:checked+label i,
.input-container input[type=checkbox]+label:hover i,
.input-container input[type=checkbox]:checked+label input[type=radio]+label:before,
.input-container-icons input[type=checkbox]:checked+label i,
.input-container-icons input[type=checkbox]+label:hover i,
.input-container-icons input[type=checkbox]:checked+label input[type=radio]+label:before {
	border:5px solid #cff128;
	height:75px;
	width:75px
}

.input-radio-container input[type=radio]+label {
	background: #fff;
	box-shadow: 1px 2px 6px rgb(0 0 0 / 8%);
	border-radius: 100px;
	padding: 10px;
	text-align: left;
	width: 100%;
	cursor: pointer;
	margin-bottom: 0;
	max-width: 540px;
	font-size: 18px;
	line-height: 1.2;
	display: flex;
	align-items: center;
}

@media (min-width: 1200px) {
	.input-radio-container input[type=radio]+label {
		font-size: 14px;
	}
}
.input-radio-container input[type=radio]+label:before {
	border-radius: 100px;
	display: block;
	height: 30px;
	width: 30px;
	background-color: #eaeced;
	float: left;
	margin-right: 14px;
	content: " ";
	background-repeat: no-repeat;
	background-position: 50%;
	transition: all 0.3s ease-in-out;
	padding-right: 30px;
}

@media (min-width: 1200px) {
	.input-radio-container input[type=radio]+label:before  {
		 font-size: 18px;
	}
}

.input-radio-container input[type=radio]+label:hover {
	background-color:#fffdf3;
	color:#000;
}
.input-radio-container input[type=radio]:checked+label:before,
.input-radio-container input[type=radio]+label:hover:before {
	background-color: #cff128;
	background-size: 50% auto;
	background-image: url(data:image/svg+xml;charset=utf-8;base64,PHN2ZyB2aWV3Qm94PScwIDAgMzE1LjI3IDI0MS4xMScgeG1sbnM9J2h0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnJz48cGF0aCBkPSdNMzA1LjMgOS45N2EzNC4zMiAzNC4zMiAwIDAwLTQ4LjM4IDBMMTA4LjMgMTU4LjU5bC00OS45NC00OS45NGEzNC4zMiAzNC4zMiAwIDAwLTQ4LjM4IDAgMzQuMyAzNC4zIDAgMDAwIDQ4LjM4bDc0LjEgNzQuMWEzNC4zOCAzNC4zOCAwIDAwNDguNDQgMEwzMDUuMyA1OC4zNWEzNC4zMiAzNC4zMiAwIDAwMC00OC4zOHonIGZpbGw9JyNmZmYnLz48L3N2Zz4=);
	transition: all 0.3s ease-in-out;
	opacity:.5
}
.quiz-step .input-radio-container {
	display: flex;
	-webkit-box-orient: horizontal;
	-webkit-box-direction: normal;
	flex-direction: row;
	flex-wrap: wrap;
	-webkit-box-flex: 1;
	flex-grow: 1;
	flex-basis: 100%;
	justify-content: space-around;
	padding: 0 0;
}

@media (min-width: 1200px) {
	.quiz-step .input-radio-container {
		padding: 0 15%;
	}
}

.quiz-step .form-group.w100 {
	width: 100%;
	display: block;
	margin-bottom: 5px;
}

@media (min-width: 576px) {
	.quiz-step .form-group.w100 {
		max-width: 100%;
	}
}

.goback {
	position: relative;
	width: 100%;
	overcflow: hidden;
	text-align: center;
	padding: 2rem 0 0 0;
	font-size: 1rem;
}


.goback a:link,
.goback a:visited {
	text-decoration: none;
	color: rgba(51, 51, 51, 1);
}

.goback a:hover {
	text-decoration: underline;
	color: rgba(51, 51, 51, 0.75);
}

.logo-container {
	position: relative;
	width: 100%;
	overflow: hidden;
	margin: 0 auto;
}

.progress-bar-container {
	position: relative;
	text-align: center;
	padding: 30px 0 0 0;
}

.progress-bar-container .loading{
	position: relative;
	max-width: 500px;
	margin: 10px auto;
	height: 10px;
	background:#fff;
	border-radius:10px;
	display:flex;
	align-items:center;
	border: 1px solid #3572a7;
	box-shadow: 1px 1px 4px rgb(0 0 0 / 10%);
}
.progress-bar-container .loading span{
	position:absolute;
	width:0%;
	height:100%;
	background-color:#395975;
	border-radius: 15px;
}
.progress-bar-container i {
	color:#395975;
	font-size: 1.4em;
	font-style: normal;
}

.progresstext {
	margin: 18px auto 35px;
	font-size: 1rem;
	font-weight: 600;
	line-height: 1.156;
	position: relative;
	left: -15px;
}

.progresstext img {
	width: 23px;
	margin-right: 5px;
	display: inline-block;
	vertical-align: top;
	position: relative;
	top: 2px;
	height: auto;
	max-width: 100%;
}

.progresstext span {
	display: inline-block;
	text-align: center;
}
