@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@100;200;300;400;500;600;700;800;900&display=swap');
* {
	padding: 0;
	margin: 0;
	border: 0;
	outline: 0;
	box-sizing: border-box;
}
body {
	font-family: 'Poppins', sans-serif;
	font-weight: 400;
	font-size: 14px;
}
:root{
	--primary: rgba(0,3,60);
	--secondary: rgba(215,15,17);
	--specialgray: #797777;
}
/* Entry Page */
#entry-page {
	width: 100%;
	height: 100vh;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
}
.btnEntryExam {
	font-size: 14px;
	padding: 10px 15px;
}
#entryExamModal .modal-content {
	position: relative;
	background: rgba(0,3,60);
	color: #fff;
	border-radius: 20px;
}
#entryExamModal .modal-content .btn-close {
	position: absolute;
	top: 10px;
	right: 10px;
	background: rgba(215,15,17);
	width: 40px;
	height: 40px;
	border-radius: 40px;
	color: #fff;
	box-shadow: 0 0 6px 0 rgba(0,0,0,.1);
	opacity: 1;
	z-index: 1;
}
#entryExamModal .modal-content .modal-slogan {
	display: grid;
	place-items: center;
}
#entryExamModal .modal-content .modal-slogan img {
	width: 100%;
	/* height: 100%; */
	object-fit: contain;
}
#entryExamModal .modal-content .modal-form {
	background: #fff;
	border-radius: 10px;
	padding: 40px 45px;
	display: flex;
	flex-direction: column;
	gap: 15px;
}
@media (max-width: 992px) {
	#entryExamModal .modal-content .modal-slogan img {
		width: 75%;
	}
	#entryExamModal .modal-content {
		border-radius: 20px;
	}
	#entryExamModal .modal-content .modal-form {
		padding: 20px;
		border-radius: 10px;
	}
}
#entryExamModal .modal-content .modal-form .form-head {
	background: rgba(215,15,17);
	font-size: 15px;
	color: #fff;
	padding: 15px;
	border-radius: 5px;
}
#entryExamModal .modal-content .modal-form .form-text {
	font-size: 15px;
}
#entryExamModal .modal-content .modal-form .modal-label {
	background: rgba(0,3,60);
	width: 100%;
	color: #fff;
	padding: 10px 15px;
	text-align: center;
	border-radius: 5px;
	display: inline-block;
}
#entryExamModal .modal-content .modal-form input[type="text"],
#entryExamModal .modal-content .modal-form input[type="tel"],
#entryExamModal .modal-content .modal-form input[type="email"],
#entryExamModal .modal-content .modal-form select {
	background: #fff;
	max-width: 100%;
	width: 100%;
	height: 40px;
	font-size: 14px;
	border-radius: 5px;
	padding: 0 10px;
	border: 1px solid #aaa;
	display: block;
}
#entryExamModal .modal-content .modal-form .agreement {
	color: #000;
	gap: 10px;
	padding: 0 5px;
}
#entryExamModal .modal-content .modal-form .warn-modal {
	font-size: 13px;
	color: #000;
	padding: 0 5px;
}
#entryExamModal .modal-content .modal-form button {
	width: 250px;
	background: rgba(215,15,17);
	color: #fff;
	padding: 15px 20px;
	border-radius: 50px;
	margin-inline: auto;
}

/* Exam Page */
#exam-page {
	position: relative;
	background-color: rgba(250,250,250);
	min-height: 100vh;
	padding: 40px 0;
	display: grid;
	place-items: center;
}
#exam-page #loading {
	position: fixed;
	background: #1982ff;
	z-index: 999;
	height: 100%;
	width: 100%;
	overflow: show;
	margin: auto;
	inset: 0;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	gap: 50px;
	animation: startExam 5000ms forwards;
	animation-timing-function: cubic-bezier(1, 0, 0, 1);
}
/* Startin exam animation */
@keyframes startExam {
	0% {
		transform: translateY(0);
	}
	50% {
		transform: translateY(0);
	}
	100% {
		transform: translateY(-100%);
	}
}
#exam-page #loading span {
	font-size: 20px;
	font-weight: 500;
	color: #fff;
}
#exam-page .page-circle {
	position: absolute;
	inset: 0 0 auto 0;
	background: var(--specialgray);
	width: 100%;
	height: 50%;
	border-radius: 0 0 1000px 1000px;
	z-index: 1;
	opacity: .40;
}
#exam-page .powered {
	position: absolute;
	inset: auto 20px 10px auto;
}
#exam-page .powered img {
	height: 40px;
	object-fit: contain;
}
#exam-page .exam-wrapper {
	position: relative;
	background-color: #fff;
	max-width: 1420px;
	width: 100%;
	display: flex;
	flex-direction: column;
	gap: 50px;
	padding: 25px 50px 100px;
	border-radius: 12px;
	box-shadow: rgba(208, 208, 208, 0.15) 0px 1px 24px;
	z-index: 2;
}
#exam-page .exam-wrapper .form-wrap {
	display: flex;
	flex-direction: column;
	gap: 25px;
}
#exam-page .exam-wrapper .form-wrap header {
	display: flex;
	justify-content: space-between;
	align-items: center;
}
#exam-page .exam-wrapper .form-wrap header .logo {
	max-height: 65px;
	height: 100%;
}
#exam-page .exam-wrapper .form-wrap .exam-mark {
	background: rgba(245,245,245);
	width: 100%;
	border-radius: 5px;
	padding: 15px;
	display: flex;
	justify-content: space-between;
	align-items: center;
}
#exam-page .exam-wrapper .form-wrap .exam-mark .text {
	font-size: 17px;
	font-weight: 300;
}
#exam-page .exam-wrapper .form-wrap .question-area .splide__track {
	padding-bottom: 20px;
	margin-bottom: 20px;
	border-bottom: 1px solid #eee;
}
#exam-page .exam-wrapper .form-wrap .question-area .splide__pagination {
	width: 100%;
	position: relative;
	padding: 10px 0 25px; 
	display: flex;
	flex-wrap: wrap;
	justify-content: flex-start;
}
#exam-page .exam-wrapper .form-wrap .question-area .splide__pagination li {
	flex: 1;
}
#exam-page .exam-wrapper .form-wrap .question-area .splide__pagination__page {
	background-color: rgba(250,250,250);
	min-width: 45px;
	height: 45px;
	font-size: 16px;
	font-weight: 400;
	color: #666;
	padding: 0;
	border-radius: 3px;
	flex: 1;
	display: grid;
	place-items: center;
}
#exam-page .exam-wrapper .form-wrap .question-area .splide__pagination__page.is-active {
	background-color: rgba(0,3,60);
	color: #fff;
	transform: scale(1);
	opacity: 1;
}
#exam-page .exam-wrapper .splide__arrow {
	background-color: rgba(240,240,240);
	top: 25px;
	width: auto;
	border-radius: 5px;
	padding: 21px 20px;
	opacity: 1;
}
#exam-page .exam-wrapper .splide__arrow:hover {
	background: #fff;
	color: #000;
	border-radius: 3px;
}
#exam-page .exam-wrapper .splide__arrows {
	position: absolute;
	top: auto;
	bottom: -25px;
	width: 100%;
	height: 20px;
	padding: 0;
	display: flex;
	justify-content: space-between;
}
#exam-page .exam-wrapper .splide__arrow.splide__arrow--prev {
	left: 0;
}
#exam-page .exam-wrapper .splide__arrow.splide__arrow--next {
	right: 0;
}
#exam-page .exam-wrapper .question-area .splide__slide{
	display: flex;
	flex-direction: column;
	gap: 5px;
}
#exam-page .exam-wrapper .question-area .splide__slide .question {
	font-size: 16px;
	font-weight: 400;
	line-height: 30px;
	margin-bottom: 25px;
}
#exam-page .exam-wrapper .question-area .splide__slide .answer input[type="radio"] {
	display: none;
}
#exam-page .exam-wrapper .question-area .splide__slide .answer label {
	/* background: rgba(248,248,248); */
	border-radius: 5px;
	cursor: pointer;
	padding: 15px;
	/* border: 1px solid rgba(240,240,240); */
	box-shadow: 0 0 0 1px rgba(235,235,235);
	margin: 7.5px 5px;
	display: block;
}
#exam-page .exam-wrapper .question-area .splide__slide .answer input[type="radio"]:checked ~ label {
	background-color: #fff;
	box-shadow: 0 0 0 1px var(--primary);
	color: var(--primary);
}
#exam-page .exam-wrapper .question-area .splide__slide .answer input[type="radio"]:checked ~ label .radio {
	background: var(--primary);
	color: #fff;
	border-color: var(--primary);
}
#exam-page .exam-wrapper .question-area .splide__slide .answer label:hover {
	background: rgba(245,245,245);
	border-color: #ccc;
}
#exam-page .exam-wrapper .question-area .splide__slide .answer .radio {
	width: 25px;
	height: 25px;
	border-radius: 40px;
	border: 1px solid rgba(220,220,220);
	display: inline-flex;
	justify-content: center;
	align-items: center;
	margin-right: 5px;
}
#exam-page .close-screen {
	position: fixed;
	inset: 0;
	background: #fff;
	width: 100%;
	height: 100%;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	z-index: 10;
	display: none;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	gap: 50px;
}
#exam-page .close-screen span {
	font-size: 17px;
	font-weight: 500;
	color: #000;
}
#exam-page .close-screen.active {
	display: flex;
}
#exam-page .close-screen video {
	max-width: 1000px;
	width: 100%;
}
#exam-page .close-screen .progress-redirect {
	background: linear-gradient(90deg, #111 50%, transparent 50%);
	background-size: 200% 200%;
	background-position: right;
	max-width: 300px;
	width: 100%;
	height: 3px;
}
#exam-page .close-screen.active .progress-redirect {
	animation: redirect 10000ms ease-in-out forwards;
}
/* Close screen progress animation */
@keyframes redirect {
	from {
		background-position: left;
	}
	to {
		background-position: right;
	}
}
@media (max-width: 1420px) {
	#exam-page {
		background-color: #fff;
		padding: 0 0 50px;
	}
	#exam-page .page-circle {
		display: none;
	}
	#exam-page .exam-wrapper {
		max-width: calc(100vw - 40px);
		padding: 25px 0px 70px;
		box-shadow: 0;
	}
}
@media (max-width: 1440px) {
	#exam-page .exam-wrapper .form-wrap .question-area .splide__pagination {
		display: none;
	}
}



/* Manage Page */
.manage-page nav.navbar .logo{
	font-size: 18px;
	font-weight: 600;
}
.manage-page nav.navbar .logo img {
	height: 50px;
}
.manage-page nav.navbar .nav-link.active {
	font-weight: 500;
}
.manage-page tr th, 
.manage-page tr td {
	padding-block: 15px !important;
}
.manage-page .admin-wrapper {
	width: 100%;
	padding: 0 20px 20px;
}
.manage-page .admin-wrapper .add-question {
	background: #111;
	color: #fff;
	font-size: 14px;
	padding: 10px 20px;
	border-radius: 3px;
}
.manage-page .admin-wrapper .logo{
	font-size: 18px;
	font-weight: 600;
}
.manage-page .admin-wrapper .logo img {
	height: 50px;
}
.manage-page .admin-wrapper #exam-tab {
	margin-top: 25px;
}
.manage-page .admin-wrapper #exam-tab .nav-link {
	background: rgb(245,245,247);
	border-radius: 0px;
	color: #333;
	padding: 15px 0;
}
.manage-page .admin-wrapper #exam-tab .nav-link.active {
	background: #27272A;
	color: #fff;
}
.manage-page .admin-wrapper #exam-tabContent {
	padding: 15px 0 0;
}
.manage-page .admin-wrapper #exam-tabContent .card {
	background-color: #FAFAFA;
	height: 100%;
	border-radius: 5px;
	border-color: #E5E7EB;
}
.manage-page .admin-wrapper #exam-tabContent .card .card-body {
	display: flex;
	flex-direction: column;
	gap: 10px;
	padding: 20px;
}
.manage-page .admin-wrapper #exam-tabContent .card .card-title {
	font-size: 16px;
}
.manage-page .admin-wrapper #exam-tabContent .card .card-text {
	font-size: 14px;
	font-weight: 300;
	color: #444;
}