/* nav bar */
body {
	/* padding-top: 78px; */
	font-family: "Poppins";
}

/* parsley */
input.parsley-success,
select.parsley-success,
textarea.parsley-success {
	color: #468847;
	background-color: #DFF0D8;
	border: 1px solid #D6E9C6;
}

input.parsley-error,
select.parsley-error,
textarea.parsley-error {
	color: #B94A48;
	background-color: #F2DEDE;
	border: 1px solid #EED3D7;
}

.parsley-errors-list {
	margin: 10px 0 3px !important;
	padding: 0;
	list-style-type: none;
	font-size: 0.9em;
	line-height: 0.9em;
	opacity: 0;
	color: #B94A48;

	transition: all .3s ease-in;
	-o-transition: all .3s ease-in;
	-moz-transition: all .3s ease-in;
	-webkit-transition: all .3s ease-in;
}

.parsley-errors-list.filled {
	opacity: 1;
}


/* otp boxes */
.verification-code {
	max-width: 300px;
	position: relative;
	margin: 30px auto;
}

.control-label {
	display: block;
	margin: 40px auto;
	font-weight: 900;
}

.verification-code--inputs input[type=text] {
	border: 2px solid #e1e1e1;
	border-radius: 5px;
	width: 46px;
	height: 46px;
	padding: 10px;
	text-align: center;
	display: inline-block;
	box-sizing: border-box;
}




.question-panel {
	display: none !important;
}

.question-panel.active {
	display: block !important;
}

.test-questions li.active {
	border: none;
}

.test-questions li.active>a {
	border-radius: 50px !important;
	border: 3px solid #007bff !important;
}

.preloader {
	position: fixed;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: #fff;
	z-index: 9999;
	display: flex;
	justify-content: center;
	align-items: center;
	padding-top: 90px;
}


.red-box {
	/* border: 2px solid red; */
	display: inline-block;
	background-color: #ee384f;
	width: 15px;
	height: 15px;
	border-radius: 3px;
}


#test-portal-question-container {
	height: calc(100vh - 75px);
}

@media screen and (max-width: 768px) {
	#test-portal-question-container {
		height: calc(100vh - 120px);
	}

}