@import url('https://fonts.googleapis.com/css2?family=Asap:ital,wght@0,400;0,500;0,600;0,700;1,400;1,500;1,600;1,700&display=swap');

/* GLOBAL CSS */
html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, img, ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt, var, b, u, i, center, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, embed, figure, figcaption, footer, header, hgroup, menu, nav, output, ruby, section, summary, time, mark, audio, video, body {
	margin: 0;
	padding: 0;
	border: 0;
	-webkit-font-smoothing: antialiased;
}

/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section {
	display: block;
}
* {
	outline: none;
	-webkit-font-smoothing: antialiased;
}
*, *:before, *:after {
	-moz-box-sizing: border-box;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
}
body, button, input, textarea, select {
	color: #000;
	font-size: 14px;
	line-height: 1.2;
	font-family: 'Asap', Helvetica, sans-serif;
	font-weight: normal;
	-webkit-appearance: none;
}
select {
	-moz-appearance: none;
	-webkit-appearance: none;
}
textarea, input {
	-webkit-focus-ring-color: none;
}
button {
	cursor: pointer;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}
*:focus {
	outline: none;
}
html {
	-webkit-text-size-adjust: none;
	-webkit-image-size-adjust: none;
}
body {
	background-repeat: no-repeat;
	background-attachment: fixed;
	vertical-align: baseline;
	position: relative;
}
html, body {
	width: 100%;
	background-color: #fff;
}
.clear {
	clear: both;
	display: block;
}
.clear_after:after {
	clear: both;
	display: block;
	content: "";
}
ol, ul {
	list-style: none;
}
blockquote, q {
	quotes: none;
}
blockquote:before, blockquote:after, q:before, q:after {
	content: '';
	content: none;
}
/* END GLOBAL CSS */





/* ! ALL */
body {
	position: relative;
}

/* ! ALL :: TEXT */
h1 {
	font-size: 30px;
	line-height: 1.2;
	color: #ffffff;
	font-weight: 700;
}
h2 {
	font-size: 24px;
	line-height: 1.2;
	color: #ffffff;
	font-weight: 700;
}
h3 {
	font-size: 18px;
	line-height: 1.2;
	color: #ffffff;
	font-style: italic;
	font-weight: 600;
}
h4 {
	font-size: 14px;
	line-height: 1.2;
	color: #ffffff;
	font-weight: 400;
}
h5 {
	font-size: 12px;
	line-height: 1.2;
	color: #ffffff;
	font-weight: 400;
}
h6 {
	font-size: 10px;
	line-height: 1.2;
	color: #ffffff;
	font-weight: 400;
}
p {
	font-size: 12px;
	line-height: 1.2;
	color: #ffffff;
	font-weight: 400;
	margin-bottom: 20px;
}
p:last-child {
	margin-bottom: 0;
}
ul li,
ol li {
	font-size: 12px;
	line-height: 1.2;
	color: #ffffff;
	padding-left: 8px;
	margin-left: 20px;
	font-weight: 400;
	margin-bottom: 10px;
}
ul li:last-child,
ol li:last-child{
	margin-bottom: 0;
}
ul li {
	list-style: disc;
}
ol li {
	list-style: decimal;
}
.btn,
.btn:focus,
.btn:hover {
	text-decoration: none;
	outline: none;
	border: none;
	display: block;
	cursor: pointer;
	box-shadow: none;
}
@media (min-width: 992px) {
	h1 {
		font-size: 55px;
	}
	h2 {
		font-size: 28px;
	}
	h3 {
		font-size: 22px;
	}
	h4 {
		font-size: 16px;
	}
	h5 {
		font-size: 14px;
	}
	h6 {
		font-size: 12px;
	}
	p {
		font-size: 14px;
	}
	ul li,
	ol li {
		font-size: 14px;
	}
}

/* ! ALL :: IMG */
img {
	display: block;
	max-width: 100%;
}

/* ! ALL :: PAGE */
.page {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-flex-wrap: wrap;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	min-height: 100vh;
	flex-direction: column;
	background: linear-gradient(180deg, #62dbce 0%, #4db1ad 47.29%, #3989bc 100%);
}
.main-dashboard {
	position: relative;
	width: 100%;
	min-height: 100%;
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	flex: 1 1 auto;
	-ms-flex: 1 1 auto;
	-webkit-flex: 1 1 auto;
	-webkit-flex-wrap: wrap;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	flex-direction: column;
	overflow: hidden;
}





/* ! COOKIE */
.cookie-bar {
	position: fixed;
	bottom: 0;
	left: 0;
	display: none;
	width: 100%;
	background: #00a28f;
	color: #fff;
	text-align: center;
	z-index: 99;
}
.cookie-bar .cookie-bar-inner {
	padding: 40px 20px 20px;
	display: inline-block;
	width: 100%;
	position: relative;
}
.cookie-bar .cookie-bar-inner .cookie-close {
	position: absolute;
	right: 20px;
	top: 20px;
	width: 16px;
	height: 16px;
	background: url('../images/icon-close-white.svg') no-repeat center center/16px;
}
.cookie-bar .cookie-bar-inner p {
	font-size: 14px;
	margin: 0 0 20px;
	line-height: 1.4;
}
.cookie-bar .cookie-bar-inner p a {
	color: blue;
	text-decoration: underline;
}
.cookie-bar .cookie-bar-inner .cookie-btn {
	display: inline-block;
	text-transform: uppercase;
	font-size: 12px;
	line-height: 1.4;
	text-decoration: none;
	position: relative;
	cursor: pointer;
	-webkit-text-stroke: 0;
	color: #00a28f;
	background-color: #fff;
	border: 2px solid #00a28f;
	padding: 10px 35px 10px 20px;
	font-weight: 700;
}
.cookie-bar .cookie-bar-inner .cookie-btn:after {
	position: absolute;
	content: "";
	right: 15px;
	top: 49%;
	width: 9px;
	height: 10px;
	-webkit-transform: translateY(-50%);
	-moz-transform: translateY(-50%);
	transform: translateY(-50%);
	background: url('../images/icon-arr-right-green.svg') no-repeat center center/100%;
}
@media (min-width: 768px) {
	.cookie-bar .cookie-bar-inner {
		padding: 40px 100px 20px;
	}
	.cookie-bar .cookie-bar-inner p {
		font-size: 16px;
	}
}
@media (min-width: 992px) {
	.cookie-bar .cookie-bar-inner .cookie-btn {
		font-size: 18px;
	}
	.cookie-bar .cookie-bar-inner .cookie-btn:after {
		height: 16px;
	}
}





/* ! HEADER */
.header {
	background: #ffffff;
	padding: 15px 20px;
	width: 100%;
	box-shadow: 0px 3px 8px #00000029;
}
.header #logo {
	display: block;
	margin: 0 auto;
	max-width: 120px;
}
@media (min-width: 1200px) {
	.header {
		padding: 20px 20px;
	}
	.header #logo {
		max-width: 140px;
	}
}


/* ! BODY :: LOGO */
.body .boxer-logo {
	position: absolute;
	top: 15px;
	left: 30px;
}
.body #logo {
	display: block;
	margin: 0 auto;
	max-width: 120px;
}
@media (min-width: 1200px) {
	.body .boxer-logo {
		top: 20px;
		left: 40px;
	}
	.body #logo {
		max-width: 140px;
	}
}


/* ! SUB PAGE :: LOGO */
.header {
	background: transparent;
	box-shadow: none;
	padding: 15px 30px;
}
.header #logo {
	margin: 0;
}
@media (min-width: 1200px) {
	.header {
		padding: 20px 40px;
	}
}





/* ! FOOTER */
.footer {
	position: relative;
	width: 100%;
}
.footer .footer-dashboard {
	padding: 10px 40px;
	background: rgba(80, 182, 171, 0.5);
	text-align: center;
	border-radius: 20px 20px 0px 0px;
}
.footer .boxer-noted {
	border-bottom: 1px solid rgba(255, 255, 255, 0.25);
	padding-bottom: 10px;
	margin-bottom: 10px;
	max-width: 1166px;
	margin: 0 auto 10px;
}
.footer .boxer-noted p {
	color: #ffffff;
	margin: 0 auto;
}
.footer .boxer-copyright {
	max-width: 1166px;
	margin: 0 auto;
}
.footer .boxer-copyright p {
	color: #ffffff;
	font-weight: 400;
	font-size: 12px;
	margin: 0 auto;
}





/* ! BODY */
.body {
	position: relative;
	width: 100%;
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	flex: 1 1 auto;
	-ms-flex: 1 1 auto;
	-webkit-flex: 1 1 auto;
	-webkit-flex-wrap: wrap;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	flex-direction: column;
	-webkit-align-content: center;
	-ms-align-content: center;
	align-content: center;
	-webkit-align-items: center;
	-ms-align-items: center;
	align-items: center;
	-webkit-justify-content: center;
	-ms-justify-content: center;
	justify-content: center;
	padding: 75px 0;
	z-index: 2;
}
.body .content-area {
	position: relative;
	width: 100%;
}





/* ! MAIN PAGE */
#page-main .main-dashboard {
	background: url('../images/home-background.png') no-repeat center;
	background-size: cover;
}
#page-main .main-dashboard:after {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: #0000004d;
	mix-blend-mode: multiply;
}
#page-main .body {
	padding: 50px 0;
}
#page-main .warpper {
	text-align: center;
	max-width: 460px;
	margin: 0 auto;
	padding: 0 20px;
}
#page-main h1 {
	max-width: 380px;
	margin: 0 auto 25px;
}
#page-main h4 {
	max-width: 460px;
	margin: 0 auto 30px;
	line-height: 1.4;
}
#page-main .boxer-btn {
	max-width: 240px;
	margin: 0 auto 50px;
}
#page-main .btn {
	background: #ffffff;
	color: #50b6ab;
	font-size: 16px;
	font-weight: 700;
	padding: 15px 20px;
	line-height: 1.4;
	border-radius: 36px;
}
#page-main .btn:hover {
	background: #50b6ab;
	color: #ffffff;
}
#page-main .boxer-noted {
	background: rgba(0, 0, 0, 0.25);
	max-width: 650px;
	margin: 0 auto;
	padding: 20px 15px;
}
#page-main .boxer-noted p {
	max-width: 540px;
	margin: 0 auto;
	line-height: 1.4;
}
@media (min-width: 992px) {
	#page-main .warpper {
		max-width: 650px;
		padding: 0;
	}
	#page-main h1 {
		max-width: 650px;
	}
	#page-main .boxer-btn {
		max-width: 300px;
	}
	#page-main .btn {
		font-size: 18px;
	}
	#page-main .boxer-noted {
		padding: 25px 20px;
	}
}
@media (min-width: 1200px) {
	#page-main .body {
		padding: 75px 0;
	}
	#page-main h1 {
		margin: 0 auto 35px;
	}
	#page-main h4 {
		margin: 0 auto 40px;
	}
	#page-main .boxer-btn {
		margin: 0 auto 60px;
	}
}





/* ! SUB PAGE */
.page-app .btn-back {
	color: #ffffff;
	font-size: 15px;
	font-weight: 500;
	line-height: 1.4;
	background: url('../images/icon-previous.png') no-repeat 17px center;
	background-size: 10px;
	padding: 10px 27px 10px 37px;
	position: absolute;
	top: 15px;
	left: 2%;
	z-index: 4;
}
.page-app .btn-retake {
	color: #ffffff;
	font-size: 15px;
	font-weight: 500;
	line-height: 1.4;
	background: url('../images/icon-retake.png') no-repeat 17px center;
	background-size: 17px;
	padding: 10px 27px 10px 44px;
	position: absolute;
	top: 15px;
	right: 2%;
	z-index: 4;
}
.page-app .btn-next,
.page-app .btn-submit {
	color: #ffffff;
	font-size: 15px;
	font-weight: 500;
	line-height: 1.4;
	background: url('../images/icon-next.png') no-repeat right 17px center;
	background-size: 10px;
	padding: 10px 37px 10px 27px;
	position: absolute;
	bottom: 25px;
	right: 2%;
	z-index: 4;
	border: 1px solid #ffffff;
	border-radius: 24px;
	transition:  none;
	white-space: nowrap;
}
.page-app .btn-next:hover,
.page-app .btn-submit:hover {
	color: #50b6ab;
	background-image: url('../images/icon-next-tradewind-2.png');
	background-color: #ffffff;
}

/* ! SUB PAGE :: FORM - CHECKBOX */
.page-app .boxer-checkbox {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-align-content: center;
	-ms-align-content: center;
	align-content: center;
	-webkit-align-items: center;
	-ms-align-items: center;
	align-items: center;
}
.page-app .boxer-checkbox .box-checkbox {
	width: 100%;
}
.page-app .boxer-checkbox .checkbox-group {
	width: 100%;
	display: block;
}

/* ! SUB PAGE :: FORM - CUSTOM CHECKBOX */
.page-app .boxer-checkbox .custom-checkbox .checkbox-label {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-align-content: center;
	-ms-align-content: center;
	align-content: center;
	-webkit-align-items: center;
	-ms-align-items: center;
	align-items: center;
	-webkit-justify-content: center;
	-ms-justify-content: center;
	justify-content: center;
	flex-direction: column;
	width: 100%;
	position: relative;
	cursor: pointer;
	background-color: #ffffff;
	border-radius: 12px;
	min-height: 380px;
	padding: 20px;
	max-width: 290px;
	margin: 0 auto 35px;
}
.page-app .boxer-checkbox .custom-checkbox .checkbox-label .checkbackground {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: transparent;
	border-radius: 12px;
	z-index: 2;
}
.page-app .boxer-checkbox .custom-checkbox .checkbox-label:hover .input-checkbox:not([disabled]) ~ .checkbackground {
	background-color: #acfff8;
}
.page-app .boxer-checkbox .custom-checkbox .input-checkbox,
.page-app .boxer-checkbox .custom-checkbox .checkmark {
	position: absolute;
	top: 0;
	left: 0;
	background: transparent;
	width: 100%;
	height: 100%;
	border: none;
	display: block;
	padding: 0;
	margin: 0;
	z-index: 4;
	border-radius: 12px;
}
.page-app .boxer-checkbox .custom-checkbox .input-checkbox {
	opacity: 0;
}
.page-app .boxer-checkbox .custom-checkbox .input-checkbox:checked ~ .checkbackground {
	background-color: #acfff8;
}
.page-app .boxer-checkbox .custom-checkbox .input-checkbox:checked ~ .checkmark {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(80, 182, 171, 0.5);
}
.page-app .boxer-checkbox .custom-checkbox .checkcontent {
	position: relative;
	z-index: 3;
}
.page-app .boxer-checkbox .custom-checkbox .checkimg {
	margin: 0 auto 40px;
}
.page-app .boxer-checkbox .custom-checkbox .checkimg img {
	max-height: 100px;
	margin: 0 auto;
}
.page-app .boxer-checkbox .custom-checkbox .checkimg .box-hover {
	position: absolute;
	top: 0;
	left: 100%;
	z-index: 20;
	padding-left: 10px;
	overflow: hidden;
	width: 0;
	height: 0;
}
.page-app .boxer-checkbox .custom-checkbox .checkimg .box-hover-bottom {
	top: auto;
	bottom: 0;
}
.page-app .boxer-checkbox .custom-checkbox .checkhoverimg img:hover ~ .box-hover,
.page-app .boxer-checkbox .custom-checkbox .checkhoverimg .box-hover:hover {
	display: none;
	width: auto;
	height: auto;
}
.page-app .boxer-checkbox .custom-checkbox .checkimg .hover-content {
	-webkit-backdrop-filter: blur(14.78px) brightness(99.89%);
	backdrop-filter: blur(14.78px) brightness(99.89%);
	background-color: #000000b4;
	border-radius: 38px;
	text-align: center;
	padding: 10px;
	opacity: 0;
	transition: opacity .5s ease;
	-ms-transition: opacity .5s ease;
	-webkit-transition: opacity .5s ease;
	width: 185px;
}
.page-app .boxer-checkbox .custom-checkbox .checkhoverimg img:hover ~ .box-hover .hover-content,
.page-app .boxer-checkbox .custom-checkbox .checkhoverimg .box-hover:hover .hover-content {
	opacity: 1;
}
.page-app .boxer-checkbox .custom-checkbox .checkimg .hover-img {
	width: 100%;
}
.page-app .boxer-checkbox .custom-checkbox .checkimg .hover-img img {
	max-height: none;
	max-width: none;
	width: 100%;
	border-radius: 32px;
}
.page-app .boxer-checkbox .custom-checkbox .checkimg .hover-text {
	display: block;
	font-size: 16px;
	color: #ffffff;
	font-weight: 400;
	padding: 10px 0 0;
	line-height: 1;
}
.page-cn .boxer-checkbox .custom-checkbox .checkimg .hover-text {
	line-height: 1.2;
}
.page-app .boxer-checkbox .custom-checkbox .checktext {
	display: block;
	font-size: 14px;
	color: #000000;
	font-weight: 400;
}
@media (min-width: 992px) {
	.page-app .boxer-checkbox .custom-checkbox .checkbox-label {
		margin: 0 auto;
	}
	.page-app .boxer-checkbox .custom-checkbox .checkhoverimg img:hover ~ .box-hover,
	.page-app .boxer-checkbox .custom-checkbox .checkhoverimg .box-hover:hover {
		display: block;
	}
	.page-app .boxer-checkbox .custom-checkbox .checkimg .hover-text {
		font-size: 20px;
	}
	.page-app .boxer-checkbox .custom-checkbox .checktext {
		font-size: 18px;
	}
}

/* ! SUB PAGE :: FORM - CUSTOM CHECKBOX */
.page-app .boxer-checkbox .tick-checkbox .checkbox-label {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-align-content: center;
	-ms-align-content: center;
	align-content: center;
	-webkit-align-items: center;
	-ms-align-items: center;
	align-items: center;
	-webkit-justify-content: center;
	-ms-justify-content: center;
	justify-content: center;
	width: 100%;
	position: relative;
	cursor: pointer;
	margin: 0 auto;
	padding: 0 0 0 90px;
}
.page-app .boxer-checkbox .tick-checkbox .input-checkbox,
.page-app .boxer-checkbox .tick-checkbox .checkmark {
	position: absolute;
	top: 50%;
	left: 0;
	background: #ffffff;
	width: 40px;
	height: 40px;
	border: none;
	border-radius: 10px;
	display: block;
	padding: 0;
	margin: -20px 0 0;
	z-index: 4;
}
.page-app .boxer-checkbox .tick-checkbox .input-checkbox {
	opacity: 0;
}
.page-app .boxer-checkbox .tick-checkbox .input-checkbox:checked + .checkmark:after {
	content: '';
	position: absolute;
	left: 14px;
	top: 7px;
	width: 12px;
	height: 24px;
	border: solid #000000;
	border-width: 0 5px 4px 0;
	-webkit-transform: rotate(45deg);
	-ms-transform: rotate(45deg);
	transform: rotate(45deg);
}
.page-app .boxer-checkbox .tick-checkbox .checkcontent {
	position: relative;
	z-index: 3;
}
.page-app .boxer-checkbox .tick-checkbox .checktext {
	display: block;
	font-size: 16px;
	color: #ffffff;
	font-weight: 400;
	line-height: 1.4;
}
@media (min-width: 992px) {
	.page-app .boxer-checkbox .tick-checkbox .checktext {
		font-size: 22px;
	}
}





/* ! START PAGE */
#page-start .warpper {
	text-align: center;
	margin: 0 auto;
	padding: 0 20px;
}
#page-start .form {
	position: relative;
	max-width: 480px;
	margin: 0 auto;
	padding: 20px 0;
}
#page-start h3 {
	max-width: 580px;
	margin: 0 auto 35px;
}
@media (min-width: 992px) {
	#page-start .warpper {
		padding: 0 0;
	}
	#page-start .form {
		max-width: 1200px;
	}
}

/* ! START PAGE :: CUSTOM CHECKBOX */
@media (min-width: 992px) {
	#page-start .boxer-checkbox .custom-checkbox .checktext {
		min-height: 57.59px;
	}
}

/* ! START PAGE :: BACKDROP FILTER */
#page-start .backdrop-filter {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-flex-wrap: wrap;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	flex-direction: column;
	-webkit-align-content: center;
	-ms-align-content: center;
	align-content: center;
	-webkit-align-items: center;
	-ms-align-items: center;
	align-items: center;
	-webkit-justify-content: center;
	-ms-justify-content: center;
	justify-content: center;
	-webkit-backdrop-filter: blur(14.78px) brightness(99.89%);
	backdrop-filter: blur(14.78px) brightness(99.89%);
	background-color: #000000b4;
	border-radius: 12px;
	z-index: 10;
	text-align: left;
	padding: 50px;
}
#page-start .backdrop-filter .boxer-understand {
	max-width: 620px;
	margin: 0 auto;
}
#page-start .backdrop-filter .box-submit {
	position: absolute;
	bottom: 50px;
	right: 50px;
}





/* ! QUESTION PAGE */
.page-question .body {
	-webkit-justify-content: flex-start;
	-ms-justify-content: flex-start;
	justify-content: flex-start;
}
.page-question .warpper {
	text-align: center;
	margin: 0 auto;
	padding: 0;
}
.page-question .form {
	position: relative;
	padding: 20px 0;
}
.page-question .form .question-dashboard {
	margin: 0 auto;
	padding: 35px 0 0;
	position: relative;
}
.page-question .form .question {
	position: absolute;
	top: 35px;
	left: 0;
	width: 100%;
	z-index: -10;
	background: rgba(0, 0, 0, 0);
	display: none;
}
.page-question .form .question.show {
	position: relative;
	top: 0;
	z-index: 3;
}
.page-question .form .question.hide {
	position: absolute;
	top: 35px;
	z-index: -10;
}
.page-question h2 {
	margin: 0 auto 10px;
}
.page-question h3 {
	margin: 0 auto 10px;
}
.page-question p {
	margin: 0 auto 25px;
}
.page-question b {
	font-weight: 600;
}
.page-question .btn-next {
	z-index: auto;
}
.page-question .btn-submit {
	display: none;
	z-index: auto;
}
@media (min-width: 992px) {
}

/* ! QUESTION PAGE :: PROGRESS */
.page-question .question-progress {
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-align-content: center;
	-ms-align-content: center;
	align-content: center;
	-webkit-align-items: center;
	-ms-align-items: center;
	align-items: center;
	margin: 0 auto;
}
.page-question .question-progress .progress {
	margin: 0 5px;
	height: 4px;
	border-radius: 2px;
	flex: 1 1 auto;
	-ms-flex: 1 1 auto;
	-webkit-flex: 1 1 auto;
	background-color: rgba(255, 255, 255, 0.3);
}
.page-question .question-progress .progress .progress-bar {
	border-radius: 2px;
	background-color: #ffffff;
	width: 0;
	transition: width .3s ease;
	-ms-transition: width .3s ease;
	-webkit-transition: width .3s ease;
	transition-delay: .2s;
	-ms-transition-delay: .2s;
	-webkit-transition-delay: .2s;
}
.page-question .question-progress .progress.show .progress-bar {
	width: 100%;
	transition-delay: 0s;
	-ms-transition-delay: 0s;
	-webkit-transition-delay: 0s;
}
.page-question .question-progress .progress.no-animate .progress-bar {
	transition: none;
	-ms-transition: none;
	-webkit-transition: none;
	transition-delay: 0;
	-ms-transition-delay: 0;
	-webkit-transition-delay: 0;
}
.page-question .question-progress .progress-no {
	width: 0;
	transition: width .2s ease;
	-ms-transition: width .2s ease;
	-webkit-transition: width .2s ease;
	transition-delay: 0s;
	-ms-transition-delay: 0s;
	-webkit-transition-delay: 0s;
	overflow: hidden;
}
.page-question .question-progress .progress-no.show {
	width: 30px;
	transition-delay: .3s;
	-ms-transition-delay: .3s;
	-webkit-transition-delay: .3s;
}
.page-question .question-progress .progress-no.no-animate {
	transition: none;
	-ms-transition: none;
	-webkit-transition: none;
	transition-delay: 0;
	-ms-transition-delay: 0;
	-webkit-transition-delay: 0;
}
.page-question .question-progress .progress-no.show.active {
	width: 30px;
}
.page-question .question-progress .progress-no .number {
	border-radius: 10px;
	height: 20px;
	width: 20px;
	border: 3px solid #ffffff;
	text-align: center;
	font-size: 12px;
	font-style: normal;
	font-weight: 700;
	color: #ffffff;
	line-height: 14px;
	margin: 0 auto;
}
.page-question .question-progress .progress-no.active .number {
	border-radius: 15px;
	height: 30px;
	width: 30px;
	line-height: 24px;
}
@media (min-width: 992px) {
	.page-question .question-progress .progress-no.show {
		width: 40px;
	}
	.page-question .question-progress .progress-no.show.active {
		width: 40px;
	}
	.page-question .question-progress .progress-no .number {
		border-radius: 15px;
		height: 30px;
		width: 30px;
		border: 4px solid #ffffff;
		font-size: 14px;
		line-height: 22px;
	}
	.page-question .question-progress .progress-no.active .number {
		border-radius: 20px;
		height: 40px;
		width: 40px;
		line-height: 32px;
	}
}

/* ! QUESTION PAGE :: QUESTION 01 */
.page-question .boxer-q1 {
	max-width: 480px;
	margin: 0 auto;
}
.page-question .boxer-q1 .custom-checkbox .checkbox-label {
	min-height: 0;
	padding: 10px;
	border-radius: 22px;
	margin-bottom: 15px;
}
.page-question .boxer-q1 .checkbox-group .row > div:last-child .custom-checkbox .checkbox-label {
	margin-bottom: 0;
}
.page-question .boxer-q1 .custom-checkbox .input-checkbox,
.page-question .boxer-q1 .custom-checkbox .checkmark {
	border-radius: 22px;
	z-index: auto;
}
.page-question .boxer-q1 .custom-checkbox .checkcontent {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-align-content: center;
	-ms-align-content: center;
	align-content: center;
	-webkit-align-items: center;
	-ms-align-items: center;
	align-items: center;
	width: 100%;
	z-index: auto;
}
.page-question .boxer-q1 .custom-checkbox .checkimg {
	position: relative;
	margin: 0 auto;
}
.page-question .boxer-q1 .custom-checkbox .checkimg img {
	position: relative;
	max-width: 64px;
	max-height: none;
	z-index: 4;
}
.page-question .boxer-q1 .custom-checkbox .checktext {
	position: relative;
	flex: 1 1 auto;
	-ms-flex: 1 1 auto;
	-webkit-flex: 1 1 auto;
	text-align: left;
	padding: 0 18px;
	z-index: 0;
	line-height: 1;
}
.page-question.page-cn .boxer-q1 .custom-checkbox .checktext {
	line-height: 1.2;
}
@media (min-width: 992px) {
	.page-question .boxer-q1 {
		max-width: 920px;
	}
	.page-question .boxer-q1 .custom-checkbox .checkbox-label {
		border-radius: 37px;
	}
	.page-question .boxer-q1 .custom-checkbox .input-checkbox,
	.page-question .boxer-q1 .custom-checkbox .checkmark {
		border-radius: 37px;
	}
	.page-question .boxer-q1 .checkbox-group .row > div:nth-last-child(-n+2) .custom-checkbox .checkbox-label {
		margin-bottom: 0;
	}
	.page-question .boxer-q1 .custom-checkbox .checkimg img {
		max-width: 103px;
	}
}
@media (min-width: 1200px) {
	.page-question .boxer-q1 .checkbox-group .row > div:nth-last-child(-n+3) .custom-checkbox .checkbox-label {
		margin-bottom: 0;
	}
}

/* ! QUESTION PAGE :: QUESTION 02 */
.page-question .question-02 h3 {
	margin: 0 auto 25px;
}
.page-question .boxer-q2 {
	max-width: 480px;
	margin: 0 auto;
}
.page-question .boxer-q2 .custom-checkbox .checkbox-label {
	padding: 20px;
	border-radius: 37px;
	margin-bottom: 15px;
	min-width: 100%;
}
.page-question .boxer-q2 .checkbox-group .row > div:last-child .custom-checkbox .checkbox-label {
	margin-bottom: 0;
}
.page-question .boxer-q2 .custom-checkbox .input-checkbox,
.page-question .boxer-q2 .custom-checkbox .checkmark {
	border-radius: 37px;
}
.page-question .boxer-q2 .custom-checkbox .checkbox-label .checkbackground {
	border-radius: 37px;
}
.page-question .boxer-q2 .custom-checkbox .checkcontent {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-align-content: center;
	-ms-align-content: center;
	align-content: center;
	-webkit-align-items: center;
	-ms-align-items: center;
	align-items: center;
	-webkit-justify-content: center;
	-ms-justify-content: center;
	justify-content: center;
	flex-direction: column;
	flex: 1 1 auto;
	-ms-flex: 1 1 auto;
	-webkit-flex: 1 1 auto;
}
.page-question .boxer-q2 .custom-checkbox .checkimg {
	position: relative;
	margin: 0 auto;
}
.page-question .boxer-q2 .custom-checkbox .checkimg img {
	max-height: none;
}
.page-question .boxer-q2 .custom-checkbox .checktext {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-align-content: center;
	-ms-align-content: center;
	align-content: center;
	-webkit-align-items: center;
	-ms-align-items: center;
	align-items: center;
	-webkit-justify-content: center;
	-ms-justify-content: center;
	justify-content: center;
	flex-direction: column;
	flex: 1 1 auto;
	-ms-flex: 1 1 auto;
	-webkit-flex: 1 1 auto;
	padding: 18px 0;
}
@media (min-width: 992px) {
	.page-question .boxer-q2 {
		max-width: 920px;
	}
	.page-question .boxer-q2 .checkbox-group .row > div:nth-last-child(-n+2) .custom-checkbox .checkbox-label {
		margin-bottom: 0;
	}
}

/* ! QUESTION PAGE :: QUESTION 03 */
.page-question .question-03 h3 {
	margin: 0 auto 25px;
}
.page-question .boxer-q3 {
	max-width: 480px;
	margin: 0 auto;
}
.page-question .boxer-q3 .custom-checkbox .checkbox-label {
	padding: 20px;
	border-radius: 37px;
	margin-bottom: 15px;
	min-width: 100%;
}
.page-question .boxer-q3 .checkbox-group .row > div:last-child .custom-checkbox .checkbox-label {
	margin-bottom: 0;
}
.page-question .boxer-q3 .custom-checkbox .input-checkbox,
.page-question .boxer-q3 .custom-checkbox .checkmark {
	border-radius: 37px;
}
.page-question .boxer-q3 .custom-checkbox .checkbox-label .checkbackground {
	border-radius: 37px;
}
.page-question .boxer-q3 .custom-checkbox .checkcontent {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-align-content: center;
	-ms-align-content: center;
	align-content: center;
	-webkit-align-items: center;
	-ms-align-items: center;
	align-items: center;
	-webkit-justify-content: center;
	-ms-justify-content: center;
	justify-content: center;
	flex-direction: column;
	flex: 1 1 auto;
	-ms-flex: 1 1 auto;
	-webkit-flex: 1 1 auto;
}
.page-question .boxer-q3 .custom-checkbox .checkimg {
	position: relative;
	margin: 0 auto;
}
.page-question .boxer-q3 .custom-checkbox .checkimg img {
	max-height: none;
}
.page-question .boxer-q3 .custom-checkbox .checktext {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-align-content: center;
	-ms-align-content: center;
	align-content: center;
	-webkit-align-items: center;
	-ms-align-items: center;
	align-items: center;
	-webkit-justify-content: center;
	-ms-justify-content: center;
	justify-content: center;
	flex-direction: column;
	flex: 1 1 auto;
	-ms-flex: 1 1 auto;
	-webkit-flex: 1 1 auto;
	max-width: 280px;
	margin: 0 auto;
	padding: 18px 0;
}
@media (min-width: 992px) {
	.page-question .boxer-q3 {
		max-width: 920px;
	}
	.page-question .boxer-q3 .checkbox-group .row > div:nth-last-child(-n+2) .custom-checkbox .checkbox-label {
		margin-bottom: 0;
	}
	.page-question .boxer-q3 .custom-checkbox .checktext span {
		min-height: 64.78px;
	}
}

/* ! QUESTION PAGE :: QUESTION 04 */
.page-question .question-04 h3 {
	margin: 0 auto 25px;
}
.page-question .boxer-q4 {
	max-width: 480px;
	margin: 0 auto;
}
.page-question .boxer-q4 .custom-checkbox .checkbox-label {
	min-height: 0;
	padding: 10px;
	border-radius: 22px;
	margin-bottom: 15px;
}
.page-question .boxer-q4 .checkbox-group .row > div:last-child .custom-checkbox .checkbox-label {
	margin-bottom: 0;
}
.page-question .boxer-q4 .custom-checkbox .input-checkbox,
.page-question .boxer-q4 .custom-checkbox .checkmark {
	border-radius: 22px;
	z-index: auto;
}
.page-question .boxer-q4 .custom-checkbox .checkcontent {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-align-content: center;
	-ms-align-content: center;
	align-content: center;
	-webkit-align-items: center;
	-ms-align-items: center;
	align-items: center;
	width: 100%;
	z-index: auto;
}
.page-question .boxer-q4 .custom-checkbox .checkimg {
	position: relative;
	margin: 0 auto;
}
.page-question .boxer-q4 .custom-checkbox .checkimg img {
	position: relative;
	max-height: none;
	max-width: 64px;
	z-index: 4;
}
.page-question .boxer-q4 .custom-checkbox .checknoneimg {
	width: 64px;
	min-width: 64px;
	height: 69.38px;
	background: url('../images/question-check-none.png') no-repeat center #e0e0e0fe;
	background-size: 36px;
	border-radius: 16px;
}
.page-question .boxer-q4 .custom-checkbox .checktext {
	position: relative;
	flex: 1 1 auto;
	-ms-flex: 1 1 auto;
	-webkit-flex: 1 1 auto;
	text-align: left;
	padding: 0 18px;
	z-index: 0;
	line-height: 1;
}
.page-question.page-cn .boxer-q4 .custom-checkbox .checktext {
	line-height: 1.2;
}
.page-question .boxer-q4 .custom-checkbox .checktext .noted {
	font-size: 12px;
}
.page-question .boxer-q4 .custom-checkbox .hover-text .noted {
	font-size: 12px;
}
@media (min-width: 992px) {
	.page-question .boxer-q4 {
		max-width: 920px;
	}
	.page-question .boxer-q4 .custom-checkbox .checkbox-label {
		border-radius: 37px;
	}
	.page-question .boxer-q4 .checkbox-group .row > div:nth-last-child(-n+2) .custom-checkbox .checkbox-label {
		margin-bottom: 0;
	}
	.page-question .boxer-q4 .custom-checkbox .input-checkbox,
	.page-question .boxer-q4 .custom-checkbox .checkmark {
		border-radius: 37px;
	}
	.page-question .boxer-q4 .custom-checkbox .checkimg img {
		max-width: 103px;
	}
	.page-question .boxer-q4 .custom-checkbox .checknoneimg {
		width: 103px;
		min-width: 103px;
		height: 111.64px;
		background-size: 60px;
		border-radius: 30px;
	}
	.page-question .boxer-q4 .custom-checkbox .checktext .noted {
		font-size: 14px;
	}
	.page-question .boxer-q4 .custom-checkbox .hover-text .noted {
		font-size: 14px;
	}
}
@media (min-width: 1200px) {
	.page-question .boxer-q4 .checkbox-group .row > div:nth-last-child(-n+3) .custom-checkbox .checkbox-label {
		margin-bottom: 0;
	}
}

/* ! QUESTION PAGE :: QUESTION LATEX & COMBINED 05 */
.page-question .question-lc-05 h3 {
	margin: 0 auto 25px;
}
.page-question .boxer-lc-q5 {
	max-width: 480px;
	margin: 0 auto;
}
.page-question .boxer-lc-q5 .custom-checkbox .checkbox-label {
	min-height: 0;
	padding: 10px;
	border-radius: 22px;
	margin-bottom: 15px;
}
.page-question .boxer-lc-q5 .checkbox-group .row > div:last-child .custom-checkbox .checkbox-label {
	margin-bottom: 0;
}
.page-question .boxer-lc-q5 .custom-checkbox .input-checkbox,
.page-question .boxer-lc-q5 .custom-checkbox .checkmark {
	border-radius: 22px;
	z-index: auto;
}
.page-question .boxer-lc-q5 .custom-checkbox .checkcontent {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-align-content: center;
	-ms-align-content: center;
	align-content: center;
	-webkit-align-items: center;
	-ms-align-items: center;
	align-items: center;
	width: 100%;
	z-index: auto;
}
.page-question .boxer-lc-q5 .custom-checkbox .checkimg {
	position: relative;
	margin: 0 auto;
}
.page-question .boxer-lc-q5 .custom-checkbox .checkimg img {
	position: relative;
	max-height: none;
	max-width: 64px;
	z-index: 4;
}
.page-question .boxer-lc-q5 .custom-checkbox .checknoneimg {
	width: 64px;
	min-width: 64px;
	height: 60.23px;
	background: url('../images/question-check-none.png') no-repeat center #e0e0e0fe;
	background-size: 36px;
	border-radius: 16px;
}
.page-question .boxer-lc-q5 .custom-checkbox .checktext {
	position: relative;
	flex: 1 1 auto;
	-ms-flex: 1 1 auto;
	-webkit-flex: 1 1 auto;
	text-align: left;
	padding: 0 18px;
	z-index: 0;
	line-height: 1;
}
.page-question.page-cn .boxer-lc-q5 .custom-checkbox .checktext {
	line-height: 1.2;
}
@media (min-width: 992px) {
	.page-question .boxer-lc-q5 {
		max-width: 920px;
	}
	.page-question .boxer-lc-q5 .custom-checkbox .checkbox-label {
		border-radius: 37px;
	}
	.page-question .boxer-lc-q5 .checkbox-group .row > div:nth-last-child(-n+2) .custom-checkbox .checkbox-label {
		margin-bottom: 0;
	}
	.page-question .boxer-lc-q5 .custom-checkbox .input-checkbox,
	.page-question .boxer-lc-q5 .custom-checkbox .checkmark {
		border-radius: 37px;
	}
	.page-question .boxer-lc-q5 .custom-checkbox .checkimg img {
		max-width: 103px;
	}
	.page-question .boxer-lc-q5 .custom-checkbox .checknoneimg {
		width: 103px;
		min-width: 103px;
		height: 96.94px;
		background-size: 60px;
		border-radius: 30px;
	}
}
@media (min-width: 1200px) {
	.page-question .boxer-lc-q5 .checkbox-group .row > div:nth-last-child(-n+3) .custom-checkbox .checkbox-label {
		margin-bottom: 0;
	}
}

/* ! QUESTION PAGE :: QUESTION LATEX & COMBINED 06 AND QUESTION NON-LATEX 05 */
.page-question .question-nl-05 h3,
.page-question .question-lc-06 h3 {
	margin: 0 auto 25px;
}
.page-question .boxer-nl-q5,
.page-question .boxer-lc-q6 {
	max-width: 480px;
	margin: 0 auto;
}
.page-question .boxer-nl-q5 .custom-checkbox .checkbox-label,
.page-question .boxer-lc-q6 .custom-checkbox .checkbox-label {
	min-height: 0;
	padding: 10px;
	border-radius: 22px;
	margin-bottom: 15px;
}
.page-question .boxer-nl-q5 .checkbox-group .row > div:last-child .custom-checkbox .checkbox-label,
.page-question .boxer-lc-q6 .checkbox-group .row > div:last-child .custom-checkbox .checkbox-label {
	margin-bottom: 0;
}
.page-question .boxer-nl-q5 .custom-checkbox .input-checkbox,
.page-question .boxer-nl-q5 .custom-checkbox .checkmark,
.page-question .boxer-lc-q6 .custom-checkbox .input-checkbox,
.page-question .boxer-lc-q6 .custom-checkbox .checkmark {
	border-radius: 22px;
	z-index: auto;
}
.page-question .boxer-nl-q5 .custom-checkbox .checkcontent,
.page-question .boxer-lc-q6 .custom-checkbox .checkcontent {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-align-content: center;
	-ms-align-content: center;
	align-content: center;
	-webkit-align-items: center;
	-ms-align-items: center;
	align-items: center;
	width: 100%;
	z-index: auto;
}
.page-question .boxer-nl-q5 .custom-checkbox .checkimg,
.page-question .boxer-lc-q6 .custom-checkbox .checkimg {
	position: relative;
	margin: 0 auto;
}
.page-question .boxer-nl-q5 .custom-checkbox .checkimg img,
.page-question .boxer-lc-q6 .custom-checkbox .checkimg img {
	position: relative;
	max-height: none;
	max-width: 64px;
	z-index: 4;
}
.page-question .boxer-nl-q5 .custom-checkbox .checknoneimg,
.page-question .boxer-lc-q6 .custom-checkbox .checknoneimg {
	width: 64px;
	min-width: 64px;
	height: 69.38px;
	background: url('../images/question-check-none.png') no-repeat center #e0e0e0fe;
	background-size: 36px;
	border-radius: 16px;
}
.page-question .boxer-nl-q5 .custom-checkbox .checktext,
.page-question .boxer-lc-q6 .custom-checkbox .checktext {
	position: relative;
	flex: 1 1 auto;
	-ms-flex: 1 1 auto;
	-webkit-flex: 1 1 auto;
	text-align: left;
	padding: 0 18px;
	z-index: 0;
	line-height: 1;
}
.page-question.page-cn .boxer-nl-q5 .custom-checkbox .checktext,
.page-question.page-cn .boxer-lc-q6 .custom-checkbox .checktext {
	line-height: 1.2;
}
@media (min-width: 992px) {
	.page-question .boxer-nl-q5,
	.page-question .boxer-lc-q6 {
		max-width: 920px;
	}
	.page-question .boxer-nl-q5 .custom-checkbox .checkbox-label,
	.page-question .boxer-lc-q6 .custom-checkbox .checkbox-label {
		border-radius: 37px;
	}
	.page-question .boxer-nl-q5 .checkbox-group .row > div:nth-last-child(-n+2) .custom-checkbox .checkbox-label,
	.page-question .boxer-lc-q6 .checkbox-group .row > div:nth-last-child(-n+2) .custom-checkbox .checkbox-label {
		margin-bottom: 0;
	}
	.page-question .boxer-nl-q5 .custom-checkbox .input-checkbox,
	.page-question .boxer-nl-q5 .custom-checkbox .checkmark,
	.page-question .boxer-lc-q6 .custom-checkbox .input-checkbox,
	.page-question .boxer-lc-q6 .custom-checkbox .checkmark {
		border-radius: 37px;
	}
	.page-question .boxer-nl-q5 .custom-checkbox .checkimg img,
	.page-question .boxer-lc-q6 .custom-checkbox .checkimg img {
		max-width: 103px;
	}
	.page-question .boxer-nl-q5 .custom-checkbox .checknoneimg,
	.page-question .boxer-lc-q6 .custom-checkbox .checknoneimg {
		width: 103px;
		min-width: 103px;
		height: 111.64px;
		background-size: 60px;
		border-radius: 30px;
	}
}
@media (min-width: 1200px) {
	.page-question .boxer-nl-q5 .checkbox-group .row > div:nth-last-child(-n+3) .custom-checkbox .checkbox-label,
	.page-question .boxer-lc-q6 .checkbox-group .row > div:nth-last-child(-n+3) .custom-checkbox .checkbox-label {
		margin-bottom: 0;
	}
}

/* ! QUESTION PAGE :: QUESTION LATEX & COMBINED 07 AND QUESTION NON-LATEX 06 */
.page-question .question-nl-06 h3,
.page-question .question-lc-07 h3 {
	margin: 0 auto 25px;
}
.page-question .boxer-nl-q6,
.page-question .boxer-lc-q7 {
	max-width: 480px;
	margin: 0 auto;
}
.page-question .boxer-nl-q6 .custom-checkbox .checkbox-label,
.page-question .boxer-lc-q7 .custom-checkbox .checkbox-label {
	min-height: 0;
	padding: 10px;
	border-radius: 22px;
	margin-bottom: 15px;
	max-width: none;
}
.page-question .boxer-nl-q6 .checkbox-group .row > div:last-child .custom-checkbox .checkbox-label,
.page-question .boxer-lc-q7 .checkbox-group .row > div:last-child .custom-checkbox .checkbox-label {
	margin-bottom: 0;
}
.page-question .boxer-nl-q6 .custom-checkbox .input-checkbox,
.page-question .boxer-nl-q6 .custom-checkbox .checkmark,
.page-question .boxer-lc-q7 .custom-checkbox .input-checkbox,
.page-question .boxer-lc-q7 .custom-checkbox .checkmark {
	border-radius: 22px;
	z-index: auto;
}
.page-question .boxer-nl-q6 .custom-checkbox .checkcontent,
.page-question .boxer-lc-q7 .custom-checkbox .checkcontent {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-align-content: center;
	-ms-align-content: center;
	align-content: center;
	-webkit-align-items: center;
	-ms-align-items: center;
	align-items: center;
	width: 100%;
	z-index: auto;
}
.page-question .boxer-nl-q6 .custom-checkbox .checkimg,
.page-question .boxer-lc-q7 .custom-checkbox .checkimg {
	position: relative;
	margin: 0 auto;
}
.page-question .boxer-nl-q6 .custom-checkbox .checkimg img,
.page-question .boxer-lc-q7 .custom-checkbox .checkimg img {
	position: relative;
	max-height: none;
	width: 68px;
	height: auto;
	z-index: 4;
}
.page-question .boxer-nl-q6 .custom-checkbox .checknoneimg,
.page-question .boxer-lc-q7 .custom-checkbox .checknoneimg {
	width: 68px;
	min-width: 68px;
	height: 54.27px;
	background: url('../images/question-check-none.png') no-repeat center #e0e0e0fe;
	background-size: 36px;
	border-radius: 16px;
}
.page-question .boxer-nl-q6 .custom-checkbox .checktext,
.page-question .boxer-lc-q7 .custom-checkbox .checktext {
	position: relative;
	flex: 1 1 auto;
	-ms-flex: 1 1 auto;
	-webkit-flex: 1 1 auto;
	text-align: left;
	padding: 0 18px;
	z-index: 0;
	line-height: 1;
}
.page-question.page-cn .boxer-nl-q6 .custom-checkbox .checktext,
.page-question.page-cn .boxer-lc-q7 .custom-checkbox .checktext {
	line-height: 1.2;
}
.page-question .boxer-nl-q6 .custom-checkbox .checkimg .hover-content,
.page-question .boxer-lc-q7 .custom-checkbox .checkimg .hover-content {
	width: 266px;
}
.page-question .boxer-nl-q6 .custom-checkbox .checkimg .hover-img img,
.page-question .boxer-lc-q7 .custom-checkbox .checkimg .hover-img img {
	width: 100%;
	height: auto;
}
@media (min-width: 768px) {
	.page-question .boxer-nl-q6 .custom-checkbox .checkimg .hover-content,
	.page-question .boxer-lc-q7 .custom-checkbox .checkimg .hover-content {
		width: 340px;
	}
}
@media (min-width: 992px) {
	.page-question .boxer-nl-q6,
	.page-question .boxer-lc-q7 {
		max-width: 920px;
	}
	.page-question .boxer-nl-q6 .custom-checkbox .checkbox-label,
	.page-question .boxer-lc-q7 .custom-checkbox .checkbox-label {
		border-radius: 37px;
	}
	.page-question .boxer-nl-q6 .checkbox-group .row > div:nth-last-child(-n+2) .custom-checkbox .checkbox-label,
	.page-question .boxer-lc-q7 .checkbox-group .row > div:nth-last-child(-n+2) .custom-checkbox .checkbox-label {
		margin-bottom: 0;
	}
	.page-question .boxer-nl-q6 .custom-checkbox .input-checkbox,
	.page-question .boxer-nl-q6 .custom-checkbox .checkmark,
	.page-question .boxer-lc-q7 .custom-checkbox .input-checkbox,
	.page-question .boxer-lc-q7 .custom-checkbox .checkmark {
		border-radius: 37px;
	}
	.page-question .boxer-nl-q6 .custom-checkbox .checkimg img,
	.page-question .boxer-lc-q7 .custom-checkbox .checkimg img {
		width: 162px;
		height: 129px;
	}
	.page-question .boxer-nl-q6 .custom-checkbox .checknoneimg,
	.page-question .boxer-lc-q7 .custom-checkbox .checknoneimg {
		width: 162px;
		min-width: 162px;
		height: 129px;
		background-size: 67px;
		border-radius: 30px;
	}
	.page-question .boxer-nl-q6 .custom-checkbox .checkimg .hover-content,
	.page-question .boxer-lc-q7 .custom-checkbox .checkimg .hover-content {
		width: 268px;
	}
}
@media (min-width: 1200px) {
	.page-question .boxer-nl-q6 .custom-checkbox .checkimg .hover-content,
	.page-question .boxer-lc-q7 .custom-checkbox .checkimg .hover-content {
		width: 340px;
	}
}





/* ! RESULT PAGE */
/* ! RESULT PAGE :: FOOTER */
.page-result .footer {
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	z-index: 2;
}
.page-result .footer .footer-dashboard {
	height: 171px;
	background: #50b6ab;
}
@media (min-width: 576px) {
	.page-result .footer .footer-dashboard {
		height: 154px;
	}
}
@media (min-width: 768px) {
	.page-result .footer .footer-dashboard {
		height: 123px;
	}
}
@media (min-width: 992px) {
	.page-result .footer .footer-dashboard {
		height: 110px;
	}
}
@media (min-width: 1200px) {
	.page-result .footer .footer-dashboard {
		height: 110px;
	}
}
@media (min-width: 1400px) {
	.page-result .footer .footer-dashboard {
		height: 92px;
	}
}

/* ! RESULT PAGE :: BODY */
.page-result .body {
	padding: 0;
}
.page-result .body .content-area {
	height: 100%;
	flex: 1 1 auto;
	-ms-flex: 1 1 auto;
	-webkit-flex: 1 1 auto;
}
.page-result .body .section-result {
	position: relative;
	padding: 0 0 0;
}
.page-result .body .section-button {
	position: relative;
	padding: 0 0 171px;
}
@media (min-width: 576px) {
	.page-result .body .section-button {
		padding: 0 0 154px;
	}
}
@media (min-width: 768px) {
	.page-result .body .section-button {
		padding: 0 0 123px;
	}
}
@media (min-width: 992px) {
	.page-result .body .section-result,
	.page-result .body .section-button {
		padding: 0 0 110px;
	}
}
@media (min-width: 1200px) {
	.page-result .body .section-result,
	.page-result .body .section-button {
		padding: 0 0 110px;
	}
}
@media (min-width: 1400px) {
	.page-result .body .section-result,
	.page-result .body .section-button {
		padding: 0 0 92px;
	}
}

/* ! RESULT PAGE :: SECTION RESULT */
.page-result .section-result .container {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-flex-wrap: wrap;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	-webkit-align-content: center;
	-ms-align-content: center;
	align-content: center;
	-webkit-align-items: center;
	-ms-align-items: center;
	align-items: center;
	-webkit-justify-content: flex-end;
	-ms-justify-content: flex-end;
	justify-content: flex-end;
}
.page-result .section-result .warpper {
	padding: 60px 0;
	max-width: 900px;
	width: 100%;
}
.page-result .section-result h1 {
	text-align: center;
	margin-bottom: 25px;
}
.page-result .section-result .main-content {
	margin-bottom: 25px;
}
.page-result .section-result .main-content h3 {
	font-weight: 700;
	font-style: normal;
	margin: 0 0 25px;
}
.page-result .section-result .text-box {
}
.page-result .section-result .text-box p {
	font-weight: 600;
	font-style: italic;
	font-size: 13px;
	line-height: 1.6;
	color: #ffffff;
	margin: 0 0 25px;
}
.page-result .section-result .white-box {
	background: #ffffff;
	padding: 12px 12px;
}
.page-result .section-result .white-box p {
	color: #50b6ab;
	font-style: italic;
	text-transform: uppercase;
	font-size: 12px;
	font-weight: 600;
	margin: 0;
}
.page-result .section-result .blue-box {
	background: #005A93;
	padding: 15px 26px;
	min-height: 300px;
	border: 2px dotted #ffffff;
	border-radius: 15px;
}
.page-result .section-result .blue-box .blueTitle {
	max-width: 745px;
	text-align: center;
	font-style: italic;
    font-weight: 500;
	margin: 0 auto;
}
.page-result .section-result .blue-box .title-dyk {
	position: relative;
    margin: 25px 0;
}
.page-result .section-result .blue-box .title-dyk:before {
	content: '';
	position: absolute;
	top: 50%;
	left: 0;
	width: 100%;
	height: 2px;
	border-top: 2px dotted #ffffff;
	margin-top: -1px;
}
.page-result .section-result .blue-box .title-dyk h3 {
	width: 226px;
	margin: 0 auto;
	background: #3989BC;
	border-radius: 15px;
	text-align: center;
	font-weight: 700;
	font-style: normal;
	padding: 6px;
	position: relative;
	z-index: 2;
}
.page-result .section-result .blue-box .boxer-dyk .box-img .img {
	width: 274px;
	background: #c1c1c1;
	margin: 0 auto 25px;
}
.page-result .section-result .blue-box .boxer-dyk .box-img img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.page-result .section-result .blue-box .boxer-dyk .box-text p {
	font-size: 12px;
	font-weight: 700;
	line-height: 1.6;
	color: #ffffff;
}
@media (min-width: 992px) {
	.page-result .section-result .main-content {
		min-height: 250px;
	}
	.page-result .section-result .text-box p {
		font-size: 16px;
	}
	.page-result .section-result .white-box p {
		font-size: 14px;
	}
	.page-result .section-result .blue-box .boxer-dyk {
		display: -webkit-box;
		display: -webkit-flex;
		display: -ms-flexbox;
		display: flex;
	}
	.page-result .section-result .blue-box .boxer-dyk .box-img {
		order: 2;
	}
	.page-result .section-result .blue-box .boxer-dyk .box-img .img {
		margin: 0;
	}
	.page-result .section-result .blue-box .boxer-dyk .box-text {
		flex: 1 1 auto;
		-ms-flex: 1 1 auto;
		-webkit-flex: 1 1 auto;
		padding-right: 25px;
		order: 1;
	}
	.page-result .section-result .blue-box .boxer-dyk .box-text p {
		font-size: 14px;
	}
}

/* ! RESULT PAGE :: SECTION BUTTON */
.page-result .section-button {
	background: url('../images/result-background.png') no-repeat center;
	background-size: cover;
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-flex-wrap: wrap;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	flex-direction: column;
	-webkit-align-content: center;
	-ms-align-content: center;
	align-content: center;
	-webkit-align-items: center;
	-ms-align-items: center;
	align-items: center;
	-webkit-justify-content: center;
	-ms-justify-content: center;
	justify-content: center;
}
.page-result .section-button:before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 1;
	background-color: #0000004d;
	mix-blend-mode: multiply;
}
.page-result .section-button .container {
	position: relative;
	z-index: 2;
}
.page-result .section-button .warpper {
	padding: 50px 0;
}
.page-result .section-button .box-btn {
	text-align: center;
	margin: 0 auto 25px;
}
.page-result .section-button .box-btn:last-child {
	margin-bottom: 0;
}
.page-result .section-button .btn-white {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-align-content: center;
	-ms-align-content: center;
	align-content: center;
	-webkit-align-items: center;
	-ms-align-items: center;
	align-items: center;
	-webkit-justify-content: flex-start;
	-ms-justify-content: flex-start;
	justify-content: flex-start;
	background: #ffffff;
	border-radius: 22px;
	font-size: 13px;
	color: #000000;
	font-style: normal;
	font-weight: 400;
	line-height: 1.4;
	max-width: 300px;
	min-height: 75px;
	width: 100%;
	text-align: left;
	padding: 15px 20px 15px 90px;
	margin: 0 auto 5px;
	position: relative;
}
.page-result .section-button .btn-white:hover {
	background-color: #acfff8;
}
.page-result .section-button .btn-email:after {
	content: '';
	position: absolute;
	top: 50%;
	left: 24px;
	margin-top: -21px;
	width: 44px;
	height: 42px;
	background: url('../images/icon-email.png') no-repeat center;
	background-size: 100%;
}
.page-result .section-button .btn-download:after {
	content: '';
	position: absolute;
	top: 50%;
	left: 24px;
	margin-top: -21.5px;
	width: 44px;
	height: 43px;
	background: url('../images/icon-download.png') no-repeat center;
	background-size: 100%;
}
.page-result .section-button .btn-request:before {
	content: '';
	position: absolute;
	top: 50%;
	left: 22px;
	margin-top: -25px;
	width: 54px;
	height: 48px;
	background: url('../images/icon-request.png') no-repeat center;
	background-size: 100%;
	transition: opacity .5s ease;
	-ms-transition: opacity .5s ease;
	-webkit-transition: opacity .5s ease;
	opacity: 1;
}
.page-result .section-button .btn-request:hover:before {
	opacity: 0;
}
.page-result .section-button .btn-request:after {
	content: '';
	position: absolute;
	top: 50%;
	left: 22px;
	margin-top: -25px;
	width: 54px;
	height: 48px;
	background: url('../images/icon-request-hover.png') no-repeat center;
	background-size: 100%;
	opacity: 0;
	transition: opacity .5s ease;
	-ms-transition: opacity .5s ease;
	-webkit-transition: opacity .5s ease;
}
.page-result .section-button .btn-request:hover:after {
	opacity: 1;
}
.page-result .section-button p {
	max-width: 300px;
	margin: 0 auto;
	color: #ffffff;
	font-size: 12px;
	font-weight: 400;
	padding: 0 25px;
}
@media (min-width: 992px) {
	.page-result .section-button .warpper {
		padding: 75px 0;
	}
	.page-result .section-button .box-btn {
		margin: 0 auto 50px;
	}
	.page-result .section-button .box-btn:last-child {
		margin-bottom: 0;
	}
	.page-result .section-button .btn-white {
		font-size: 16px;
	}
	.page-result .section-button p {
		font-size: 14px;
	}
}
@media (min-width: 1200px) {
	.page-result .section-button .btn-white {
		margin: 0 0 5px;
	}
	.page-result .section-button p {
		margin: 0;
	}
}

.mktoForm {
	width:100%!important;
  }
  .mktoForm textarea {
	width:100%!important;
  }
  .mktoForm input, select, textarea {
	border:1px solid #AAA;
  }
  .mktoForm input[type="checkbox"] {
	border:2px solid #000; 
	border-radius:2px;
	padding-left:0px!important;
	padding-right:0!important;
	margin-right:3px;
	width:15px!important;
  }
  .mktoForm input[type="checkbox"]:checked {
	border:3px solid #000!important;
	background:black!important;
  }
  .mktoForm .mktoRadioList > input, .mktoForm .mktoCheckboxList > input {
	width:15px!important;
  }

  .mktoForm legend {
	display:none;
  }
  .mktoForm .mktoFormCol {
	padding-right:0!important;
  }