/*@import url("https://fonts.googleapis.com/css2?family=Rubik:ital,wght@0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");*/
@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Spectral:ital,wght@0,200;0,300;0,400;0,500;0,600;0,700;0,800;1,200;1,300;1,400;1,500;1,600;1,700;1,800&display=swap');
* {
	margin: 0;
	padding: 0;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
}

body {
	/*font-family: 'Rubik', sans-serif;*/
	font-family: 'Poppins', sans-serif;
}

/* width */
::-webkit-scrollbar {
	width: 10px;
	height: 10px;
}

/* Track */
::-webkit-scrollbar-track {
	background: rgba(0, 0, 0, 0);
}

/* Handle */
::-webkit-scrollbar-thumb {
	background: #5434e265;
	border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
	background: #5434e2;
}

.container {
	width: 95%;
	margin: 0 auto;
}

a, button, div, span, i, b, h1, h2, h3, h4, h5, h6, p, input, ul, li, select, label, textarea {
	-webkit-touch-callout: none;
	-webkit-tap-highlight-color: transparent;
	/*font-family: 'Rubik', sans-serif;*/
	font-family: 'Poppins', sans-serif;
}

button {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	/* Safari */
}

button .loader {
	border: 2px solid transparent;
	border-radius: 50%;
	border-top: 2px solid white;
	width: 15px;
	height: 15px;
	margin-left: 10px;
	-webkit-animation: spin 0.5s linear infinite;
	/* Safari */
	animation: spin 0.5s linear infinite;
}

@-webkit-keyframes spin {
	0% {
		-webkit-transform: rotate(0deg);
	}
	100% {
		-webkit-transform: rotate(360deg);
	}
}

@keyframes spin {
	0% {
		-webkit-transform: rotate(0deg);
		transform: rotate(0deg);
	}
	100% {
		-webkit-transform: rotate(360deg);
		transform: rotate(360deg);
	}
}

input::-webkit-inner-spin-button {
	-webkit-appearance: none;
	margin: 0;
	/*font-family: 'Rubik', sans-serif;*/
	font-family: 'Poppins', sans-serif;
}

input {
	-webkit-tap-highlight-color: transparent;
}

input[type="date"]::-webkit-inner-spin-button,
input[type="date"]::-webkit-calendar-picker-indicator {
	display: none;
	-webkit-appearance: none;
}

::-webkit-datetime-edit-year-field:not([aria-valuenow]),
::-webkit-datetime-edit-month-field:not([aria-valuenow]),
::-webkit-datetime-edit-day-field:not([aria-valuenow]) {
	color: transparent;
}

textarea {
	resize: none;
	/*font-family: 'Rubik', sans-serif;*/
	font-family: 'Poppins', sans-serif;
}

main {
	overflow: hidden;
}

.shimmer {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100vh;
	z-index: 105;
	background: rgba(0, 0, 0, 0.295);
	display: none;
}

.dicarmelWatermark{
	position: fixed;
	content: '';
	width: 100%;
	height: 100vh;
	z-index: 0;
	top: 0;
	left: 0;
	display: flex;
	justify-content: center;
	align-items: center;
	opacity: 0.1;
	/*background: url(../images/Neethus_Logo.gif);*/
	background-size: 16px;
	transform: rotate(-45deg) scale(20);
	background-repeat: space;
}
.dicarmelWatermark img{
	width: 150px;
	object-fit: contain;
	display: none;
}

.startExamLoader{
	position: fixed;
	width: 400px;
	padding: 40px;
	background: white;
	border-radius: 15px;
	transform: translate(-50%, -50%);
	top: 45%;
	left: 50%;
	z-index: 110;
	display: flex;
	flex-direction: column;
	opacity: 0;
	visibility: hidden;
	transition: 0.2s;
}
.startExamLoaderActive{
	top: 50%;
	opacity: 1;
	visibility: visible;
	transition: 0.2s;
}
@media(max-width: 480px){
	.startExamLoader{
		width: 90%;
		padding: 30px 20px;
	}
}
.startExamLoaderThumbnail{
	width: 100%;
	height:200px;
	display: flex;
	justify-content: center;
	align-items: center;
}
.startExamLoaderThumbnail img{
	width: 100%;
	height: 100%;
	object-fit: contain;
}
.startExamLoaderDetails{
	width: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
	flex-direction: column;
}
.startExamLoaderDetails p{
	font-size: 14px;
	color: #686868;
	text-align: center;
}
.startExamLoaderDetails a{
	padding: 12px 35px;
	color: white;
	background: #5434e2;
	border-radius: 10px;
	outline: none;
	border: none;
	font-size: 16px;
	text-decoration: none;
	cursor: pointer;
	margin-top: 20px;
	display: none;
}

#loginCanvas {
	width: 100%;
	min-height: 100vh;
	background: #EFEFEF;
	position: relative;
	z-index: 0;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	padding: 50px 5%;
}

@media (max-width: 480px) {
	#loginCanvas {
		padding: 30px 5%;
		-webkit-box-pack: end;
		-ms-flex-pack: end;
		justify-content: flex-end;
	}
}

#loginCanvas .loginCanvasBuble {
	position: absolute;
	z-index: -1;
	top: 0;
	width: 500px;
	left: 0;
}

@media (max-width: 480px) {
	#loginCanvas .loginCanvasBuble {
		width: 70%;
	}
}

#loginCanvas .loginCanvasBuble img {
	width: 100%;
	height: 100%;
	-o-object-fit: contain;
	object-fit: contain;
}

#loginCanvas .loginCanvasHead {
	width: 100%;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
}

#loginCanvas .loginCanvasHead h2 {
	font-size: 2em;
	text-align: center;
	font-weight: 500;
	font-family: 'Spectral', serif;
}

@media (max-width: 480px) {
	#loginCanvas .loginCanvasHead h2 {
		font-size: 25px;
	}
}

#loginCanvas .loginCanvasHead .loginCanvasHeadThumbnail {
	width: 250px;
}

@media (max-width: 480px) {
	#loginCanvas .loginCanvasHead .loginCanvasHeadThumbnail {
		width: 100%;
	}
}

#loginCanvas .loginCanvasHead .loginCanvasHeadThumbnail img {
	width: 100%;
	height: 100%;
	-o-object-fit: contain;
	object-fit: contain;
}

#loginCanvas .loginCanvasHead .loginCanvasHeadThumbnail video {
	width: 100%;
	height: 100%;
	-o-object-fit: contain;
	object-fit: contain;
}

#loginCanvas .loginCanvasBox {
	width: 100%;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	margin-top: 20px;
}

#loginCanvas .loginCanvasBox .loginCanvasHeadForm {
	width: 100%;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
}

#loginCanvas .loginCanvasBox .loginCanvasHeadForm form {
	width: 350px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
}

@media (max-width: 480px) {
	#loginCanvas .loginCanvasBox .loginCanvasHeadForm form {
		width: 100%;
	}
}

#loginCanvas .loginCanvasBox .loginCanvasHeadForm form .formGroup {
	width: 100%;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	margin-top: 15px;
	position: relative;
}

#loginCanvas .loginCanvasBox .loginCanvasHeadForm form .formGroup input {
	width: 100%;
	height: 45px;
	border: 2px solid white;
	outline: none;
	border-radius: 6px;
	padding: 15px;
	font-weight: 500;
	font-size: 14px;
	color: black;
}

@media (max-width: 480px) {
	#loginCanvas .loginCanvasBox .loginCanvasHeadForm form .formGroup input {
		height: 50px;
	}
}

#loginCanvas .loginCanvasBox .loginCanvasHeadForm form .formGroup input::-webkit-input-placeholder {
	color: black;
}

#loginCanvas .loginCanvasBox .loginCanvasHeadForm form .formGroup input:-ms-input-placeholder {
	color: black;
}

#loginCanvas .loginCanvasBox .loginCanvasHeadForm form .formGroup input::-ms-input-placeholder {
	color: black;
}

#loginCanvas .loginCanvasBox .loginCanvasHeadForm form .formGroup input::placeholder {
	color: black;
}

#loginCanvas .loginCanvasBox .loginCanvasHeadForm form .formGroup input:focus {
	border: 2px solid #000d94;
}

#loginCanvas .loginCanvasBox .loginCanvasHeadForm form .formGroup span {
	font-size: 12px;
	margin-top: 10px;
	color: black;
	opacity: 0.7;
}

#loginCanvas .loginCanvasBox .loginCanvasHeadForm form .formGroup #btnToggle {
	position: absolute;
	background: none;
	outline: none;
	border: none;
	font-size: 14px;
	top: 50%;
	right: 5%;
	cursor: pointer;
	-webkit-transform: translateY(-50%);
	transform: translateY(-50%);
}

#loginCanvas .loginCanvasBox .loginCanvasHeadForm form .forgtPswd {
	width: 100%;
}

#loginCanvas .loginCanvasBox .loginCanvasHeadForm form .forgtPswd a {
	text-decoration: none;
	font-weight: 400;
	font-size: 14px;
	text-align: right;
	display: block;
	color: black;
	margin-top: 15px;
}

#loginCanvas .loginCanvasBox .loginCanvasHeadForm form .loginSbtBtn {
	width: 100%;
	height: 45px;
	background: #000d94;
	color: white;
	font-size: 18px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	border-radius: 6px;
	cursor: pointer;
	outline: none;
	margin-top: 25px;
	border: none;
}

@media (max-width: 480px) {
	#loginCanvas .loginCanvasBox .loginCanvasHeadForm form .loginSbtBtn {
		height: 50px;
	}
}

#loginCanvas .loginCanvasBox .loginCanvasHeadForm form .loginSbtBtn:hover {
	-webkit-animation: pulse10 1s;
	animation: pulse10 1s;
	-webkit-box-shadow: 0 0 0 1.5em rgba(255, 255, 255, 0);
	box-shadow: 0 0 0 1.5em rgba(255, 255, 255, 0);
}

@-webkit-keyframes pulse10 {
	0% {
		-webkit-box-shadow: 0 0 0 0 #5434e265;
		box-shadow: 0 0 0 0 #5434e265;
	}
}

@keyframes pulse10 {
	0% {
		-webkit-box-shadow: 0 0 0 0 #5434e265;
		box-shadow: 0 0 0 0 #5434e265;
	}
}

#loginCanvas .loginCanvasBox .loginCanvasHeadForm form .loginSecondaryBtn {
	width: 100%;
	margin-top: 20px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
}

#loginCanvas .loginCanvasBox .loginCanvasHeadForm form .loginSecondaryBtn p {
	font-size: 14px;
	text-align: center;
	color: #4b4b4b;
}

#loginCanvas .loginCanvasBox .loginCanvasHeadForm form .loginSecondaryBtn p a {
	text-decoration: none;
	color: #5434e2;
}

.version{
	width: 100%;
	text-align: center;
	font-size: 12px;
	margin-top: 50px;
	opacity: .6;
}
.updatedOn{
	width: 100%;
	text-align: center;
	font-size: 12px;
	margin-top: 10px;
	opacity: .6;
}

.mobileSidemenu {
	position: fixed;
	display: none;
	width: 35%;
	height: 100vh;
	background: white;
	top: 0;
	right: -110%;
	z-index: 110;
	-webkit-transition: all .3s ease;
	transition: all .3s ease;
}

@media (max-width: 1024px) {
	.mobileSidemenu {
		display: block;
	}
}

@media (max-width: 768px) {
	.mobileSidemenu {
		width: 45%;
	}
}

@media (max-width: 480px) {
	.mobileSidemenu {
		width: 90%;
	}
}

.mobileSidemenu .mobileSidemenuHead {
	width: 100%;
	padding: 20px;
	background: #5434e2;
}

.mobileSidemenu .mobileSidemenuHead .mobileSidemenuHeadProfile {
	width: 100%;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
}

.mobileSidemenu .mobileSidemenuHead .mobileSidemenuHeadProfile .mobileSidemenuHeadProfileThumbnail {
	width: 50px;
	height: 50px;
	border-radius: 50%;
	overflow: hidden;
	border: 2px solid white;
}

.mobileSidemenu .mobileSidemenuHead .mobileSidemenuHeadProfile .mobileSidemenuHeadProfileThumbnail img {
	width: 100%;
	height: 100%;
	-o-object-fit: cover;
	object-fit: cover;
}

.mobileSidemenu .mobileSidemenuHead .mobileSidemenuHeadProfile .mobileSidemenuHeadProfileName {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	margin-left: 10px;
}

.mobileSidemenu .mobileSidemenuHead .mobileSidemenuHeadProfile .mobileSidemenuHeadProfileName h1 {
	font-size: 20px;
	font-weight: 400;
	height: 25px;
	max-width: 180px;
	overflow: hidden;
	text-overflow: ellipsis;
	display: -webkit-box;
	-webkit-line-clamp: 1;
	-webkit-box-orient: vertical;
	color: white;
}

.mobileSidemenu .mobileSidemenuBody {
	width: 100%;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
}

.mobileSidemenu .mobileSidemenuBody ul {
	width: 100%;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	padding: 20px 0px;
	border-top: 1px solid #eee;
	margin: 0;
}

.mobileSidemenu .mobileSidemenuBody ul:nth-child(1) {
	border-top: none;
}

.mobileSidemenu .mobileSidemenuBody ul li {
	list-style: none;
}

.mobileSidemenu .mobileSidemenuBody ul li a {
	width: 100%;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	padding: 15px 20px;
	text-decoration: none;
	font-size: 16px;
}

.mobileSidemenu .mobileSidemenuBody ul li a:hover {
	background: #5434e20e;
}

.mobileSidemenu .mobileSidemenuBody ul li a span {
	color: #5434e2;
	margin-right: 15px;
}

.mobileSidemenu .mobileSidemenuBody ul li a p {
	color: black;
	font-size: 14px;
}

.mobileSidemenu .mobileSidemenuBody ul li .mobileSidemenuActive {
	background: #5434e20e;
}

.mobileSidemenu .mobileSidemenuBody ul li .mobileSidemenuActive:hover {
	background: #5434e20e;
}
.sidemenuFooter{
	position: absolute;
	bottom: 0;
	left: 0;
	padding: 10px 20px;
	display: flex;
	flex-direction: column;
}
.sidemenuFooter p{
	font-size: 12px;
	color: black;
	opacity: 0.4;
}
.sidemenuFooter a{
	text-decoration:none;
	width:60px;
	display: flex;
}
.sidemenuFooter a img{
	width:100%;
	height: 100%;
	object-fit: contain;
	filter: grayscale(1);
}

.mobileSidemenuActive {
	right: 0;
	-webkit-transition: all .3s ease;
	transition: all .3s ease;
}

nav {
	width: 100%;
	height: 60px;
	background: white;
	position: fixed;
	z-index: 100;
	top: 0;
	left: 0;
	-webkit-box-shadow: 0 0 15px rgba(0, 0, 0, 0.082);
	box-shadow: 0 0 15px rgba(0, 0, 0, 0.082);
}

nav .navLogo {
	float: left;
	height: 60px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
}

nav .navLogo h1 {
	font-size: 25px;
	font-weight: 600;
}

nav .navLogo img {
	width: 90%;
	height: 90%;
	-o-object-fit: contain;
	object-fit: contain;
}

nav .navProfile {
	float: right;
	height: 60px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
}

@media (max-width: 1024px) {
	nav .navProfile {
		display: none;
	}
}

nav .navProfile .navProfileBox {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	text-decoration: none;
}

nav .navProfile .navProfileBox .navProfileThumbnail {
	width: 35px;
	height: 35px;
	border-radius: 50%;
	background: #2731a5;
	border: 2px solid #2731a5;
	overflow: hidden;
}

nav .navProfile .navProfileBox .navProfileThumbnail img {
	width: 100%;
	height: 100%;
	-o-object-fit: cover;
	object-fit: cover;
}

nav .navProfile .navProfileBox .navProfileName {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	margin-left: 10px;
}

nav .navProfile .navProfileBox .navProfileName h2 {
	font-size: 16px;
	font-weight: 500;
	height: 20px;
	max-width: 180px;
	overflow: hidden;
	text-overflow: ellipsis;
	display: -webkit-box;
	-webkit-line-clamp: 1;
	-webkit-box-orient: vertical;
	color: black;
}

nav .navProfile .navProfileBox .downIcon {
	font-size: 25px;
	margin-left: 5px;
	color: black;
}

nav .navBar {
	display: none;
}

@media (max-width: 1024px) {
	nav .navBar {
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
		float: right;
		height: 60px;
		-webkit-box-pack: center;
		-ms-flex-pack: center;
		justify-content: center;
		-webkit-box-align: center;
		-ms-flex-align: center;
		align-items: center;
	}
	nav .navBar .navBarBox {
		width: 25px;
		cursor: pointer;
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		-ms-flex-direction: column;
		flex-direction: column;
	}
	nav .navBar .navBarBox span {
		width: 100%;
		height: 2px;
		background: black;
		border-radius: 5px;
		margin-top: 2px;
	}
	nav .navBar .navBarBox span:nth-child(1) {
		margin-top: 0;
	}
}

nav .navFullscreen{
	float: right;
	height: 60px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	margin-right: 50px;
	flex-direction: column;
}
nav .navFullscreen .navFullscreenBox{
	font-size: 16px;
	color: black;
	cursor: pointer;
	border: none;
	outline: none;
	background: white;
}
nav .navFullscreen .navFullscreenBox i{
	margin-right: 10px;
	font-size: 20px;
}

.sidemenu {
	width: 16%;
	height: calc(100vh - 60px);
	position: fixed;
	left: 0;
	background :white;
	transition: .3s;
	top: 60px;
	-webkit-box-shadow: 0 0 15px rgba(0, 0, 0, 0.082);
	box-shadow: 0 0 15px rgba(0, 0, 0, 0.082);
	/*overflow-y: auto;*/
	z-index: 10;
}
.expandSidemenu{
	display: none;
}
@media (max-width: 1024px) {
	.expandSidemenu{
		display: none;
	}
}
@media (max-width: 1024px) {
	.sidemenu {
		display: none;
	}
}

.sidemenu ul {
	width: 100%;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	padding: 20px 0px;
	border-top: 1px solid #eee;
	margin: 0;
	overflow: hidden;
}

.sidemenu ul:nth-child(1) {
	border-top: none;
}

.sidemenu ul li {
	list-style: none;
}

.sidemenu ul li a {
	width: 100%;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	padding: 15px 20px;
	text-decoration: none;
	font-size: 16px;
}

.sidemenu ul li a:hover {
	background: #5434e20e;
}

.sidemenu ul li a span {
	color: #2731a5;
	margin-right: 15px;
}

.sidemenu ul li a p {
	color: black;
	font-size: 14px;
}
.sidemenuFooter{
	position: absolute;
	bottom: 0;
	left: 0;
	padding: 10px 20px;
	display: flex;
	flex-direction: column;
}
.sidemenuFooter p{
	font-size: 12px;
	color: black;
	opacity: 0.4;
}

.sidemenu ul li .sidemenuActive {
	background: #5434e20e;
}

.sidemenu ul li .sidemenuActive:hover {
	background: #5434e20e;
}

.sidemenu .expandBtn{
	position: absolute;
	right: -25px;
	top: 47%;
	width:25px;
	cursor: pointer;
	height: 80px;
	background: #f2f5f4;
	border-radius: 0 10px 10px 0px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 18px;
	padding-right: 5px;
	transition: .2s;
}
.sidemenu .expandBtn:hover{
	background: #eee;
	transition: .2s;
}
.sidemenu .expandBtn i{
	transition: .2s;
}
.rotateExpandIcon{
	transform: rotate(180deg);
	transition: .2s;
}
@media (max-width: 480px) {
	.sidemenu .expandBtn{
		display: none;
	}
}

.sidemenuExpant{
	width: 60px !important;
	transition: .3s;
}

.sidemenuExpant ul li a{
	padding: 15px 25px;
}

.sidemenuExpant ul li a p{
	display: none;
}

.sidemenuExpant .sidemenuFooter{
	display: none;
}

.mobileFixedMenu {
	width: 100%;
	position: fixed;
	bottom: 0;
	left: 0;
	z-index: 100;
	background: white;
	border-top-left-radius: 15px;
	border-top-right-radius: 15px;
	-webkit-box-shadow: 0 0 15px rgba(0, 0, 0, 0.082);
	box-shadow: 0 0 15px rgba(0, 0, 0, 0.082);
	overflow: hidden;
	display: none;
}

@media (max-width: 1024px) {
	.mobileFixedMenu {
		display: block;
	}
}

.mobileFixedMenu ul {
	width: 100%;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	padding: 0px 2.5%;
	margin: 0;
	width: 100%;
}

.mobileFixedMenu ul li {
	list-style: none;
}

.mobileFixedMenu ul li a {
	text-decoration: none;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	padding: 10px 0px;
	font-size: 16px;
}

.mobileFixedMenu ul li a span {
	color: #5434e2;
}

.mobileFixedMenu ul li a p {
	font-size: 12px;
	margin-top: 5px;
	color: black;
}

@media (max-width: 480px) {
	.mobileFixedMenu ul li a p {
		font-size: 10px;
	}
}

.mobileFixedMenu ul li .mobilemenuActive {
	border-top: 2px solid #5434e2;
}

.hr {
	width: 100%;
	height: 1px;
	background: #eee;
	margin-top: 50px;
}

.canvas {
	width: 82%;
	float: right;
	margin-top: 60px;
	padding-bottom: 50px;
	position: relative;
}

@media (max-width: 1024px) {
	.canvas {
		width: 100%;
		padding-bottom: 100px;
	}
}
.expandCanvas{
	width: 100%;
	margin-top: 20px;
}

@media (max-width: 1024px) {
	.expandCanvas{
		width: 100%;
	}
}
.flexCanvas{
	display: flex;
}
@media (max-width: 1024px) {
	.flexCanvas{
		flex-direction :column;
	}
}
.FullscreenCloseBox{
	position: absolute;
	right: 20px;
	top: 0px;
	font-size: 16px;
	color: black;
	cursor: pointer;
	border: none;
	outline: none;
	background: white;
	display: none;
}
.FullscreenCloseBox i{
	margin-right: 10px;
	font-size: 20px;
}
.synario{
	width: 100%;
	border: 1px solid #aaa;
	border-radius: 10px;
	display: flex;
	flex-direction: column;
	padding: 20px;
	margin-top :20px;
	max-height: 50vh;
	overflow-y: auto;
}
.synario p{
	margin: 1em 0;
}
.synario ul{
	margin: 1em;
}
/*@media (max-width: 1024px) {
.synario{
width :100%;
padding-right :0px;
border-right: none;
padding-bottom :20px;
border-bottom: 1px solid #aaa;
height: auto;
overflow-y: inherit;
position: static;
margin-left: 0px;
margin-top: 10px;
}
}*/
.canvas .canvasMain {
	width: 100%;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
}

.canvas .canvasMain .welcomeMessage {
	width: 100%;
	margin-top: 20px;
}

.canvas .canvasMain .welcomeMessage h1 {
	font-size: 25px;
	font-weight: 500;
	line-height: 1.5;
}

@media (max-width: 480px) {
	.canvas .canvasMain .welcomeMessage h1 {
		font-size: 20px;
	}
}

.canvas .canvasMain .welcomeMessage h2 {
	font-size: 25px;
	font-weight: 400;
	line-height: 1.5;
}

@media (max-width: 480px) {
	.canvas .canvasMain .welcomeMessage h2 {
		font-size: 20px;
	}
}

.canvas .canvasMain .examBox {
	width: 100%;
	padding: 40px;
	margin-top: 30px;
	border-radius: 15px;
	-webkit-box-shadow: 0 0 20px rgba(0, 0, 0, 0.062);
	box-shadow: 0 0 20px rgba(0, 0, 0, 0.062);
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
}

@media (max-width: 480px) {
	.canvas .canvasMain .examBox {
		padding: 20px;
	}
}

.canvas .canvasMain .examBox .examBoxThumbanil {
	width: 400px;
}

@media (max-width: 1024px) {
	.canvas .canvasMain .examBox .examBoxThumbanil {
		width: 350px;
	}
}

@media (max-width: 480px) {
	.canvas .canvasMain .examBox .examBoxThumbanil {
		width: 100%;
	}
}

.canvas .canvasMain .examBox .examBoxThumbanil img {
	width: 100%;
	height: 100%;
	-o-object-fit: contain;
	object-fit: contain;
}

.canvas .canvasMain .examBox .examBoxDetails {
	width: 100%;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	margin-top: 50px;
}

.canvas .canvasMain .examBox .examBoxDetails h1 {
	font-size: 2em;
	font-weight: 500;
	text-align: center;
}

@media (max-width: 1024px) {
	.canvas .canvasMain .examBox .examBoxDetails h1 {
		font-size: 25px;
	}
}

@media (max-width: 480px) {
	.canvas .canvasMain .examBox .examBoxDetails h1 {
		font-size: 20px;
	}
}

.canvas .canvasMain .examBox .examBoxDetails p {
	text-align: center;
	width: 70%;
	font-size: 16px;
	line-height: 1.5;
	margin-top: 10px;
	color: #8d8d8d;
	font-weight: 300;
}

@media (max-width: 1024px) {
	.canvas .canvasMain .examBox .examBoxDetails p {
		width: 100%;
		font-size: 14px;
	}
}

@media (max-width: 480px) {
	.canvas .canvasMain .examBox .examBoxDetails p {
		font-size: 12px;
	}
}

.canvas .canvasMain .examBox .examBoxDetails a {
	text-decoration: none;
	width: 200px;
	padding: 15px;
	border-radius: 10px;
	background: #2731a5;
	color: white;
	font-size: 16px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	margin-top: 50px;
}

.canvas .canvasMain .examBox .examBoxDetails a:hover {
	-webkit-animation: pulse 1s;
	animation: pulse 1s;
	-webkit-box-shadow: 0 0 0 1.5em rgba(255, 255, 255, 0);
	box-shadow: 0 0 0 1.5em rgba(255, 255, 255, 0);
}

@-webkit-keyframes pulse {
	0% {
		-webkit-box-shadow: 0 0 0 0 #5434e265;
		box-shadow: 0 0 0 0 #5434e265;
	}
}

@keyframes pulse {
	0% {
		-webkit-box-shadow: 0 0 0 0 #5434e265;
		box-shadow: 0 0 0 0 #5434e265;
	}
}

@media (max-width: 1024px) {
	.canvas .canvasMain .examBox .examBoxDetails a {
		margin-top: 40px;
	}
}

@media (max-width: 480px) {
	.canvas .canvasMain .examBox .examBoxDetails a {
		padding: 12px;
		margin-top: 30px;
	}
}

.canvas .canvasMain .breadCrumbs {
	width: 100%;
	margin-top: 20px;
	width: 100%;
	margin-top: 20px;
	display: flex;
	justify-content: space-between;
	align-items: center;
	flex-wrap: wrap;
}

.canvas .canvasMain .breadCrumbs h1 {
	font-size: 25px;
	font-weight: 500;
	line-height: 1.5;
	color: black;
}

@media (max-width: 480px) {
	.canvas .canvasMain .breadCrumbs h1 {
		font-size: 20px;
	}
}

.canvas .canvasMain .breadCrumbs h1 a {
	text-decoration: none;
	color: black;
}
.canvas .canvasMain .breadCrumbs .breadCrumbsCol2{
	display: flex;
	flex-wrap: wrap;
	gap: 15px;
	align-items: center;
}
.canvas .canvasMain .breadCrumbs .breadCrumbsCol2 .resumeTestBtn{
	padding: 10px 30px;
	background: #5434e2;
	color: white;
	font-size: 14px;
	cursor: pointer;
	border-radius: 5px;
	transition: .3s;
	border: none;
	outline: none;
	display: flex;
	justify-content: center;
	align-items: center;
}
.canvas .canvasMain .breadCrumbs .breadCrumbsCol2 .resumeTestBtn:hover{
	transition: .3s;
	opacity: .7;
}
.loaderBtn{
	border: 2px solid white;
	width: 15px;
	height:15px;
	border-radius: 50%;
	margin-left: 10px;
	border-top: 2px solid transparent;
	animation: roat 1s infinite linear;
	display: none;
}
@keyframes roat {
	100%{
		transform: rotate(1turn)
	}
}



.canvas .canvasMain .formWrapper .info {
	width: 100%;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	margin-bottom: 30px;
}

.canvas .canvasMain .formWrapper .info p {
	font-size: 14px;
	opacity: 0.7;
}

.canvas .canvasMain .formWrapper .info .infoBtn {
	margin-left: 5px;
	font-size: 16px;
	cursor: pointer;
	position: relative;
}

.canvas .canvasMain .formWrapper .info .infoBtn:hover .infoDescription {
	visibility: visible;
	-webkit-transition: all 0.3s ease;
	transition: all 0.3s ease;
	opacity: 1;
}

.canvas .canvasMain .formWrapper .info .infoBtn i {
	color: #5434e2;
}

.canvas .canvasMain .formWrapper .info .infoBtn .infoDescription {
	position: absolute;
	background: white;
	z-index: 1;
	border-radius: 10px;
	padding: 15px;
	font-size: 14px;
	border: 1px solid #b5b5b5;
	width: 300px;
	line-height: 1.5;
	top: 100%;
	left: 0;
	-webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0.082);
	box-shadow: 0 0 10px rgba(0, 0, 0, 0.082);
	visibility: hidden;
	-webkit-transition: all 0.3s ease;
	transition: all 0.3s ease;
	opacity: 0;
}

@media (max-width: 480px) {
	.canvas .canvasMain .formWrapper .info .infoBtn .infoDescription {
		position: fixed;
		bottom: 0;
		width: 100%;
		left: 0;
		top: inherit;
		z-index: 150;
		border-bottom-left-radius: 0;
		border-bottom-right-radius: 0;
		font-size: 16px;
	}
}
.canvas .canvasMain .formWrapper {
	width: 100%;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
}

.canvas .canvasMain .formWrapper h1 {
	font-size: 20px;
	font-weight: 500;
	margin-top: 50px;
}

.canvas .canvasMain .formWrapper h1 .titleCheckbox {
	width: 100%;
	margin-top: 10px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
}

.canvas .canvasMain .formWrapper h1 .titleCheckbox input {
	padding: 0;
	height: initial;
	width: initial;
	margin-bottom: 0;
	display: none;
	cursor: pointer;
}

.canvas .canvasMain .formWrapper h1 .titleCheckbox label {
	position: relative;
	cursor: pointer;
}

.canvas .canvasMain .formWrapper h1 .titleCheckbox label:before {
	content: '';
	-webkit-appearance: none;
	background-color: transparent;
	border: 2px solid #E0E4E8;
	padding: 10px;
	display: inline-block;
	position: relative;
	vertical-align: middle;
	cursor: pointer;
	margin-right: 10px;
	border-radius: 9px;
}

.canvas .canvasMain .formWrapper h1 .titleCheckbox input:checked + label:after {
	content: '';
	display: block;
	position: absolute;
	top: 8px;
	left: 8px;
	width: 5px;
	height: 10px;
	border: solid white;
	border-width: 0 2px 2px 0;
	-webkit-transform: rotate(45deg);
	transform: rotate(45deg);
}

.canvas .canvasMain .formWrapper h1 .titleCheckbox input:checked + label:before {
	background: #5434e2;
	border: 2px solid #5434e2;
}

.canvas .canvasMain .formWrapper h1 .titleCheckbox input:checked + label:before {
	-webkit-animation: pulse26 1s;
	animation: pulse26 1s;
	-webkit-box-shadow: 0 0 0 1.5em rgba(255, 255, 255, 0);
	box-shadow: 0 0 0 1.5em rgba(255, 255, 255, 0);
}

@-webkit-keyframes pulse26 {
	0% {
		-webkit-box-shadow: 0 0 0 0 #5434e265;
		box-shadow: 0 0 0 0 #5434e265;
	}
}

@keyframes pulse26 {
	0% {
		-webkit-box-shadow: 0 0 0 0 #5434e265;
		box-shadow: 0 0 0 0 #5434e265;
	}
}

.canvas .canvasMain .formWrapper h1 .titleCheckbox span {
	font-size: 10px;
	color: #5434e2;
	border: 1px solid #E0E4E8;
	border-radius: 50px;
	padding: 3px 6px;
	margin-left: 10px;
}

.canvas .canvasMain .formWrapper .formGroupMainCont4 {
	width: 100%;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	position: relative;
	gap: 20px;
	margin-top: 20px;
}


.canvas .canvasMain .formWrapper .formGroupMainCont4 .formGroupCont4 {
	width: calc(100% / 4 - 15px);
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
}

@media (max-width: 1024px) {
	.canvas .canvasMain .formWrapper .formGroupMainCont4 .formGroupCont4 {
	width: calc(100% / 3 - 14px);
	}
}

@media (max-width: 768px) {
	.canvas .canvasMain .formWrapper .formGroupMainCont4 .formGroupCont4 {
	width: calc(100% / 2 - 10px);
	}
}

@media (max-width: 480px) {
	.canvas .canvasMain .formWrapper .formGroupMainCont4 .formGroupCont4 {
	width: 100%;
	}
}

.canvas .canvasMain .formWrapper .formGroupMainCont4 .formGroupCont4 label {
	font-size: 14px;
	font-weight: 400;
	line-height: 1.5;
}

.canvas .canvasMain .formWrapper .formGroupMainCont4 .formGroupCont4 .formToggle {
	width: 100%;
	margin-top: 10px;
}

.canvas .canvasMain .formWrapper .formGroupMainCont4 .formGroupCont4 .formToggle .--switch {
	position: relative;
	display: inline-block;
	width: 45px;
	height: 20px;
}

.canvas .canvasMain .formWrapper .formGroupMainCont4 .formGroupCont4 .formToggle .--switch input {
	display: none;
}

.canvas .canvasMain .formWrapper .formGroupMainCont4 .formGroupCont4 .formToggle .--slider .fa-check {
	color: #FFFFFF;
	position: absolute;
	left: 15px;
	font-size: 16px;
	display: none;
}

.canvas .canvasMain .formWrapper .formGroupMainCont4 .formGroupCont4 .formToggle .--slider .fa-times {
	color: #FFFFFF;
	position: absolute;
	font-size: 16px;
	right: 15px;
}

.canvas .canvasMain .formWrapper .formGroupMainCont4 .formGroupCont4 .formToggle .--slider {
	position: absolute;
	cursor: pointer;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background-color: #c4c4c4;
	-webkit-transition: .4s;
	transition: .4s;
	border-radius: 50px;
}

.canvas .canvasMain .formWrapper .formGroupMainCont4 .formGroupCont4 .formToggle .--slider:before {
	position: absolute;
	content: "";
	height: 22px;
	width: 22px;
	left: -1px;
	bottom: -1px;
	border-radius: 50%;
	background-color: white;
	-webkit-transition: .4s;
	transition: .4s;
	-webkit-box-shadow: 0 0 5px rgba(0, 0, 0, 0.185);
	box-shadow: 0 0 5px rgba(0, 0, 0, 0.185);
}

.canvas .canvasMain .formWrapper .formGroupMainCont4 .formGroupCont4 .formToggle .--switch input:checked + .--slider .fa-check {
	display: block;
}

.canvas .canvasMain .formWrapper .formGroupMainCont4 .formGroupCont4 .formToggle .--switch input:checked + .--slider .fa-times {
	display: none;
}

.canvas .canvasMain .formWrapper .formGroupMainCont4 .formGroupCont4 .formToggle .--switch input:checked + .--slider {
	background-color: #52b69a;
}

.canvas .canvasMain .formWrapper .formGroupMainCont4 .formGroupCont4 .formToggle .--switch input:focus + .--slider {
	-webkit-box-shadow: 0 0 1px #52b69a;
	box-shadow: 0 0 1px #52b69a;
}

.canvas .canvasMain .formWrapper .formGroupMainCont4 .formGroupCont4 .formToggle .--switch input:checked + .--slider:before {
	-webkit-transform: translateX(25px);
	transform: translateX(25px);
}

.canvas .canvasMain .formWrapper .formGroupMainCont4 .formGroupCont4 .formCheckbox {
	width: 100%;
	margin-top: 10px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	gap :10px;
}

.canvas .canvasMain .formWrapper .formGroupMainCont4 .formGroupCont4 .formCheckbox input {
	padding: 0;
	height: initial;
	width: initial;
	margin-bottom: 0;
	display: none;
	cursor: pointer;
}
.canvas .canvasMain .formWrapper .formGroupMainCont4 .formGroupCont4 .formCheckbox input:checked ~ label .icon{
	background: #5434e2;
	border-color: #5434e2;
}
.canvas .canvasMain .formWrapper .formGroupMainCont4 .formGroupCont4 .formCheckbox input:checked ~ label .icon::after{
	display: block;
}

.canvas .canvasMain .formWrapper .formGroupMainCont4 .formGroupCont4 .formCheckbox label {
	display :flex;
	align-items :center;
	gap :10px;
	cursor: pointer;
	width :100%;
}
.canvas .canvasMain .formWrapper .formGroupMainCont4 .formGroupCont4 .formCheckbox label:hover .icon{
	border-color: #5434e2;
	transition:.3s;
}
.canvas .canvasMain .formWrapper .formGroupMainCont4 .formGroupCont4 .formCheckbox label .icon{
	border: 2px solid #E0E4E8;
	display: inline-block;
	position: relative;
	cursor: pointer;
	border-radius: 9px;
	width: 25px;
	height: 25px;
	display: flex;
	justify-content :center;
	align-items :center;
	transition:.3s;
}
.canvas .canvasMain .formWrapper .formGroupMainCont4 .formGroupCont4 .formCheckbox label .icon::after{
	position: absolute;
	content: '';
	width: 5px;
	height: 10px;
    border-bottom: 2px solid #fff;
    border-right: 2px solid #fff;
    transform: rotate(45deg);
    top: 3px;
	display: none;
}

.canvas .canvasMain .formWrapper .formGroupMainCont4 .formGroupCont4 .formCheckbox label .detail{
	width :calc(100% - 35px);
	display :flex;
	align-items: center;
	gap :5px;
}
.canvas .canvasMain .formWrapper .formGroupMainCont4 .formGroupCont4 .formCheckbox label h4{
	font-size: 14px;
	font-weight :400;
}

/*.canvas .canvasMain .formWrapper .formGroupMainCont4 .formGroupCont4 .formCheckbox input:checked + label:after {
	content: '';
	display: block;
	position: absolute;
	top: 4px;
	left: 8px;
	width: 5px;
	height: 10px;
	border: solid white;
	border-width: 0 2px 2px 0;
	-webkit-transform: rotate(45deg);
	transform: rotate(45deg);
}

.canvas .canvasMain .formWrapper .formGroupMainCont4 .formGroupCont4 .formCheckbox input:checked + label:before {
	background: #5434e2;
	border: 2px solid #5434e2;
}*/

.canvas .canvasMain .formWrapper .formGroupMainCont4 .formGroupCont4 .formCheckbox input:disabled + label {
	opacity: 0.3;
}

.canvas .canvasMain .formWrapper .formGroupMainCont4 .formGroupCont4 .formCheckbox input:disabled ~ span {
	opacity: 0.3;
}

/*.canvas .canvasMain .formWrapper .formGroupMainCont4 .formGroupCont4 .formCheckbox input:checked + label:before {
	-webkit-animation: pulse25 1s;
	animation: pulse25 1s;
	-webkit-box-shadow: 0 0 0 1.5em rgba(255, 255, 255, 0);
	box-shadow: 0 0 0 1.5em rgba(255, 255, 255, 0);
}

@-webkit-keyframes pulse25 {
	0% {
		-webkit-box-shadow: 0 0 0 0 #5434e265;
		box-shadow: 0 0 0 0 #5434e265;
	}
}

@keyframes pulse25 {
	0% {
		-webkit-box-shadow: 0 0 0 0 #5434e265;
		box-shadow: 0 0 0 0 #5434e265;
	}
}*/

.canvas .canvasMain .formWrapper .formGroupMainCont4 .formGroupCont4 .formCheckbox span {
	font-size: 10px;
	color: #5434e2;
	border: 1px solid #E0E4E8;
	border-radius: 50px;
	padding: 3px 6px;
	margin-left: 5px;
}

.canvas .canvasMain .formWrapper .formGroupMainCont4 .formGroupCont4 .formGroupBtnArea {
	width: 100%;
	margin-top: 20px;
}

.canvas .canvasMain .formWrapper .formGroupMainCont4 .formGroupCont4 .formGroupBtnArea button {
	padding: 15px 30px;
	color: white;
	background: #5434e2;
	border-radius: 10px;
	outline: none;
	border: none;
	font-size: 16px;
	cursor: pointer;
}

@media (max-width: 480px) {
	.canvas .canvasMain .formWrapper .formGroupMainCont4 .formGroupCont4 .formGroupBtnArea button {
		width: 100%;
	}
}

.canvas .canvasMain .formWrapper .formGroupMainCont4 .formGroupCont4 .formGroupBtnArea button:hover {
	-webkit-animation: pulse2 1s;
	animation: pulse2 1s;
	-webkit-box-shadow: 0 0 0 1.5em rgba(255, 255, 255, 0);
	box-shadow: 0 0 0 1.5em rgba(255, 255, 255, 0);
}

@-webkit-keyframes pulse2 {
	0% {
		-webkit-box-shadow: 0 0 0 0 #5434e265;
		box-shadow: 0 0 0 0 #5434e265;
	}
}

@keyframes pulse2 {
	0% {
		-webkit-box-shadow: 0 0 0 0 #5434e265;
		box-shadow: 0 0 0 0 #5434e265;
	}
}

.canvas .canvasMain .formWrapper .formGroupMainCont4 .formGroupCont4 .formGroupBtnArea button:disabled {
	opacity: 0.5;
	cursor: not-allowed;
}

.canvas .canvasMain .formWrapper .formGroupMainCont4 .formGroupCont4 .formGroupBtnArea button:disabled:hover {
	-webkit-animation: none;
	animation: none;
}

.canvas .canvasMain .formWrapper .formGroupMainCont4 .formGroupContAllowdBox {
	width: 100%;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	margin-top: 20px;
}

.canvas .canvasMain .formWrapper .formGroupMainCont4 .formGroupContAllowdBox input {
	width: 100px;
	height: 40px;
	border: 2px solid #E0E4E8;
	border-radius: 10px;
	text-align: center;
	font-size: 20px;
	color: black;
	outline: none;
}

.canvas .canvasMain .formWrapper .formGroupMainCont4 .formGroupContAllowdBox input:focus {
	border: 2px solid #5434e2;
}

.canvas .canvasMain .formWrapper .formGroupMainCont4 .formGroupContAllowdBox input::-webkit-input-placeholder {
	color: black;
}

.canvas .canvasMain .formWrapper .formGroupMainCont4 .formGroupContAllowdBox input:-ms-input-placeholder {
	color: black;
}

.canvas .canvasMain .formWrapper .formGroupMainCont4 .formGroupContAllowdBox input::-ms-input-placeholder {
	color: black;
}

.canvas .canvasMain .formWrapper .formGroupMainCont4 .formGroupContAllowdBox input::placeholder {
	color: black;
}

.canvas .canvasMain .formWrapper .formGroupMainCont4 .formGroupContAllowdBox p {
	font-size: 14px;
	margin-left: 15px;
}

.canvas .canvasMain .formWrapper .formGroupMainCont4 .formGroupContAllowdBox span {
	font-size: 14px;
	color: white;
	border: 1px solid #5434e2;
	border-radius: 50px;
	background: #5434e2;
	padding: 4px 8px;
	margin-left: 10px;
}

@media (max-width: 480px) {
	.canvas .canvasMain .formWrapper .mobleformGroupCol2 {
		-webkit-box-flex: 0 !important;
		-ms-flex: 0 0 48% !important;
		flex: 0 0 48% !important;
	}
}

.canvas .canvasMain .examCanvas {
	width: 100%;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	/*margin-right: 10px;*/
}

.canvas .canvasMain .examCanvas .examCanvasHead {
	width: 100%;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	background: linear-gradient(45deg, #336aff, #00c3ff);
	padding: 10px;
	margin-top: 20px;
	border-radius: 15px;
	position: relative;
	overflow: hidden;
	z-index: 0;
}

@media (max-width: 768px) {
	.canvas .canvasMain .examCanvas .examCanvasHead {
		padding-top: 0;
	}
}

.canvas .canvasMain .examCanvas .examCanvasHead::before {
	position: absolute;
	content: '';
	top: 50%;
	left: 20%;
	width: 70%;
	height: 500px;
	background: linear-gradient(45deg, #03c4ff, rgba(0, 0, 0, 0));
	z-index: -1;
	border-radius: 50%;
	/*-webkit-animation: wave1 2s;
	animation: wave1 2s;
	-webkit-animation-direction: alternate;
	animation-direction: alternate;
	-webkit-animation-iteration-count: infinite;
	animation-iteration-count: infinite;*/
}

/*@-webkit-keyframes wave1 {
0% {
-webkit-transform: scale(1.05);
transform: scale(1.05);
}
100% {
-webkit-transform: scale(1);
transform: scale(1);
}
}

@keyframes wave1 {
0% {
-webkit-transform: scale(1.05);
transform: scale(1.05);
}
100% {
-webkit-transform: scale(1);
transform: scale(1);
}
}*/

@media (max-width: 480px) {
	.canvas .canvasMain .examCanvas .examCanvasHead::before {
		width: 300px;
		height: 300px;
		left: 30%;
		top: 60%;
	}
}

.canvas .canvasMain .examCanvas .examCanvasHead::after {
	position: absolute;
	content: '';
	top: -50%;
	right: -30%;
	width: 70%;
	height: 500px;
	background: linear-gradient(45deg, #30cfff, rgba(0, 0, 0, 0));
	z-index: -1;
	border-radius: 50%;
	/*-webkit-animation: wave2 1.5s;
	animation: wave2 1.5s;
	-webkit-animation-direction: alternate;
	animation-direction: alternate;
	-webkit-animation-iteration-count: infinite;
	animation-iteration-count: infinite;*/
}

/*@-webkit-keyframes wave2 {
0% {
-webkit-transform: scale(1.03);
transform: scale(1.03);
}
100% {
-webkit-transform: scale(1);
transform: scale(1);
}
}

@keyframes wave2 {
0% {
-webkit-transform: scale(1.03);
transform: scale(1.03);
}
100% {
-webkit-transform: scale(1);
transform: scale(1);
}
}*/

@media (max-width: 480px) {
	.canvas .canvasMain .examCanvas .examCanvasHead::after {
		width: 250px;
		height: 250px;
		top: 30%;
		right: -35%;
	}
}

.canvas .canvasMain .examCanvas .examCanvasHead .examCanvasHeadMain {
	-webkit-box-flex: 100%;
	-ms-flex: 100%;
	flex: 100%;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	/*-ms-flex-wrap: wrap;*/
	/*    flex-wrap: wrap;*/
}
@media(max-width:768px){
	.canvas .canvasMain .examCanvas .examCanvasHead .examCanvasHeadMain {
		-ms-flex-wrap: wrap;
		flex-wrap: wrap;
	}
}

.canvas .canvasMain .examCanvas .examCanvasHead .examCanvasHeadMain .examCanvasHeadBox {
	/*-webkit-box-flex: 0;*/
	/*    -ms-flex: 0 0 24%;*/
	/*        flex: 0 0 24%;*/
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
}

@media (max-width: 768px) {
	.canvas .canvasMain .examCanvas .examCanvasHead .examCanvasHeadMain .examCanvasHeadBox {
		-webkit-box-flex: 0;
		-ms-flex: 0 0 48%;
		flex: 0 0 48%;
		margin-top: 20px;
		-webkit-box-pack: start;
		-ms-flex-pack: start;
		justify-content: flex-start;
	}
}

@media (max-width: 480px) {
	.canvas .canvasMain .examCanvas .examCanvasHead .examCanvasHeadMain .examCanvasHeadBox {
		-webkit-box-flex: 100%;
		-ms-flex: 100%;
		flex: 100%;
	}
}
.canvas .canvasMain .examCanvas .examCanvasHead .examCanvasHeadMain .examCanvasHeadBox:nth-child(5){
	margin-top: 0px;
}
@media (max-width: 768px) {
	.canvas .canvasMain .examCanvas .examCanvasHead .examCanvasHeadMain .examCanvasHeadBox:nth-child(5){
		margin-top: 20px;
	}
}

.canvas .canvasMain .examCanvas .examCanvasHead .examCanvasHeadMain .examCanvasHeadBox h4 {
	font-size: 14px;
	color: #fff;
	font-weight: 300;
}

.canvas .canvasMain .examCanvas .examCanvasHead .examCanvasHeadMain .examCanvasHeadBox p {
	font-size: 16px;
	margin-top: 5px;
	color: #fff;
}

.canvas .canvasMain .examCanvas .examCanvasHead .examCanvasHeadMain .examCanvasHeadBox p span {
	font-size: 12px;
}

.canvas .canvasMain .examCanvas .examCanvasHead .examCanvasHeadMain .examCanvasHeadBox #countdown {
	font-weight: 700;
	width: 100px;
	border-radius: 10px;
	padding: 10px;
	text-align: center;
	background: rgba(255, 255, 255, 0.2);
	-webkit-box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.274);
	box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.274);
	backdrop-filter: blur(2px);
	-webkit-backdrop-filter: blur(2px);
	border-radius: 10px;
	border: 1px solid rgba(255, 255, 255, 0.18);
	position: relative;
	overflow: hidden;
}

.canvas .canvasMain .examCanvas .examCanvasHead .examCanvasHeadMain .examCanvasHeadBox #countdown::after {
	position: absolute;
	content: '';
	width: 15px;
	height: 100%;
	top: 0;
	left: -100%;
	background: rgba(255, 255, 255, 0.308);
	-webkit-animation: glowing 1000ms infinite;
	animation: glowing 1000ms infinite;
}

@-webkit-keyframes glowing {
	0% {
		left: -100%;
	}
	100% {
		left: 100%;
	}
}

@keyframes glowing {
	0% {
		left: -100%;
	}
	100% {
		left: 100%;
	}
}

.canvas .canvasMain .examCanvas .examCanvasBody {
	width: 100%;
	margin-top: 50px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	position: relative;
	z-index: 0;
}


.canvas .canvasMain .examCanvas .examCanvasBody .examQuestionBox {
	width: 100%;
	display: none;
}

.canvas .canvasMain .examCanvas .examCanvasBody .examQuestionBox .info {
	width: 100%;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	margin-bottom: 30px;
}

.canvas .canvasMain .examCanvas .examCanvasBody .examQuestionBox .info p {
	font-size: 14px;
	opacity: 0.7;
}

.canvas .canvasMain .examCanvas .examCanvasBody .examQuestionBox .info .infoBtn {
	margin-left: 5px;
	font-size: 16px;
	cursor: pointer;
	position: relative;
}

.canvas .canvasMain .examCanvas .examCanvasBody .examQuestionBox .info .infoBtn:hover .infoDescription {
	visibility: visible;
	-webkit-transition: all 0.3s ease;
	transition: all 0.3s ease;
	opacity: 1;
}

.canvas .canvasMain .examCanvas .examCanvasBody .examQuestionBox .info .infoBtn i {
	color: #5434e2;
}

.canvas .canvasMain .examCanvas .examCanvasBody .examQuestionBox .info .infoBtn .infoDescription {
	position: absolute;
	background: white;
	z-index: 1;
	border-radius: 10px;
	padding: 15px;
	font-size: 14px;
	width: 300px;
	line-height: 1.5;
	border: 1px solid #b5b5b5;
	top: 100%;
	left: 0;
	-webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0.082);
	box-shadow: 0 0 10px rgba(0, 0, 0, 0.082);
	visibility: hidden;
	-webkit-transition: all 0.3s ease;
	transition: all 0.3s ease;
	opacity: 0;
}

@media (max-width: 480px) {
	.canvas .canvasMain .examCanvas .examCanvasBody .examQuestionBox .info .infoBtn .infoDescription {
		position: fixed;
		bottom: 0;
		width: 100%;
		left: 0;
		top: inherit;
		z-index: 150;
		border-bottom-left-radius: 0;
		border-bottom-right-radius: 0;
		font-size: 16px;
	}
}

.canvas .canvasMain .examCanvas .examCanvasBody .examQuestionBox .info .exhibitPopupBtn {
	padding: 12px 40px;
	color: white;
	background: #ff8733;
	border-radius: 10px;
	outline: none;
	border: none;
	font-size: 16px;
	cursor: pointer;
	margin-left: 20px;
}


.canvas .canvasMain .examCanvas .examCanvasBody .examQuestionBox h1 {
	font-size: 18px;
	font-weight: 400;
	line-height: 1.5;
}

@media (max-width: 768px) {
	.canvas .canvasMain .examCanvas .examCanvasBody .examQuestionBox h1 {
		font-size: 18px;
	}
}

.canvas .canvasMain .examCanvas .examCanvasBody .examQuestionBox h1 input {
	border: none;
	border-bottom: 1px dashed black;
	outline: none;
	font-size: 25px;
	color: #5434e2;
	width: 200px;
}

.canvas .canvasMain .examCanvas .examCanvasBody .examQuestionBox .objectiveTypeExam {
	width: 100%;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
}

.canvas .canvasMain .examCanvas .examCanvasBody .examQuestionBox .objectiveTypeExam ul {
	width: 100%;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	margin-top: 10px;
}

.canvas .canvasMain .examCanvas .examCanvasBody .examQuestionBox .objectiveTypeExam ul li {
	list-style: none;
	margin-top: 15px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
}

.canvas .canvasMain .examCanvas .examCanvasBody .examQuestionBox .objectiveTypeExam ul li .objectiveTypeBtn {
	width: 30px;
	position: relative;
}

.canvas .canvasMain .examCanvas .examCanvasBody .examQuestionBox .objectiveTypeExam ul li .objectiveTypeBtn input {
	padding: 0;
	height: initial;
	width: initial;
	margin-bottom: 0;
	display: none;
	cursor: pointer;
}



.canvas .canvasMain .examCanvas .examCanvasBody .examQuestionBox .objectiveTypeExam ul .check .objectiveTypeBtn input:checked ~ label .checkBoxIcon{
	background: #5434e2;
	border-color:#5434e2;
}
.canvas .canvasMain .examCanvas .examCanvasBody .examQuestionBox .objectiveTypeExam ul .check .objectiveTypeBtn label .checkBoxIcon{
	width: 25px;
	height: 25px;
	border :2px solid #ddd;
	border-radius :7px;
	cursor: pointer;
	position: relative;
	display :flex;
	justify-content :center;
	align-items: center;
}
.canvas .canvasMain .examCanvas .examCanvasBody .examQuestionBox .objectiveTypeExam ul .check .objectiveTypeBtn input:checked + label .checkBoxIcon::after{
	position :absolute;
	content: '';
	width: 12px;
	height: 5px;
	border-left: 2px solid white;
	border-bottom: 2px solid white;
	transform: rotate(-45deg);
	top: 5px;
}







.canvas .canvasMain .examCanvas .examCanvasBody .examQuestionBox .objectiveTypeExam ul .rightAnswer .objectiveTypeBtn input:checked + label .checkBoxIcon{
	background: green;
	border-color: green;
}
.canvas .canvasMain .examCanvas .examCanvasBody .examQuestionBox .objectiveTypeExam ul .rightAnswer .objectiveTypeBtn input:checked + label .checkBoxIcon::after{
	position :absolute;
	content: '';
	width: 12px;
	height: 5px;
	border-left: 2px solid white;
	border-bottom: 2px solid white;
	transform: rotate(-45deg);
	top: 5px;
}



.canvas .canvasMain .examCanvas .examCanvasBody .examQuestionBox .objectiveTypeExam ul .wronAnswer .objectiveTypeBtn input:checked + label .checkBoxIcon{
	background: red;
	border-color: red;
}
.canvas .canvasMain .examCanvas .examCanvasBody .examQuestionBox .objectiveTypeExam ul .wronAnswer .objectiveTypeBtn input:checked + label .checkBoxIcon::after{
	position :absolute;
	content: '';
	width: 2px;
	height: 15px;
	transform: rotate(-45deg);
	background: white;
}
.canvas .canvasMain .examCanvas .examCanvasBody .examQuestionBox .objectiveTypeExam ul .wronAnswer .objectiveTypeBtn input:checked + label .checkBoxIcon::before{
	position :absolute;
	content: '';
	width: 2px;
	height: 15px;
	transform: rotate(45deg);
	background: white;
}

.canvas .canvasMain .examCanvas .examCanvasBody .examQuestionBox .objectiveTypeExam ul li .objectiveTypeBtn label {
	position: relative;
}
.canvas .canvasMain .examCanvas .examCanvasBody .examQuestionBox .objectiveTypeExam ul li .objectiveTypeBtn label .checkBoxIcon{
	width: 25px;
	height: 25px;
	border :2px solid #ddd;
	border-radius :7px;
	cursor: pointer;
	position: relative;
	display :flex;
	justify-content :center;
	align-items: center;
}





.canvas .canvasMain .examCanvas .examCanvasBody .examQuestionBox .objectiveTypeExam ul li p {
	width: calc(100% - 35px);
	margin-top: 2px;
	font-size: 18px;
	font-weight: 400;
	line-height: 1.5;
	cursor: pointer;
}

@media (max-width: 768px) {
	.canvas .canvasMain .examCanvas .examCanvasBody .examQuestionBox .objectiveTypeExam ul li p {
		margin-top: 0;
	}
}

.canvas .canvasMain .examCanvas .examCanvasBody .examQuestionBox .objectiveTypeExam ul .rightAnswer .objectiveTypeBtn input:checked + label:before {
	background: green;
	border: 2px solid green;
}

.canvas .canvasMain .examCanvas .examCanvasBody .examQuestionBox .objectiveTypeExam ul .rightAnswer p {
	color: green;
	font-weight: 400;
}

.canvas .canvasMain .examCanvas .examCanvasBody .examQuestionBox .objectiveTypeExam ul .wronAnswer .objectiveTypeBtn input:checked + label:before {
	background: red;
	border: 2px solid red;
}

.canvas .canvasMain .examCanvas .examCanvasBody .examQuestionBox .objectiveTypeExam ul .wronAnswer .objectiveTypeBtn input:checked + label:after {
	content: 'x';
	top: 0px;
	left: 8px;
	width: 5px;
	height: 10px;
	border: none;
	-webkit-transform: rotate(0deg);
	transform: rotate(0deg);
	color: white;
}

.canvas .canvasMain .examCanvas .examCanvasBody .examQuestionBox .objectiveTypeExam ul .wronAnswer p {
	color: red;
	font-weight: 400;
}

.canvas .canvasMain .examCanvas .examCanvasBody .examQuestionBox .multipleTypeExam {
	width: 100%;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
}

.canvas .canvasMain .examCanvas .examCanvasBody .examQuestionBox .multipleTypeExam ul {
	width: 100%;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	margin-top: 10px;
}

.canvas .canvasMain .examCanvas .examCanvasBody .examQuestionBox .multipleTypeExam ul li {
	list-style: none;
	margin-top: 15px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
}

.canvas .canvasMain .examCanvas .examCanvasBody .examQuestionBox .multipleTypeExam ul li .multipleTypeBtn {
	width: 30px;
	position: relative;
}

.canvas .canvasMain .examCanvas .examCanvasBody .examQuestionBox .multipleTypeExam ul li .multipleTypeBtn input {
	padding: 0;
	height: initial;
	width: initial;
	margin-bottom: 0;
	display: none;
	cursor: pointer;
}
.canvas .canvasMain .examCanvas .examCanvasBody .examQuestionBox .multipleTypeExam ul .rightAnswer .multipleTypeBtn input:checked + label .checkBoxIcon{
	background: green;
	border-color: green;
}
.canvas .canvasMain .examCanvas .examCanvasBody .examQuestionBox .multipleTypeExam ul .rightAnswer .multipleTypeBtn input:checked + label .checkBoxIcon::after{
	position :absolute;
	content: '';
	width: 12px;
	height: 5px;
	border-left: 2px solid white;
	border-bottom: 2px solid white;
	transform: rotate(-45deg);
	top: 5px;
}



.canvas .canvasMain .examCanvas .examCanvasBody .examQuestionBox .multipleTypeExam ul .wronAnswer .multipleTypeBtn input:checked + label .checkBoxIcon{
	background: red;
	border-color: red;
}
.canvas .canvasMain .examCanvas .examCanvasBody .examQuestionBox .multipleTypeExam ul .wronAnswer .multipleTypeBtn input:checked + label .checkBoxIcon::after{
	position :absolute;
	content: '';
	width: 2px;
	height: 15px;
	transform: rotate(-45deg);
	background: white;
}
.canvas .canvasMain .examCanvas .examCanvasBody .examQuestionBox .multipleTypeExam ul .wronAnswer .multipleTypeBtn input:checked + label .checkBoxIcon::before{
	position :absolute;
	content: '';
	width: 2px;
	height: 15px;
	transform: rotate(45deg);
	background: white;
}



.canvas .canvasMain .examCanvas .examCanvasBody .examQuestionBox .multipleTypeExam ul .check .multipleTypeBtn input:checked ~ label .checkBoxIcon{
	background: #5434e2;
	border-color:#5434e2;
}
.canvas .canvasMain .examCanvas .examCanvasBody .examQuestionBox .multipleTypeExam ul .check .multipleTypeBtn label .checkBoxIcon{
	width: 25px;
	height: 25px;
	border :2px solid #ddd;
	border-radius :7px;
	cursor: pointer;
	position: relative;
	display :flex;
	justify-content :center;
	align-items: center;
}
.canvas .canvasMain .examCanvas .examCanvasBody .examQuestionBox .multipleTypeExam ul .check .multipleTypeBtn input:checked + label .checkBoxIcon::after{
	position :absolute;
	content: '';
	width: 12px;
	height: 5px;
	border-left: 2px solid white;
	border-bottom: 2px solid white;
	transform: rotate(-45deg);
	top: 5px;
}



.canvas .canvasMain .examCanvas .examCanvasBody .examQuestionBox .multipleTypeExam ul li .multipleTypeBtn label {
	position: relative;
}
.canvas .canvasMain .examCanvas .examCanvasBody .examQuestionBox .multipleTypeExam ul li .multipleTypeBtn label .checkBoxIcon{
	width: 25px;
	height: 25px;
	border :2px solid #ddd;
	border-radius :7px;
	cursor: pointer;
	position: relative;
	display :flex;
	justify-content :center;
	align-items: center;
}




.canvas .canvasMain .examCanvas .examCanvasBody .examQuestionBox .multipleTypeExam ul li p {
	width: calc(100% - 35px);
	margin-top: 2px;
	font-size: 18px;
	font-weight: 400;
	line-height: 1.5;
	cursor: pointer;
}

@media (max-width: 768px) {
	.canvas .canvasMain .examCanvas .examCanvasBody .examQuestionBox .multipleTypeExam ul li p {
		margin-top: 0;
	}
}

/*.canvas .canvasMain .examCanvas .examCanvasBody .examQuestionBox .multipleTypeExam ul .rightAnswer .multipleTypeBtn input:checked + label:before {
background: green;
border: 2px solid green;
}*/

.canvas .canvasMain .examCanvas .examCanvasBody .examQuestionBox .multipleTypeExam ul .rightAnswer p {
	color: green;
	font-weight: 400;
}

/*.canvas .canvasMain .examCanvas .examCanvasBody .examQuestionBox .multipleTypeExam ul .wronAnswer .multipleTypeBtn input:checked + label:before {
background: red;
border: 2px solid red;
}*/

/*.canvas .canvasMain .examCanvas .examCanvasBody .examQuestionBox .multipleTypeExam ul .wronAnswer .multipleTypeBtn input:checked + label:after {
content: 'x';
top: 0.5px;
left: 6.5px;
width: 5px;
height: 10px;
border: none;
-webkit-transform: rotate(0deg);
transform: rotate(0deg);
color: white;
}*/

.canvas .canvasMain .examCanvas .examCanvasBody .examQuestionBox .multipleTypeExam ul .wronAnswer p {
	color: red;
	font-weight: 400;
}

.canvas .canvasMain .examCanvas .examCanvasBody .examQuestionBox .dragDropExam {
	width: 100%;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
}

.canvas .canvasMain .examCanvas .examCanvasBody .examQuestionBox .dragDropExam .dragDropExamMain {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	margin-top: 30px;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
}

.canvas .canvasMain .examCanvas .examCanvasBody .examQuestionBox .dragDropExam .dragDropExamMain .DragRoot {
	width: 100%;
}

.canvas .canvasMain .examCanvas .examCanvasBody .examQuestionBox .dragDropExam .dragDropExamMain .layout__wrapper {
	border-radius: 5px;
	width: 400px;
	border: 2px dashed #5434e265;
}

@media (max-width: 480px) {
	.canvas .canvasMain .examCanvas .examCanvasBody .examQuestionBox .dragDropExam .dragDropExamMain .layout__wrapper {
		width: 100%;
	}
}

.canvas .canvasMain .examCanvas .examCanvasBody .examQuestionBox .dragDropExam .dragDropExamMain .app-bar {
	border-radius: 3px;
}

.canvas .canvasMain .examCanvas .examCanvasBody .examQuestionBox .dragDropExam .dragDropExamMain .app-bar__title {
	color: var(--color-on-background);
	font-size: 1rem;
	font-weight: bold;
	padding: 1rem;
	text-align: center;
}

.canvas .canvasMain .examCanvas .examCanvasBody .examQuestionBox .dragDropExam .dragDropExamMain .list {
	list-style: none;
	margin: 0;
	min-height: 1.5rem;
	padding: 0;
	position: relative;
}

.canvas .canvasMain .examCanvas .examCanvasBody .examQuestionBox .dragDropExam .dragDropExamMain .card {
	background-color: #525d6d;
	cursor: pointer;
	color: white;
	padding: .66rem 1rem;
	position: relative;
	border-radius: 5px;
	font-size: 14px;
	font-weight: 100;
	width: 100%;
}

.canvas .canvasMain .examCanvas .examCanvasBody .examQuestionBox .dragDropExam .dragDropExamMain .list__item + .list__item {
	margin-top: .5rem;
}

.canvas .canvasMain .examCanvas .examCanvasBody .examQuestionBox .dragDropExam .dragDropExamMain .holder {
	padding: 20px;
}

.canvas .canvasMain .examCanvas .examCanvasBody .examQuestionBox .dragDropExam .dragDropExamMain .holder__title {
	background-color: #1da5f9;
	background-image: -webkit-gradient(linear, left top, right top, from(#028ce1), to(#6acbe0));
	background-image: linear-gradient(90deg, #028ce1 0%, #6acbe0 100%);
	border-radius: var(--border-radius-500);
	color: #ffffff;
	font-weight: bold;
	margin-bottom: 1rem;
	padding: .75rem 1rem;
}

.canvas .canvasMain .examCanvas .examCanvasBody .examQuestionBox .dragDropExam .dragDropExamMain .holder--tint-2 .holder__title {
	background-image: -webkit-gradient(linear, left top, right top, from(#2fd4bd), to(#66e887));
	background-image: linear-gradient(90deg, #2fd4bd 0%, #66e887 100%);
}

.canvas .canvasMain .examCanvas .examCanvasBody .examQuestionBox .dragDropExam .dragDropExamMain .holder--tint-3 .holder__title {
	background-image: -webkit-gradient(linear, left top, right top, color-stop(33%, #fe8080), to(#fea380));
	background-image: linear-gradient(90deg, #fe8080 33%, #fea380 100%);
}

.canvas .canvasMain .examCanvas .examCanvasBody .examQuestionBox .examSbtBtn {
	width: 100%;
	margin-top: 40px;
	display: flex;
	align-items: center;
}

.canvas .canvasMain .examCanvas .examCanvasBody .examQuestionBox .examSbtBtn button {
	padding: 12px 40px;
	color: white;
	background: #5434e2;
	border-radius: 10px;
	outline: none;
	border: none;
	font-size: 16px;
	cursor: pointer;
}

@media (max-width: 480px) {
	.canvas .canvasMain .examCanvas .examCanvasBody .examQuestionBox .examSbtBtn button {
		width: 100%;
	}
}

.canvas .canvasMain .examCanvas .examCanvasBody .examQuestionBox .examSbtBtn button:hover {
	-webkit-animation: pulse2 1s;
	animation: pulse2 1s;
	-webkit-box-shadow: 0 0 0 1.5em rgba(255, 255, 255, 0);
	box-shadow: 0 0 0 1.5em rgba(255, 255, 255, 0);
}

@keyframes pulse2 {
	0% {
		-webkit-box-shadow: 0 0 0 0 #5434e265;
		box-shadow: 0 0 0 0 #5434e265;
	}
}

.canvas .canvasMain .examCanvas .examCanvasBody .examQuestionBox .situation {
	width: 100%;
	position: fixed;
	right: -100%;
	width: 40%;
	top: 60px;
	background: white;
	z-index: 10;
	-webkit-box-shadow: 0 0 20px rgba(0, 0, 0, 0.096);
	box-shadow: 0 0 20px rgba(0, 0, 0, 0.096);
	padding: 20px;
	height: calc(100vh - 60px);
	transition: 0.2s;
}

@media(max-width:1024px){
	.canvas .canvasMain .examCanvas .examCanvasBody .examQuestionBox .situation {
		width: 60%;
		height: calc(100vh - 110px);
	}
}

@media(max-width:768px){
	.canvas .canvasMain .examCanvas .examCanvasBody .examQuestionBox .situation {
		width: 100%;
	}
}
.canvas .canvasMain .examCanvas .examCanvasBody .examQuestionBox .situationActive {
	right: 0;
	transition: 0.2s;
}

.canvas .canvasMain .examCanvas .examCanvasBody .examQuestionBox .situation h2 {
	font-size: 16px;
	font-weight: 500;
}
.canvas .canvasMain .examCanvas .examCanvasBody .examQuestionBox .situation .closeSituation{
	font-size: 20px;
	color: black;
	cursor: pointer;
	position: absolute;
	left: 20px;
	top: 20px;
	display: none;
}
@media(max-width:768px){
	.canvas .canvasMain .examCanvas .examCanvasBody .examQuestionBox .situation .closeSituation{
		display: block;
	}
}
.canvas .canvasMain .examCanvas .examCanvasBody .examQuestionBox .situation .situationMain {
	width: 100%;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	height: calc(100vh - 100px);
	overflow-y: auto;
}

@media(max-width:1024px){
	.canvas .canvasMain .examCanvas .examCanvasBody .examQuestionBox .situation .situationMain {
		height: calc(100vh - 180px);
	}
}

.canvas .canvasMain .examCanvas .examCanvasBody .examQuestionBox .situation .situationMain p {
	font-size: 16px;
	line-height: 1.7;
	margin-top: 20px;
}

.canvas .canvasMain .examCanvas .examCanvasBody .examQuestionBox .situation .situationMain .situationImage {
	width: 100%;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	-webkit-box-align: start;
	-ms-flex-align: start;
	align-items: flex-start;
}

.canvas .canvasMain .examCanvas .examCanvasBody .examQuestionBox .situation .situationMain .situationImage img {
	width: 48%;
	-o-object-fit: contain;
	object-fit: contain;
	margin-top: 30px;
}

@media (max-width: 480px) {
	.canvas .canvasMain .examCanvas .examCanvasBody .examQuestionBox .situation .situationMain .situationImage img {
		width: 100%;
	}
}

.canvas .canvasMain .examCanvas .examCanvasBody .examQuestionBox .explanation {
	width: 100%;
	margin-top: 30px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	gap :20px;
}

.canvas .canvasMain .examCanvas .examCanvasBody .examQuestionBox .explanation .explanationHead {
	width: 100%;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	flex-wrap: wrap;
	gap :20px;
	margin-bottom: 20px;
}

.canvas .canvasMain .examCanvas .examCanvasBody .examQuestionBox .explanation .explanationHead .answerExplanation {
	padding: 20px;
	border-radius: 10px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
}

.canvas .canvasMain .examCanvas .examCanvasBody .examQuestionBox .explanation .explanationHead .answerExplanation i {
	font-size: 30px;
}

.canvas .canvasMain .examCanvas .examCanvasBody .examQuestionBox .explanation .explanationHead .answerExplanation h4 {
	font-size: 14px;
	font-weight: 500;
	margin-top: 5px;
}

.canvas .canvasMain .examCanvas .examCanvasBody .examQuestionBox .explanation .explanationHead .answerExplanation p {
	font-size: 14px;
	margin-top: 15px;
	display:flex;
	flex-wrap:wrap;	
	align-items: center;	
}

.canvas .canvasMain .examCanvas .examCanvasBody .examQuestionBox .explanation .explanationHead .wronAnswer {
	border: 2px solid red;
	background: rgba(255, 0, 0, 0.075);
}

.canvas .canvasMain .examCanvas .examCanvasBody .examQuestionBox .explanation .explanationHead .wronAnswer i {
	color: red;
}

.canvas .canvasMain .examCanvas .examCanvasBody .examQuestionBox .explanation .explanationHead .wronAnswer h4 {
	color: red;
}

.canvas .canvasMain .examCanvas .examCanvasBody .examQuestionBox .explanation .explanationHead .rightAnswer {
	border: 2px solid green;
	background: rgba(0, 128, 0, 0.082);
}

.canvas .canvasMain .examCanvas .examCanvasBody .examQuestionBox .explanation .explanationHead .rightAnswer i {
	color: green;
}

.canvas .canvasMain .examCanvas .examCanvasBody .examQuestionBox .explanation .explanationHead .rightAnswer h4 {
	color: green;
}

.canvas .canvasMain .examCanvas .examCanvasBody .examQuestionBox .explanation .explanationHead .timeSpend {
	margin-left: 20px;
	background: #fff;
	-webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0.089);
	box-shadow: 0 0 10px rgba(0, 0, 0, 0.089);
}

.canvas .canvasMain .examCanvas .examCanvasBody .examQuestionBox .explanation .explanationBody {
	width: 100%;
	-webkit-box-shadow: 0 0 20px rgba(0, 0, 0, 0.062);
	box-shadow: 0 0 20px rgba(0, 0, 0, 0.062);
	padding: 35px;
	border-radius: 10px;
	font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
	margin-top: 10px;

}
.canvas .canvasMain .examCanvas .examCanvasBody .examQuestionBox .explanation .explanationBody ul , .canvas .canvasMain .examCanvas .examCanvasBody .examQuestionBox .explanation .explanationBody ol {
	margin : 1em;
	line-height: 1.4em;
}
.canvas .canvasMain .examCanvas .examCanvasBody .examQuestionBox .explanation .explanationBody h2 {
	font-size: 20px;
	font-weight: 500;
	border-bottom: 1px solid #8b8b8b;
	padding-bottom: 20px;
	margin-bottom: 20px;
}

.canvas .canvasMain .examCanvas .examCanvasBody .examQuestionBox .explanation .explanationBody p {
	font-size: 16px;
	margin : 1em 0em;
}
@media(max-width:768px){
	.canvas .canvasMain .examCanvas .examCanvasBody .examQuestionBox .explanation .explanationBody p img{
		width: 100% !important;
		height: 100% !important;
		object-fit: contain !important;
	}
}
.canvas .canvasMain .examCanvas .examCanvasBody .examQuestionBox .explanation .explanationBody td{
	padding :10px;
}
.canvas .canvasMain .examCanvas .examCanvasBody .examQuestionBox .explanation .explanationBody ul, ol{
	/*margin-left :30px;*/
}
.canvas .canvasMain .examCanvas .examCanvasBody .examQuestionBox .tabDragDropBox{
	width: 100%;
	display: flex;
	flex-direction: column;
	margin-top: 50px;
}
.canvas .canvasMain .examCanvas .examCanvasBody .examQuestionBox .tabDragDropBox .tabDragDropBoxHead{
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
}
.canvas .canvasMain .examCanvas .examCanvasBody .examQuestionBox .tabDragDropBox .tabDragDropBoxHead .tabDragDropBoxHeadCol1{
	width: 100%;
	display: flex;
	flex-direction: column;
	gap: 30px;
	position: relative;
}
.canvas .canvasMain .examCanvas .examCanvasBody .examQuestionBox .tabDragDropBox .tabDragDropBoxHead .tabDragDropBoxHeadCol1 .blockCard1{
	position: absolute;
	z-index: 4;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	display: none;
}
.canvas .canvasMain .examCanvas .examCanvasBody .examQuestionBox .tabDragDropBox .tabDragDropBoxHead .tabDragDropBoxHeadCol1 .blockCard2{
	position: absolute;
	z-index: 4;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	display: none;
}
.canvas .canvasMain .examCanvas .examCanvasBody .examQuestionBox .tabDragDropBox .tabDragDropBoxHead .tabDragDropBoxHeadCol1 .blockCard3{
	position: absolute;
	z-index: 4;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	display: none;
}
.canvas .canvasMain .examCanvas .examCanvasBody .examQuestionBox .tabDragDropBox .tabDragDropBoxHead .tabDragDropBoxHeadCol1 .tabDragDropBoxActionBox{
	width: 100%;
	padding: 20px;
	height: 120px;
	border: 2px dashed #ccc;
	border-radius: 10px;
	background: #f3f3f3;
	display: flex;
	justify-content: center;
	align-items: center;
	position: relative;
	z-index: 0;
}
.canvas .canvasMain .examCanvas .examCanvasBody .examQuestionBox .tabDragDropBox .tabDragDropBoxHead .tabDragDropBoxHeadCol1 .tabDragDropBoxActionBox span{
	font-size: 14px;
	font-weight: 400;
	position: absolute;
	z-index: -1;
}
.canvas .canvasMain .examCanvas .examCanvasBody .examQuestionBox .tabDragDropBox .tabDragDropBoxHead .tabDragDropBoxHeadCol1 .tabDragDropBoxActionBox .draggable1{
	width: 100%;
	padding: 10px;
	border-radius: 10px;
	font-size: 14px;
	background: #f3f4ff;
	border: 1px solid #aab1fe;
	cursor: move;
	height: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
}
.canvas .canvasMain .examCanvas .examCanvasBody .examQuestionBox .tabDragDropBox .tabDragDropBoxHead .tabDragDropBoxHeadCol1 .tabDragDropBoxActionBox .draggable2{
	width: 100%;
	padding: 10px;
	border-radius: 10px;
	font-size: 14px;
	background: #f3f4ff;
	border: 1px solid #aab1fe;
	cursor: move;
	height: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
}
.canvas .canvasMain .examCanvas .examCanvasBody .examQuestionBox .tabDragDropBox .tabDragDropBoxHead .tabDragDropBoxHeadCol1 .tabDragDropBoxActionBox .draggable3{
	width: 100%;
	padding: 10px;
	border-radius: 10px;
	font-size: 14px;
	background: #f3f4ff;
	border: 1px solid #aab1fe;
	cursor: move;
	height: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
}
.canvas .canvasMain .examCanvas .examCanvasBody .examQuestionBox .tabDragDropBox .tabDragDropBoxHead .tabDragDropBoxHeadGap{
	position: relative;
	height: 100%;
	width: 100px;
}
.canvas .canvasMain .examCanvas .examCanvasBody .examQuestionBox .tabDragDropBox .tabDragDropBoxHead .tabDragDropBoxHeadGap .tabDragDropBoxHeadGapLine1{
	width: 120px;
	height: 2px;
	background: #ccc;
	transform: rotate(35deg);
	position: relative;
	top: -35px;
	left: -10px;
}
.canvas .canvasMain .examCanvas .examCanvasBody .examQuestionBox .tabDragDropBox .tabDragDropBoxHead .tabDragDropBoxHeadGap .tabDragDropBoxHeadGapLine2{
	width: 120px;
	height: 2px;
	background: #ccc;
	transform: rotate(-35deg);
	position: relative;
	bottom: -35px;
	left: -10px;
}
.canvas .canvasMain .examCanvas .examCanvasBody .examQuestionBox .tabDragDropBox .tabDragDropBoxHead .tabDragDropBoxHeadGap .tabDragDropBoxHeadGapLine3{
	width: 120px;
	height: 2px;
	background: #ccc;
	transform: rotate(-35deg);
	position: relative;
	top: -35px;
	left: -10px;
}
.canvas .canvasMain .examCanvas .examCanvasBody .examQuestionBox .tabDragDropBox .tabDragDropBoxHead .tabDragDropBoxHeadGap .tabDragDropBoxHeadGapLine4{
	width: 120px;
	height: 2px;
	background: #ccc;
	transform: rotate(35deg);
	position: relative;
	bottom: -35px;
	left: -10px;
}
.canvas .canvasMain .examCanvas .examCanvasBody .examQuestionBox .tabDragDropBox .tabDragDropBoxBody{
	width: 100%;
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
	margin-top: 50px;
	align-items: flex-start;
}
.canvas .canvasMain .examCanvas .examCanvasBody .examQuestionBox .tabDragDropBox .tabDragDropBoxBody .tabDragDropBoxCol{
	flex: 0 0 30%;
	display: flex;
	flex-direction: column;
	background: white;
	margin-top: 30px;
	padding: 20px;
	border-radius: 10px;
	border: 2px solid #F5EDCE;
	position: relative;
}
.canvas .canvasMain .examCanvas .examCanvasBody .examQuestionBox .tabDragDropBox .tabDragDropBoxBody .tabDragDropBoxCol .blockCard1{
	position: absolute;
	z-index: 4;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	display: none;
}
.canvas .canvasMain .examCanvas .examCanvasBody .examQuestionBox .tabDragDropBox .tabDragDropBoxBody .tabDragDropBoxCol .blockCard2{
	position: absolute;
	z-index: 4;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	display: none;
}
.canvas .canvasMain .examCanvas .examCanvasBody .examQuestionBox .tabDragDropBox .tabDragDropBoxBody .tabDragDropBoxCol .blockCard3{
	position: absolute;
	z-index: 4;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	display: none;
}
@media(max-width:1024px){
	.canvas .canvasMain .examCanvas .examCanvasBody .examQuestionBox .tabDragDropBox .tabDragDropBoxBody .tabDragDropBoxCol{
		flex: 0 0 48%;
	}
}
@media(max-width:480px){
	.canvas .canvasMain .examCanvas .examCanvasBody .examQuestionBox .tabDragDropBox .tabDragDropBoxBody .tabDragDropBoxCol{
		flex: 100%;
	}
}
.canvas .canvasMain .examCanvas .examCanvasBody .examQuestionBox .tabDragDropBox .tabDragDropBoxBody .tabDragDropBoxCol h2{
	text-align: center;
	font-size: 20px;
	font-weight: 500;
}
.canvas .canvasMain .examCanvas .examCanvasBody .examQuestionBox .tabDragDropBox .tabDragDropBoxBody .tabDragDropBoxCol .dragArea{
	width: 100%;
	display: flex;
	flex-direction: column;
	gap: 10px;
	margin-top: 20px;
	height: 100%;
	min-height: 50px;
}
.canvas .canvasMain .examCanvas .examCanvasBody .examQuestionBox .tabDragDropBox .tabDragDropBoxBody .tabDragDropBoxCol .dragArea p{
	width: 100%;
	padding: 10px;
	border-radius: 10px;
	font-size: 14px;
	background: #f3f4ff;
	border: 1px solid #aab1fe;
	cursor: move;
}
.dragging{
	opacity: .5;
	background: #BAD7E9 !important;
}

.canvas .canvasMain .examCanvas .examCanvasBody .examQuestionBox .checkboxRadioButtonTable{
	width: 100%;
	margin-top: 50px;
}
.canvas .canvasMain .examCanvas .examCanvasBody .examQuestionBox .checkboxRadioButtonTable table{
	width: 100%;
	border-collapse: collapse;
}
.canvas .canvasMain .examCanvas .examCanvasBody .examQuestionBox .checkboxRadioButtonTable table th{
	background: #c5664a;
	border: 1px solid #ccc;
	padding: 10px 20px;
	font-size: 16px;
	font-weight: 500;
	color: white;
}
@media(max-width:480px){
	.canvas .canvasMain .examCanvas .examCanvasBody .examQuestionBox .checkboxRadioButtonTable table th{
		font-size: 12px;
		padding: 7px 10px;
	}
}
.canvas .canvasMain .examCanvas .examCanvasBody .examQuestionBox .checkboxRadioButtonTable table th:nth-of-type(1){
	text-align: left;
}
.canvas .canvasMain .examCanvas .examCanvasBody .examQuestionBox .checkboxRadioButtonTable table td{
	border: 1px solid #ccc;
	padding: 10px 20px;
	font-size: 14px;
}
@media(max-width:480px){
	.canvas .canvasMain .examCanvas .examCanvasBody .examQuestionBox .checkboxRadioButtonTable table td{
		font-size: 12px;
		padding: 7px 10px;
	}
}
.canvas .canvasMain .examCanvas .examCanvasBody .examQuestionBox .checkboxRadioButtonTable table td:nth-of-type(1){
	text-align: left;
}
.canvas .canvasMain .examCanvas .examCanvasBody .examQuestionBox .checkboxRadioButtonTable table td .checkboxRadioButtonTableRadio{
	display: flex;
	justify-content: center;
	align-items: center;
}
.canvas .canvasMain .examCanvas .examCanvasBody .examQuestionBox .checkboxRadioButtonTable table td .checkboxRadioButtonTableRadio input{
	display: none;
}
.canvas .canvasMain .examCanvas .examCanvasBody .examQuestionBox .checkboxRadioButtonTable table td .checkboxRadioButtonTableRadio label{
	position: relative;
	width: 20px;
	height: 20px;
	border: 2px solid #FF8B13;
	border-radius: 50%;
	display: flex;
	justify-content: center;
	align-items: center;
	cursor: pointer;
}
.canvas .canvasMain .examCanvas .examCanvasBody .examQuestionBox .checkboxRadioButtonTable table td .checkboxRadioButtonTableRadio label::after{
	position: absolute;
	content: '';
	width: 10px;
	height: 10px;
	background: #FF8B13;
	border-radius: 50%;
	display: none;
}
.canvas .canvasMain .examCanvas .examCanvasBody .examQuestionBox .checkboxRadioButtonTable table td .checkboxRadioButtonTableRadio input:checked ~ label::after{
	display: block;
}
.canvas .canvasMain .examCanvas .examCanvasBody .examQuestionBox .checkboxRadioButtonTable table td .checkboxRadioButtonTableCheckbox{
	display: flex;
	justify-content: center;
	align-items: center;
}
.canvas .canvasMain .examCanvas .examCanvasBody .examQuestionBox .checkboxRadioButtonTable table td .checkboxRadioButtonTableCheckbox input{
	display: none;
}
.canvas .canvasMain .examCanvas .examCanvasBody .examQuestionBox .checkboxRadioButtonTable table td .checkboxRadioButtonTableCheckbox label{
	position: relative;
	width: 20px;
	height: 20px;
	border: 2px solid #FF8B13;
	border-radius: 5px;
	display: flex;
	justify-content: center;
	align-items: center;
	cursor: pointer;
}
.canvas .canvasMain .examCanvas .examCanvasBody .examQuestionBox .checkboxRadioButtonTable table td .checkboxRadioButtonTableCheckbox label::after{
	position: absolute;
	content: '';
	width: 10px;
	height: 5px;
	border-left: 2px solid white;
	border-bottom: 2px solid white;
	transform: rotate(-45deg);
	display: none;
	top: 3px;
}
.canvas .canvasMain .examCanvas .examCanvasBody .examQuestionBox .checkboxRadioButtonTable table td .checkboxRadioButtonTableCheckbox input:checked ~ label{
	background: #FF8B13;
}
.canvas .canvasMain .examCanvas .examCanvasBody .examQuestionBox .checkboxRadioButtonTable table td .checkboxRadioButtonTableCheckbox input:checked ~ label::after{
	display: block;
}
.canvas .canvasMain .examCanvas .examCanvasBody .examQuestionBox .checkboxRadioButtonTable table td select{
	border: 1px solid #aaa;
	border-radius: 5px;
	outline: none;
	padding: 5px 10px;
	font-size: 14px;
}

.canvas .canvasMain .examCanvas .examCanvasBody .examQuestionBox .dropDownBetweenSentence{
	width: 100%;
	margin-top: 50px;
	border: 1px solid #A084E8;
	padding: 20px;
	border-radius: 10px;
	flex-wrap:wrap;
	gap : 10px;
}
.canvas .canvasMain .examCanvas .examCanvasBody .examQuestionBox .dropDownBetweenSentence p{
	font-size: 16px;
	line-height: 2.2;
}
.canvas .canvasMain .examCanvas .examCanvasBody .examQuestionBox .dropDownBetweenSentence .prDiv{
	font-size: 16px;
	line-height: 2.2;
}
.canvas .canvasMain .examCanvas .examCanvasBody .examQuestionBox .dropDownBetweenSentence .prDiv p{
	display: table-cell;
	cursor: move;
}
.canvas .canvasMain .examCanvas .examCanvasBody .examQuestionBox .dropDownBetweenSentence p select{
	border: 1px solid #aaa;
	height: 35px;
	padding: 0px 10px;
	border-radius: 5px;
	outline: none;
	margin: 0px 5px;
}
.canvas .canvasMain .examCanvas .examCanvasBody .examQuestionBox .dropDownBetweenSentence .prDiv .droptextArea{
	background: #9df0f6;
	height: 35px;
	min-width: 200px;
	display: inline-block;
	position: relative;
	top: 12.5px;
	padding: 0px 10px;
}
.dropDownBetweenSentence select{
	border :1px solid #aaa;
	border-radius :5px;
	outline: none;
	margin-right: 5px;
}
.dropDownBetweenSentenceDargArea{
	width: 100%;
	display: flex;
	flex-direction: column;
}
.canvas .canvasMain .examCanvas .examCanvasBody .examQuestionBox .dropDownBetweenSentenceOptions{
	width: 400px;
	display: flex;
	flex-direction: column;
	background: white;
	margin-top: 30px;
	padding: 20px;
	border-radius: 10px;
	border: 2px solid #F5EDCE;
}
@media(max-width:480px){
	.canvas .canvasMain .examCanvas .examCanvasBody .examQuestionBox .dropDownBetweenSentenceOptions{
		width: 100%;
	}
}
.canvas .canvasMain .examCanvas .examCanvasBody .examQuestionBox .dropDownBetweenSentenceOptions h2{
	text-align: center;
	font-size: 20px;
	font-weight: 500;
}
.canvas .canvasMain .examCanvas .examCanvasBody .examQuestionBox .dropDownBetweenSentenceOptions .dropDownBetweenSentenceOptionsDragArea{
	width: 100%;
	display: flex;
	flex-direction: column;
	gap: 10px;
	margin-top: 20px;
	height: 100%;
	min-height: 50px;
}
.canvas .canvasMain .examCanvas .examCanvasBody .examQuestionBox .dropDownBetweenSentenceOptions .dropDownBetweenSentenceOptionsDragArea p{
	width: 100%;
	padding: 10px;
	border-radius: 10px;
	font-size: 14px;
	background: #f3f4ff;
	border: 1px solid #aab1fe;
	cursor: move;
}

.canvas .canvasMain .examCanvas .examCanvasBody .examQuestionBox  .matchTheFollowing{
	width: 100%;
	display: flex;
	flex-wrap: wrap;
	margin-top: 50px;
	gap: 10px;
}
.canvas .canvasMain .examCanvas .examCanvasBody .examQuestionBox  .matchTheFollowing .matchTheFollowingBox{
	width: 400px;
	display: flex;
	flex-direction: column;
	background: white;
	border-radius: 10px;
	border: 2px solid #F5EDCE;
}
@media(max-width:480px){
	.canvas .canvasMain .examCanvas .examCanvasBody .examQuestionBox  .matchTheFollowing .matchTheFollowingBox{
		width: 100%;
	}
}
.canvas .canvasMain .examCanvas .examCanvasBody .examQuestionBox  .matchTheFollowing .arrowLine{
	display: flex;
	align-items: center;
	position: relative;
	width: 40px;
}
.canvas .canvasMain .examCanvas .examCanvasBody .examQuestionBox  .matchTheFollowing .arrowLine .arrowLineBox1{
	width: 10px;
	height: 10px;
	border-left: 2px solid black;
	border-bottom: 2px solid black;
	transform: rotate(45deg);
	position: absolute;
	left: 0;
}
.canvas .canvasMain .examCanvas .examCanvasBody .examQuestionBox  .matchTheFollowing .arrowLine .arrowLineBox2{
	width: 100%;
	height: 2px;
	background: black;
	position: absolute;
}
.canvas .canvasMain .examCanvas .examCanvasBody .examQuestionBox  .matchTheFollowing .arrowLine .arrowLineBox3{
	width: 10px;
	height: 10px;
	border-right: 2px solid black;
	border-bottom: 2px solid black;
	transform: rotate(-45deg);
	position: absolute;
	right: 0;
}

.canvas .canvasMain .examCanvas .examCanvasBody .examQuestionBox  .matchTheFollowing .arrowLine2{
	display: flex;
	flex-direction :column;
	position: relative;
	align-items: center;
	justify-content: center;
}
.canvas .canvasMain .examCanvas .examCanvasBody .examQuestionBox  .matchTheFollowing .arrowLine2 .arrowLineBox1{
	width: 10px;
	height: 10px;
	border-left: 2px solid black;
	border-top: 2px solid black;
	position: absolute;
	top: calc(50% - 20px);
	transform: rotate(45deg);
	left: -4px;
}
.canvas .canvasMain .examCanvas .examCanvasBody .examQuestionBox  .matchTheFollowing .arrowLine2 .arrowLineBox2{
	width: 2px;
	height: 40px;
	background: black;
	position: absolute;
	left: 0;
}
.canvas .canvasMain .examCanvas .examCanvasBody .examQuestionBox  .matchTheFollowing .arrowLine2 .arrowLineBox3{
	width: 10px;
	height: 10px;
	border-right: 2px solid black;
	border-bottom: 2px solid black;
	transform: rotate(45deg);
	position: absolute;
	bottom: calc(50% - 20px);
	left: -4px;
}
.canvas .canvasMain .examCanvas .examCanvasBody .examQuestionBox  .matchTheFollowing .matchTheFollowingBox .matchTheFollowingBoxHead{
	width: 100%;
	padding: 15px 20px;
	border-bottom: 2px solid #F5EDCE;
	display: flex;
	justify-content: center;
	align-items: center;
	flex-direction: column;
	text-align: center;
	font-size: 20px;
	font-weight: 500;
}
.canvas .canvasMain .examCanvas .examCanvasBody .examQuestionBox  .matchTheFollowing .matchTheFollowingBox .matchTheFollowingBoxBody{
	width: 100%;
	padding: 15px 20px;
	display: flex;
	flex-direction: column;
	gap: 10px;
	height: 100%;
}
.canvas .canvasMain .examCanvas .examCanvasBody .examQuestionBox  .matchTheFollowing .matchTheFollowingBox .matchTheFollowingBoxBody p{
	width: 100%;
	padding: 10px;
	border-radius: 10px;
	font-size: 14px;
	background: #f3f4ff;
	border: 1px solid #aab1fe;
	cursor: move;
}
.canvas .canvasMain .examCanvas .examCanvasBody .examQuestionBox  .matchTheFollowing .matchTheFollowingBox .matchTheFollowingBoxBody .dragging{
	transform: scale(1.1);
}
.canvas .canvasMain .examCanvas .examCanvasBody .examQuestionBox .tableSelectDropdown{
	width :100%;
	margin-top: 20px;
}

.canvas .canvasMain .examCanvas .examCanvasBody .examQuestionBox .tableSelectDropdown table{
	width: 100%;
	border-collapse: collapse;
}
.canvas .canvasMain .examCanvas .examCanvasBody .examQuestionBox .tableSelectDropdown table th{
	background: #c5664a;
	border: 1px solid #ccc;
	padding: 10px 20px;
	font-size: 16px;
	font-weight: 500;
	color: white;
}
@media(max-width:480px){
	.canvas .canvasMain .examCanvas .examCanvasBody .examQuestionBox .tableSelectDropdown table th{
		font-size: 12px;
		padding: 7px 10px;
	}
}
.canvas .canvasMain .examCanvas .examCanvasBody .examQuestionBox .tableSelectDropdown table th:nth-of-type(1){
	text-align: left;
}
.canvas .canvasMain .examCanvas .examCanvasBody .examQuestionBox .tableSelectDropdown table tbody  tr:nth-of-type(odd){
	background :#fff9f7;
}
.canvas .canvasMain .examCanvas .examCanvasBody .examQuestionBox .tableSelectDropdown table td{
	border: 1px solid #ccc;
	padding: 10px 20px;
	font-size: 14px;
}
@media(max-width:480px){
	.canvas .canvasMain .examCanvas .examCanvasBody .examQuestionBox .tableSelectDropdown table td{
		font-size: 12px;
		padding: 7px 10px;
	}
}
.canvas .canvasMain .examCanvas .examCanvasBody .examQuestionBox .tableSelectDropdown table td:nth-of-type(1){
	text-align: left;
}
.canvas .canvasMain .examCanvas .examCanvasBody .examQuestionBox .tableSelectDropdown table td .tableSelectDropdownBox{
	display :flex;
}
.canvas .canvasMain .examCanvas .examCanvasBody .examQuestionBox .tableSelectDropdown table td .tableSelectDropdownBox select{
	width: auto;
	border: 1px solid #aaa;
	border-radius: 5px;
	padding: 0px 10px;
	height: 40px;
	font-size: 16px;
	outline: none;
}

.canvas .canvasMain .examCanvas .examCanvasBody .examQuestionBox .selectParagraphBox{
	width: 100%;
	border: 1px solid #aaa;
	padding: 20px;
	display: flex;
	flex-direction :column;
	margin-top :20px;
}
.canvas .canvasMain .examCanvas .examCanvasBody .examQuestionBox .selectParagraphBox .selectParagraphBoxTitle{
	font-size: 18px;
	font-weight: 600;
}
.canvas .canvasMain .examCanvas .examCanvasBody .examQuestionBox .selectParagraphBox .selectParagraphBoxContent{
	width: 100%;
}
.canvas .canvasMain .examCanvas .examCanvasBody .examQuestionBox .selectParagraphBox .selectParagraphBoxContent::selection {
	color: black;
	background: transparent;
}
.canvas .canvasMain .examCanvas .examCanvasBody .examQuestionBox .selectParagraphBox .selectParagraphBoxContent p{
	display: flex;
	flex-wrap: wrap;
	row-gap: 2px;
	margin-top: 20px;
}
.canvas .canvasMain .examCanvas .examCanvasBody .examQuestionBox .selectParagraphBox .selectParagraphBoxContent .word {
	cursor: pointer;
	padding: 2px;
	display: inline-block;

}
.canvas .canvasMain .examCanvas .examCanvasBody .examQuestionBox .selectParagraphBox .selectParagraphBoxContent .word.selected {
	background-color: yellow;
}
.canvas .canvasMain .examCanvas .examCanvasBody .examQuestionBox .selectParagraphBox .selectParagraphBoxContent .word.grouped {
	background-color: yellow;
}

.canvas .canvasMain .examCanvas .examCanvasBody .examQuestionBox .tableCellSelect{
	width :100%;
	margin-top: 20px;
}

.canvas .canvasMain .examCanvas .examCanvasBody .examQuestionBox .tableCellSelect table{
	width: 100%;
	border-collapse: collapse;
}
.canvas .canvasMain .examCanvas .examCanvasBody .examQuestionBox .tableCellSelect table th{
	background: #c5664a;
	border: 1px solid #ccc;
	padding: 10px 20px;
	font-size: 16px;
	font-weight: 500;
	color: white;
}
@media(max-width:480px){
	.canvas .canvasMain .examCanvas .examCanvasBody .examQuestionBox .tableCellSelect table th{
		font-size: 12px;
		padding: 7px 10px;
	}
}
.canvas .canvasMain .examCanvas .examCanvasBody .examQuestionBox .tableCellSelect table th:nth-of-type(1){
	text-align: left;
}
.canvas .canvasMain .examCanvas .examCanvasBody .examQuestionBox .tableCellSelect table tbody  tr:nth-of-type(odd){
	background :#fff9f7;
}
.canvas .canvasMain .examCanvas .examCanvasBody .examQuestionBox .tableCellSelect table tr:hover td:nth-of-type(1){
	background: #fce26f38 !important;
	transition: background-color 0.2s;
}
.canvas .canvasMain .examCanvas .examCanvasBody .examQuestionBox .tableCellSelect table tr:hover td:nth-of-type(2){
	background: #fce26f38 !important;
	transition: background-color 0.2s;
}
.canvas .canvasMain .examCanvas .examCanvasBody .examQuestionBox .tableCellSelect table tr:hover td.selected:nth-of-type(1){
	background: #fce26f !important;
	transition: background-color 0.2s;
}
.canvas .canvasMain .examCanvas .examCanvasBody .examQuestionBox .tableCellSelect table tr:hover td.selected:nth-of-type(2){
	background: #fce26f !important;
	transition: background-color 0.2s;
}
.canvas .canvasMain .examCanvas .examCanvasBody .examQuestionBox .tableCellSelect table td{
	border: 1px solid #ccc;
	padding: 10px 20px;
	font-size: 14px;
	cursor: pointer;
	transition: background-color 0.2s;
}
@media(max-width:480px){
	.canvas .canvasMain .examCanvas .examCanvasBody .examQuestionBox .tableCellSelect table td{
		font-size: 12px;
		padding: 7px 10px;
	}
}
.canvas .canvasMain .examCanvas .examCanvasBody .examQuestionBox .tableCellSelect table td.selected {
	background-color: #fce26f;
}
.canvas .canvasMain .examCanvas .examCanvasBody .examQuestionBox .tableCellSelect table td:nth-of-type(1){
	text-align: left;
}
.canvas .canvasMain .examCanvas .examCanvasBody .examQuestionBox .tableCellSelect .disabled-table {
	pointer-events: none; /* disables clicking, hovering */
	opacity: 0.9; /* makes it look grayed out */
 	user-select: none;
}






.canvas .canvasMain .examCanvas .examCanvasBody .examQuestionFooter {
	width: 100%;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: end;
	-ms-flex-pack: end;
	justify-content: flex-end;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	margin-top: 50px;
}

@media (max-width: 480px) {
	.canvas .canvasMain .examCanvas .examCanvasBody .examQuestionFooter {
		-webkit-box-pack: justify;
		-ms-flex-pack: justify;
		justify-content: space-between;
	}
}

.canvas .canvasMain .examCanvas .examCanvasBody .examQuestionFooter a {
	background: #eff3f7;
	padding: 10px 20px;
	margin-left: 10px;
	border-radius: 10px;
	text-decoration: none;
	font-size: 14px;
	color: black;
	text-align: center;
}

@media (max-width: 480px) {
	.canvas .canvasMain .examCanvas .examCanvasBody .examQuestionFooter a {
		font-size: 12px;
		margin-left: 0;
		-webkit-box-flex: 0;
		-ms-flex: 0 0 32%;
		flex: 0 0 32%;
		padding: 10px;
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
		-webkit-box-pack: center;
		-ms-flex-pack: center;
		justify-content: center;
		-webkit-box-align: center;
		-ms-flex-align: center;
		align-items: center;
	}
	.canvas .canvasMain .examCanvas .examCanvasBody .examQuestionFooter a:nth-child(1) i {
		margin-left: 0;
		margin-right: 5px;
	}
}

.canvas .canvasMain .examCanvas .examCanvasBody .examQuestionFooter a i {
	color: #5434e2;
}

@media (max-width: 480px) {
	.canvas .canvasMain .examCanvas .examCanvasBody .examQuestionFooter a i {
		margin-left: 5px;
	}
}

.canvas .canvasMain .examCanvas .examCanvasBody .examQuestionFooter .nextExamActive {
	background: #5434e2;
	color: white;
}

.canvas .canvasMain .examCanvas .examCanvasBody .examQuestionFooter .nextExamActive i {
	color: white;
}

.canvas .canvasMain .examCanvas .examCanvasBody .examQuestionFooter .nextExamActive:hover {
	-webkit-animation: pulse6 1s;
	animation: pulse6 1s;
	-webkit-box-shadow: 0 0 0 1.5em rgba(255, 255, 255, 0);
	box-shadow: 0 0 0 1.5em rgba(255, 255, 255, 0);
}

@-webkit-keyframes pulse6 {
	0% {
		-webkit-box-shadow: 0 0 0 0 #5434e265;
		box-shadow: 0 0 0 0 #5434e265;
	}
}

@keyframes pulse6 {
	0% {
		-webkit-box-shadow: 0 0 0 0 #5434e265;
		box-shadow: 0 0 0 0 #5434e265;
	}
}

.canvas .canvasMain .examCanvas .examCanvasBody .examQuestionBox .addSuggestionForm {
	width: 100%;
	margin-top: 50px;
}

.canvas .canvasMain .examCanvas .examCanvasBody .examQuestionBox .addSuggestionForm .formTextareaGroup {
	-webkit-box-flex: 100%;
	-ms-flex: 100%;
	flex: 100%;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	margin-top: 20px;
}

.canvas .canvasMain .examCanvas .examCanvasBody .examQuestionBox .addSuggestionForm .formTextareaGroup label {
	font-size: 14px;
	font-weight: 400;
	line-height: 1.5;
	color: #686868;
}

.canvas .canvasMain .examCanvas .examCanvasBody .examQuestionBox .addSuggestionForm .formTextareaGroup textarea {
	width: 100%;
	margin-top: 5px;
	border-radius: 5px;
	height: 45px;
	padding: 10px;
	border: 1px solid #686868;
	outline: none;
	font-size: 14px;
	font-weight: 500;
	height: 100px;
}

.canvas .canvasMain .examCanvas .examCanvasBody .examQuestionBox .addSuggestionForm .formTextareaGroup textarea:focus {
	border: 1px solid #5434e2;
}

.canvas .canvasMain .examCanvas .examCanvasBody .examQuestionBox .addSuggestionForm .formBtnArea {
	-webkit-box-flex: 100%;
	-ms-flex: 100%;
	flex: 100%;
	margin-top: 30px;
	border-top: 1px solid #eee;
	padding-top: 30px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: end;
	-ms-flex-pack: end;
	justify-content: flex-end;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
}

@media (max-width: 480px) {
	.canvas .canvasMain .examCanvas .examCanvasBody .examQuestionBox .addSuggestionForm .formBtnArea {
		margin-top: 0;
		border-top: none;
		padding-top: 0;
	}
}

.canvas .canvasMain .examCanvas .examCanvasBody .examQuestionBox .addSuggestionForm .formBtnArea button {
	padding: 10px 30px;
	background: #5434e2;
	color: white;
	border: none;
	outline: none;
	font-size: 14px;
	border-radius: 10px;
	font-weight: 300;
	cursor: pointer;
	min-width: 150px;
}

@media (max-width: 480px) {
	.canvas .canvasMain .examCanvas .examCanvasBody .examQuestionBox .addSuggestionForm .formBtnArea button {
		width: 95%;
		padding: 12px 30px;
		font-size: 16px;
		font-weight: 400;
		position: fixed;
		bottom: 10px;
		z-index: 90;
		left: 2.5%;
	}
}

.canvas .canvasMain .examCanvas .examCanvasBody .examQuestionBox .addSuggestionForm .formBtnArea button:hover {
	-webkit-animation: pulse30 1s;
	animation: pulse30 1s;
	-webkit-box-shadow: 0 0 0 1.5em rgba(255, 255, 255, 0);
	box-shadow: 0 0 0 1.5em rgba(255, 255, 255, 0);
}

@keyframes pulse30 {
	0% {
		-webkit-box-shadow: 0 0 0 0 #5434e265;
		box-shadow: 0 0 0 0 #5434e265;
	}
}

.canvas .canvasMain .examResultHead {
	width: 100%;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	/*background: linear-gradient(45deg, #336aff, #00c3ff);*/
	/*padding: 20px;*/
	margin-top: 20px;
	border-radius: 15px;
	position: relative;
	overflow: hidden;
	z-index: 0;
}

@media (max-width: 768px) {
	.canvas .canvasMain .examResultHead {
		padding-top: 0;
	}
}

.canvas .canvasMain .examResultHead::before {
	position: absolute;
	/*content: '';*/
	top: 50%;
	left: 20%;
	width: 70%;
	height: 500px;
	background: linear-gradient(45deg, #03c4ff, rgba(0, 0, 0, 0));
	z-index: -1;
	border-radius: 50%;
	-webkit-animation: wave3 2s;
	animation: wave3 2s;
	-webkit-animation-direction: alternate;
	animation-direction: alternate;
	-webkit-animation-iteration-count: infinite;
	animation-iteration-count: infinite;
}

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

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

@media (max-width: 480px) {
	.canvas .canvasMain .examResultHead::before {
		width: 300px;
		height: 300px;
		left: 30%;
		top: 60%;
	}
}

.canvas .canvasMain .examResultHead::after {
	position: absolute;
	/*content: '';*/
	top: -50%;
	right: -30%;
	width: 70%;
	height: 500px;
	background: linear-gradient(45deg, #30cfff, rgba(0, 0, 0, 0));
	z-index: -1;
	border-radius: 50%;
	-webkit-animation: wave4 1.5s;
	animation: wave4 1.5s;
	-webkit-animation-direction: alternate;
	animation-direction: alternate;
	-webkit-animation-iteration-count: infinite;
	animation-iteration-count: infinite;
}

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

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

@media (max-width: 480px) {
	.canvas .canvasMain .examResultHead::after {
		width: 250px;
		height: 250px;
		top: 30%;
		right: -35%;
	}
}

.canvas .canvasMain .examResultHead .examCanvasHeadMain {
	-webkit-box-flex: 100%;
	-ms-flex: 100%;
	flex: 100%;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	position: relative;
}
.canvas .canvasMain .examResultHead .examCanvasHeadMain::after{
	content: '';
	height: 0;
	width: 30%;
}

.canvas .canvasMain .examResultHead .examCanvasHeadMain .examResultHeadBox {
	-webkit-box-flex: 0;
	-ms-flex: 0 0 30%;
	flex: 0 0 30%;
	display: -webkit-box;
	display: -ms-flexbox;
	padding: 30px 20px;
	-webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0.048);
	box-shadow: 0 0 10px rgba(0, 0, 0, 0.048);
	border-radius: 10px;
	overflow: hidden;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	position: relative;
	z-index: 0;
}

.canvas .canvasMain .examResultHead .examCanvasHeadMain .examResultHeadBox::before {
	position: absolute;
	content: '';
	top: 50%;
	left: 20%;
	width: 200px;
	height: 200px;
	background: linear-gradient(45deg, rgba(0, 0, 0, 0.103), rgba(0, 0, 0, 0));
	z-index: -1;
	border-radius: 50%;
	-webkit-animation: wave70 2s;
	animation: wave70 2s;
	-webkit-animation-direction: alternate;
	animation-direction: alternate;
	-webkit-animation-iteration-count: infinite;
	animation-iteration-count: infinite;
}

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

@media (max-width: 480px) {
	.canvas .canvasMain .examResultHead .examCanvasHeadMain .examResultHeadBox::before {
		width: 100px;
		height: 100px;
		left: 30%;
		top: 60%;
	}
}

.canvas .canvasMain .examResultHead .examCanvasHeadMain .examResultHeadBox::after {
	position: absolute;
	content: '';
	top: -50%;
	right: -30%;
	width: 250px;
	height: 250px;
	background: linear-gradient(45deg, rgba(0, 0, 0, 0.075), rgba(0, 0, 0, 0));
	z-index: -1;
	border-radius: 50%;
	-webkit-animation: wave8 1.5s;
	animation: wave8 1.5s;
	-webkit-animation-direction: alternate;
	animation-direction: alternate;
	-webkit-animation-iteration-count: infinite;
	animation-iteration-count: infinite;
}

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

@media (max-width: 480px) {
	.canvas .canvasMain .examResultHead .examCanvasHeadMain .examResultHeadBox::after {
		width: 150px;
		height: 150px;
		top: 30%;
		right: -35%;
	}
}

.canvas .canvasMain .examResultHead .examCanvasHeadMain .examResultHeadBox:nth-child(1) {
	background: linear-gradient(45deg, #1984ff, #0168c9);
}

.canvas .canvasMain .examResultHead .examCanvasHeadMain .examResultHeadBox:nth-child(2) {
	background: linear-gradient(45deg, #ffa319, #c95b01);
}

.canvas .canvasMain .examResultHead .examCanvasHeadMain .examResultHeadBox:nth-child(3) {
	background: linear-gradient(45deg, #20a000, #06be0f);
}

@media (max-width: 768px) {
	.canvas .canvasMain .examResultHead .examCanvasHeadMain .examResultHeadBox {
		-webkit-box-flex: 0;
		-ms-flex: 0 0 48%;
		flex: 0 0 48%;
		margin-top: 20px;
		padding: 20px;
		-webkit-box-pack: start;
		-ms-flex-pack: start;
		justify-content: flex-start;
	}
}

.canvas .canvasMain .examResultHead .examCanvasHeadMain .examResultHeadBox h4 {
	font-size: 16px;
	color: #fff;
	font-weight: 300;
}

.canvas .canvasMain .examResultHead .examCanvasHeadMain .examResultHeadBox p {
	font-size: 20px;
	margin-top: 5px;
	color: #fff;
}

.canvas .canvasMain .examResultHead .examCanvasHeadMain .examResultHeadBox p span {
	font-size: 12px;
}

.canvas .canvasMain .examResultList {
	width: 100%;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	margin-top: 20px;
	position: relative;
}

@media (max-width: 480px) {
	.canvas .canvasMain .examResultList {
		-webkit-box-flex: 100%;
		-ms-flex: 100%;
		flex: 100%;
		margin-top: 30px;
	}
}

.canvas .canvasMain .examResultList::after {
	content: '';
	height: 0;
	width: 30%;
}

.canvas .canvasMain .examResultList .examResultListBox {
	-webkit-box-flex: 0;
	-ms-flex: 0 0 30%;
	flex: 0 0 30%;
	border-radius:10px;
	background: white;
	-webkit-box-shadow: 0 0 20px rgba(0, 0, 0, 0.055);
	box-shadow: 0 0 20px rgba(0, 0, 0, 0.055);
	margin-top: 20px;
	display: flex; 
	align-items: center;
	overflow: hidden;
}

@media (max-width: 768px) {
	.canvas .canvasMain .examResultList .examResultListBox {
		-webkit-box-flex: 0;
		-ms-flex: 0 0 48%;
		flex: 0 0 48%;
	}
}

@media (max-width: 480px) {
	.canvas .canvasMain .examResultList .examResultListBox {
		-webkit-box-flex: 100%;
		-ms-flex: 100%;
		flex: 100%;
		margin-top: 10px;
	}
}

.canvas .canvasMain .examResultList .examResultListBox ul {
	width: 100%;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	padding: 20px;
}

.canvas .canvasMain .examResultList .examResultListBox ul li {
	list-style: none;
	margin-top: 15px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	-webkit-box-flex: 0;
	-ms-flex: 0 0 48%;
	flex: 0 0 48%;
}

.canvas .canvasMain .examResultList .examResultListBox ul li:nth-child(1) {
	margin-top: 0;
}

.canvas .canvasMain .examResultList .examResultListBox ul li:nth-child(2) {
	margin-top: 0;
}

.canvas .canvasMain .examResultList .examResultListBox ul li span {
	font-size: 12px;
	opacity: 0.7;
}

.canvas .canvasMain .examResultList .examResultListBox ul li p {
	font-size: 14px;
	margin-top: 5px;
}

.canvas .canvasMain .examResultList .examResultListBox .examResultIcon{
	padding: 20px 10px;
	display: flex;
	justify-content: center;
	align-items: center;
	color: white;
	height: 100%;
	font-size: 20px;
} 

.canvas .canvasMain .examResultList .examResultListBox .rightAnswerIcon{
	background: green;
}

.canvas .canvasMain .examResultList .examResultListBox .wrongAnswerIcon{
	background: red;
}
/*.canvas .canvasMain .examResultList .wronAnswer {
border-left: 2px solid red;
}

.canvas .canvasMain .examResultList .rightAnswer {
border-left: 2px solid green;
}*/

.canvas .canvasMain .previousTest {
	width: 100%;
	width: 100%;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	margin-top: 20px;
	position: relative;
}

@media (max-width: 480px) {
	.canvas .canvasMain .previousTest {
		-webkit-box-flex: 100%;
		-ms-flex: 100%;
		flex: 100%;
		margin-top: 30px;
	}
}

.canvas .canvasMain .previousTest::after {
	content: '';
	height: 0;
	width: 30%;
}

.canvas .canvasMain .previousTest .previousTestBox {
	-webkit-box-flex: 0 0 30%;
	-ms-flex: 0 0 30%;
	flex: 0 0 30%;
	border-radius: 10px;
	background: white;
	-webkit-box-shadow: -7px 11px 17px 1px rgb(0 0 0 / 11%);
	-moz-box-shadow: -7px 11px 17px 1px rgb(0 0 0 / 11%);
	box-shadow: -7px 11px 17px 1px rgb(0 0 0 / 11%);
	transition: .3s;
	padding: 20px;
	margin-top: 20px;
	text-decoration: none;
	border: 1px solid #5434e265;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	position: relative;
	/*-ms-flex-wrap: wrap;
	flex-wrap: wrap;*/
}

@media (max-width: 768px) {
	.canvas .canvasMain .previousTest .previousTestBox {
		-webkit-box-flex: 0;
		-ms-flex: 0 0 48%;
		flex: 0 0 48%;
	}
}

@media (max-width: 480px) {
	.canvas .canvasMain .previousTest .previousTestBox {
		-webkit-box-flex: 100%;
		-ms-flex: 100%;
		flex: 100%;
		margin-top: 10px;
	}
}

.canvas .canvasMain .previousTest .previousTestBox:hover {
	border: 1px solid #5434e265;
	background: #5434e209;
	box-shadow: none;
	transition: .3s;
}

.canvas .canvasMain .previousTest .previousTestBox .previousTestBoxLink{
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 1;
}
.canvas .canvasMain .previousTest .previousTestBox .previousTestBoxresumeTestBtn{
	padding: 4px 12px;
	background: #5434e2;
	color: white;
	font-size: 10px;
	cursor: pointer;
	border-radius: 5px;
	transition: .3s;
	border: none;
	outline: none;
	display: flex;
	justify-content: center;
	align-items: center;
	position: absolute;
	z-index: 3;
	right: 10px;
	top: 10px;
}
.canvas .canvasMain .previousTest .previousTestBox .previousTestBoxresumeTestBtn:hover{
	transition: .3s;
	opacity: .7;
}


.canvas .canvasMain .previousTest .previousTestBox ul {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
}
.canvas .canvasMain .previousTest .previousTestBox .previousTestBoxColumn1{
	flex: 0 0 65%;
	flex-direction: column;
}
.canvas .canvasMain .previousTest .previousTestBox .previousTestBoxColumn2{
	flex: 0 0 30%;
	display: flex;
	justify-content: center;
	align-items: center;
}
.canvas .canvasMain .previousTest .previousTestBox .previousTestBoxColumn2 li {
	flex-direction: column;
}
.canvas .canvasMain .previousTest .previousTestBox .previousTestBoxColumn2 li p{
	font-size: 1.8em;
}

.canvas .canvasMain .previousTest .previousTestBox ul li {
	list-style: none;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	align-items: center;
	margin-top: 15px;
}

/*@media (max-width: 768px) {
.canvas .canvasMain .previousTest .previousTestBox ul li {
-webkit-box-flex: 0;
-ms-flex: 0 0 48%;
flex: 0 0 48%;
}
}*/

.canvas .canvasMain .previousTest .previousTestBox ul li span {
	font-size: 12px;
	opacity: 0.7;
	color: black;
}

.canvas .canvasMain .previousTest .previousTestBox ul li p {
	font-size: 14px;
	color: black;
	margin-left: 10px;
}

.canvas .canvasMain .previousTest .previousTestBox ul li .TopScore {
	color: green;
	font-weight: 500;
}

.canvas .canvasMain .previousTest .previousTestBox ul li .AverageScore {
	color: #dfb600;
	font-weight: 500;
}

.canvas .canvasMain .previousTest .previousTestBox ul li .LowScore {
	color: red;
	font-weight: 500;
}

.canvas .canvasMain .facultyNotes {
	width: 100%;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
}

.canvas .canvasMain .facultyNotes .facultyNotesBox {
	-webkit-box-flex: 100%;
	-ms-flex: 100%;
	flex: 100%;
	border-radius: 10px;
	background: white;
	-webkit-box-shadow: 0 0 20px rgba(0, 0, 0, 0.055);
	box-shadow: 0 0 20px rgba(0, 0, 0, 0.055);
	padding: 20px;
	margin-top: 20px;
	text-decoration: none;
	border: 1px solid white;
	text-decoration: none;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	border: 1px solid white;
}

.canvas .canvasMain .facultyNotes .facultyNotesBox:hover {
	border: 1px solid #5434e265;
	background: #5434e209;
}

.canvas .canvasMain .facultyNotes .facultyNotesBox span {
	font-size: 12px;
	color: black;
	opacity: 0.7;
	margin-top: 20px;
}

.canvas .canvasMain .facultyNotes .facultyNotesBox span:nth-child(1) {
	margin-top: 0;
}

.canvas .canvasMain .facultyNotes .facultyNotesBox p {
	font-size: 16px;
	color: black;
	margin-top: 5px;
	line-height: 1.5;
}

.canvas .canvasMain .facultyNotes .facultyNotesBox h6 {
	font-size: 12px;
	color: black;
	font-weight: 400;
	margin-top: 5px;
}

.canvas .canvasMain .innerFacultyNotes {
	width: 100%;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	margin-top: 50px;
}

@media (max-width: 480px) {
	.canvas .canvasMain .innerFacultyNotes {
		margin-top: 30px;
	}
}

.canvas .canvasMain .innerFacultyNotes h1 {
	font-size: 25px;
	font-weight: 400;
	line-height: 1.5;
}

@media (max-width: 768px) {
	.canvas .canvasMain .innerFacultyNotes h1 {
		font-size: 20px;
	}
}

.canvas .canvasMain .innerFacultyNotes h1 input {
	border: none;
	border-bottom: 1px dashed black;
	outline: none;
	font-size: 25px;
	color: #5434e2;
	width: 200px;
}

.canvas .canvasMain .innerFacultyNotes .objectiveTypeExam {
	width: 100%;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
}

.canvas .canvasMain .innerFacultyNotes .objectiveTypeExam ul {
	width: 100%;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	margin-top: 10px;
}

.canvas .canvasMain .innerFacultyNotes .objectiveTypeExam ul li {
	list-style: none;
	margin-top: 15px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
}

.canvas .canvasMain .innerFacultyNotes .objectiveTypeExam ul li .objectiveTypeBtn {
	width: 30px;
}

.canvas .canvasMain .innerFacultyNotes .objectiveTypeExam ul li .objectiveTypeBtn input {
	padding: 0;
	height: initial;
	width: initial;
	margin-bottom: 0;
	display: none;
	cursor: pointer;
}

.canvas .canvasMain .innerFacultyNotes .objectiveTypeExam ul li .objectiveTypeBtn label {
	position: relative;
	cursor: pointer;
}

.canvas .canvasMain .innerFacultyNotes .objectiveTypeExam ul li .objectiveTypeBtn label:before {
	content: '';
	-webkit-appearance: none;
	background-color: transparent;
	border: 2px solid #E0E4E8;
	padding: 10px;
	display: inline-block;
	position: relative;
	vertical-align: middle;
	cursor: pointer;
	margin-right: 10px;
	border-radius: 9px;
}

.canvas .canvasMain .innerFacultyNotes .objectiveTypeExam ul li .objectiveTypeBtn input:checked + label:after {
	content: '';
	display: block;
	position: absolute;
	top: 4px;
	left: 8px;
	width: 5px;
	height: 10px;
	border: solid white;
	border-width: 0 2px 2px 0;
	-webkit-transform: rotate(45deg);
	transform: rotate(45deg);
}

.canvas .canvasMain .innerFacultyNotes .objectiveTypeExam ul li .objectiveTypeBtn input:checked + label:before {
	background: #5434e2;
	border: 2px solid #5434e2;
}

.canvas .canvasMain .innerFacultyNotes .objectiveTypeExam ul li p {
	width: calc(100% - 35px);
	margin-top: 2px;
	font-size: 20px;
	font-weight: 400;
	line-height: 1.5;
}

@media (max-width: 768px) {
	.canvas .canvasMain .innerFacultyNotes .objectiveTypeExam ul li p {
		margin-top: 0;
	}
}

.canvas .canvasMain .innerFacultyNotes .objectiveTypeExam ul .rightAnswer .objectiveTypeBtn input:checked + label:before {
	background: green;
	border: 2px solid green;
}

.canvas .canvasMain .innerFacultyNotes .objectiveTypeExam ul .rightAnswer p {
	color: green;
	font-weight: 400;
}

.canvas .canvasMain .innerFacultyNotes .objectiveTypeExam ul .wronAnswer .objectiveTypeBtn input:checked + label:before {
	background: red;
	border: 2px solid red;
}

.canvas .canvasMain .innerFacultyNotes .objectiveTypeExam ul  .wronAnswer .objectiveTypeBtn input:checked + label:after {
	content: 'x';
	top: 0px;
	left: 8px;
	width: 5px;
	height: 10px;
	border: none;
	-webkit-transform: rotate(0deg);
	transform: rotate(0deg);
	color: white;
}

.canvas .canvasMain .innerFacultyNotes .objectiveTypeExam ul .wronAnswer p {
	color: red;
	font-weight: 400;
}

.canvas .canvasMain .innerFacultyNotes .multipleTypeExam {
	width: 100%;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
}

.canvas .canvasMain .innerFacultyNotes .multipleTypeExam ul {
	width: 100%;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	margin-top: 10px;
}

.canvas .canvasMain .innerFacultyNotes .multipleTypeExam ul li {
	list-style: none;
	margin-top: 15px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
}

.canvas .canvasMain .innerFacultyNotes .multipleTypeExam ul li .multipleTypeBtn {
	width: 30px;
}

.canvas .canvasMain .innerFacultyNotes .multipleTypeExam ul li .multipleTypeBtn input {
	padding: 0;
	height: initial;
	width: initial;
	margin-bottom: 0;
	display: none;
	cursor: pointer;
}

.canvas .canvasMain .innerFacultyNotes .multipleTypeExam ul li .multipleTypeBtn label {
	position: relative;
	cursor: pointer;
}

.canvas .canvasMain .innerFacultyNotes .multipleTypeExam ul li .multipleTypeBtn label:before {
	content: '';
	-webkit-appearance: none;
	background-color: transparent;
	border: 2px solid #E0E4E8;
	padding: 10px;
	display: inline-block;
	position: relative;
	vertical-align: middle;
	cursor: pointer;
	margin-right: 10px;
	border-radius: 9px;
}

.canvas .canvasMain .innerFacultyNotes .multipleTypeExam ul li .multipleTypeBtn input:checked + label:after {
	content: '';
	display: block;
	position: absolute;
	top: 4px;
	left: 8px;
	width: 5px;
	height: 10px;
	border: solid white;
	border-width: 0 2px 2px 0;
	-webkit-transform: rotate(45deg);
	transform: rotate(45deg);
}

.canvas .canvasMain .innerFacultyNotes .multipleTypeExam ul li .multipleTypeBtn input:checked + label:before {
	background: #5434e2;
	border: 2px solid #5434e2;
}

.canvas .canvasMain .innerFacultyNotes .multipleTypeExam ul li p {
	width: calc(100% - 35px);
	margin-top: 2px;
	font-size: 20px;
	font-weight: 400;
	line-height: 1.5;
}

@media (max-width: 768px) {
	.canvas .canvasMain .innerFacultyNotes .multipleTypeExam ul li p {
		margin-top: 0;
	}
}

.canvas .canvasMain .innerFacultyNotes .multipleTypeExam ul .rightAnswer .multipleTypeBtn input:checked + label:before {
	background: green;
	border: 2px solid green;
}

.canvas .canvasMain .innerFacultyNotes .multipleTypeExam ul .rightAnswer p {
	color: green;
	font-weight: 400;
}

.canvas .canvasMain .innerFacultyNotes .multipleTypeExam ul .wronAnswer .multipleTypeBtn input:checked + label:before {
	background: red;
	border: 2px solid red;
}

.canvas .canvasMain .innerFacultyNotes .multipleTypeExam ul .wronAnswer .multipleTypeBtn input:checked + label:after {
	content: 'x';
	top: 0px;
	left: 8px;
	width: 5px;
	height: 10px;
	border: none;
	-webkit-transform: rotate(0deg);
	transform: rotate(0deg);
	color: white;
}

.canvas .canvasMain .innerFacultyNotes .multipleTypeExam ul .wronAnswer p {
	color: red;
	font-weight: 400;
}

.canvas .canvasMain .innerFacultyNotes .dargExamNote {
	width: 100%;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	margin-top: 25px;
}

.canvas .canvasMain .innerFacultyNotes .dargExamNote ul {
	width: 350px;
	border: 2px dashed #5434e265;
	border-radius: 5px;
	padding: 10px 20px 20px 20px;
}

@media (max-width: 480px) {
	.canvas .canvasMain .innerFacultyNotes .dargExamNote ul {
		width: 100%;
	}
}

.canvas .canvasMain .innerFacultyNotes .dargExamNote ul li {
	background-color: #525d6d;
	color: white;
	padding: .66rem 1rem;
	position: relative;
	border-radius: 5px;
	font-size: 14px;
	font-weight: 100;
	width: 100%;
	margin-top: 10px;
}

.canvas .canvasMain .innerFacultyNotes .dargExamNote ul .rightAnswer {
	background: green;
}

.canvas .canvasMain .innerFacultyNotes .dargExamNote ul .wronAnswer {
	background: red;
}

.canvas .canvasMain .innerFacultyNotes .facualtyNoteExplanation {
	width: 100%;
	margin-top: 30px;
	margin-bottom: 20px;
}

.canvas .canvasMain .innerFacultyNotes .facualtyNoteExplanation .facualtyNoteExplanationMain {
	width: 100%;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	-webkit-box-shadow: 0 0 20px rgba(0, 0, 0, 0.096);
	box-shadow: 0 0 20px rgba(0, 0, 0, 0.096);
	border-radius: 10px;
	padding: 20px;
	margin-top: 20px;
}

.canvas .canvasMain .innerFacultyNotes .facualtyNoteExplanation .facualtyNoteExplanationMain h2 {
	font-size: 18px;
	font-weight: 500;
}

.canvas .canvasMain .innerFacultyNotes .facualtyNoteExplanation .facualtyNoteExplanationMain p {
	font-size: 16px;
	line-height: 1.7;
	margin-top: 20px;
}

.canvas .canvasMain .perfomance {
	width: 100%;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	margin-top: 10px;
}

.canvas .canvasMain .perfomance .perfomanceBox {
	-webkit-box-flex: 0;
	-ms-flex: 0 0 24%;
	flex: 0 0 24%;
	padding: 20px;
	border-radius: 10px;
	margin-top: 20px;
	-webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0.048);
	box-shadow: 0 0 10px rgba(0, 0, 0, 0.048);
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	position: relative;
	z-index: 0;
	overflow: hidden;
}

@media (max-width: 768px) {
	.canvas .canvasMain .perfomance .perfomanceBox {
		-webkit-box-flex: 0;
		-ms-flex: 0 0 48%;
		flex: 0 0 48%;
		margin-top: 10px;
	}
}

.canvas .canvasMain .perfomance .perfomanceBox::before {
	position: absolute;
	content: '';
	top: 50%;
	left: 20%;
	width: 200px;
	height: 200px;
	background: linear-gradient(45deg, rgba(0, 0, 0, 0.103), rgba(0, 0, 0, 0));
	z-index: -1;
	border-radius: 50%;
	-webkit-animation: wave7 2s;
	animation: wave7 2s;
	-webkit-animation-direction: alternate;
	animation-direction: alternate;
	-webkit-animation-iteration-count: infinite;
	animation-iteration-count: infinite;
}

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

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

@media (max-width: 480px) {
	.canvas .canvasMain .perfomance .perfomanceBox::before {
		width: 100px;
		height: 100px;
		left: 30%;
		top: 60%;
	}
}

.canvas .canvasMain .perfomance .perfomanceBox::after {
	position: absolute;
	content: '';
	top: -50%;
	right: -30%;
	width: 250px;
	height: 250px;
	background: linear-gradient(45deg, rgba(0, 0, 0, 0.075), rgba(0, 0, 0, 0));
	z-index: -1;
	border-radius: 50%;
	-webkit-animation: wave8 1.5s;
	animation: wave8 1.5s;
	-webkit-animation-direction: alternate;
	animation-direction: alternate;
	-webkit-animation-iteration-count: infinite;
	animation-iteration-count: infinite;
}

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

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

@media (max-width: 480px) {
	.canvas .canvasMain .perfomance .perfomanceBox::after {
		width: 150px;
		height: 150px;
		top: 30%;
		right: -35%;
	}
}

.canvas .canvasMain .perfomance .perfomanceBox:nth-child(1) {
	background: linear-gradient(45deg, #1984ff, #0168c9);
}

.canvas .canvasMain .perfomance .perfomanceBox:nth-child(1) {
	background: linear-gradient(45deg, #ffa319, #c95b01);
}

.canvas .canvasMain .perfomance .perfomanceBox:nth-child(2) {
	background: linear-gradient(45deg, #20a000, #06be0f);
}

.canvas .canvasMain .perfomance .perfomanceBox:nth-child(3) {
	background: linear-gradient(45deg, #a00000, #ec0808);
}

.canvas .canvasMain .perfomance .perfomanceBox h1 {
	font-size: 30px;
	font-weight: 600;
	text-align: center;
	color: white;
}

@media (max-width: 480px) {
	.canvas .canvasMain .perfomance .perfomanceBox h1 {
		font-size: 25px;
	}
}

.canvas .canvasMain .perfomance .perfomanceBox p {
	font-size: 14px;
	text-align: center;
	margin-top: 10px;
	color: white;
}

.canvas .canvasMain .editProfile {
	width: 100%;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
}

.canvas .canvasMain .editProfile form {
	width: 100%;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
}

.canvas .canvasMain .editProfile form .file-upload {
	margin-bottom: 30px;
}

.canvas .canvasMain .editProfile form .file-upload .image-box {
	margin-top: 30px;
	width: 150px;
	height: 150px;
	cursor: pointer;
	border: 3px solid #5434e2;
	border-radius: 25px;
	position: relative;
	z-index: 0;
}

.canvas .canvasMain .editProfile form .file-upload .image-box img {
	width: 100%;
	height: 100%;
	overflow: hidden;
	-o-object-fit: cover;
	object-fit: cover;
	border-radius: 23px;
}

.canvas .canvasMain .editProfile form .file-upload .image-box .editPen {
	position: absolute;
	z-index: 1;
	width: 30px;
	height: 30px;
	background: #5434e2;
	color: white;
	bottom: -10px;
	right: -10px;
	border-radius: 50px;
	font-size: 14px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
}

.canvas .canvasMain .editProfile form .formGroup {
	width: 400px;
	margin-top: 15px;
	position: relative;
}

@media (max-width: 480px) {
	.canvas .canvasMain .editProfile form .formGroup {
		width: 100%;
	}
}

.canvas .canvasMain .editProfile form .formGroup input {
	width: 100%;
	height: 45px;
	background: #f2f7f7;
	border: none;
	outline: none;
	border-radius: 10px;
	padding: 15px;
	font-size: 14px;
	font-weight: 500;
	border: 1px solid #f2f7f7;
}

.canvas .canvasMain .editProfile form .formGroup input:focus {
	border: 1px solid #5434e2;
}

@media (max-width: 480px) {
	.canvas .canvasMain .editProfile form .formGroup input {
		height: 50px;
	}
}

.canvas .canvasMain .editProfile form .formGroup #btnToggle2 {
	position: absolute;
	background: none;
	outline: none;
	border: none;
	font-size: 14px;
	top: 50%;
	right: 5%;
	cursor: pointer;
	-webkit-transform: translateY(-50%);
	transform: translateY(-50%);
}

.canvas .canvasMain .editProfile form .formBtnArea {
	width: 400px;
	margin-top: 30px;
}

@media (max-width: 480px) {
	.canvas .canvasMain .editProfile form .formBtnArea {
		width: 100%;
	}
}

.canvas .canvasMain .editProfile form .formBtnArea button {
	width: 100%;
	padding: 15px;
	background: #5434e2;
	color: white;
	font-size: 16px;
	font-weight: 400;
	border: none;
	border-radius: 10px;
	outline: none;
	cursor: pointer;
}

.canvas .canvasMain .editProfile form .formBtnArea button:hover {
	-webkit-animation: pulse15 1s;
	animation: pulse15 1s;
	-webkit-box-shadow: 0 0 0 1.5em rgba(255, 255, 255, 0);
	box-shadow: 0 0 0 1.5em rgba(255, 255, 255, 0);
}

@-webkit-keyframes pulse15 {
	0% {
		-webkit-box-shadow: 0 0 0 0 #5434e265;
		box-shadow: 0 0 0 0 #5434e265;
	}
}

@keyframes pulse15 {
	0% {
		-webkit-box-shadow: 0 0 0 0 #5434e265;
		box-shadow: 0 0 0 0 #5434e265;
	}
}

.canvas .canvasMain .changePassword {
	width: 100%;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
}

.canvas .canvasMain .changePassword .changePasswordThumbnail {
	width: 300px;
	margin-bottom: 20px;
	margin-top: 20px;
}

@media (max-width: 480px) {
	.canvas .canvasMain .changePassword .changePasswordThumbnail {
		width: 70%;
	}
}

.canvas .canvasMain .changePassword .changePasswordThumbnail img {
	width: 100%;
	height: 100%;
	-o-object-fit: contain;
	object-fit: contain;
}

.canvas .canvasMain .changePassword form {
	width: 100%;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
}

.canvas .canvasMain .changePassword form .formGroup {
	width: 400px;
	margin-top: 15px;
	position: relative;
}

@media (max-width: 480px) {
	.canvas .canvasMain .changePassword form .formGroup {
		width: 100%;
	}
}

.canvas .canvasMain .changePassword form .formGroup input {
	width: 100%;
	height: 45px;
	background: #f2f7f7;
	border: none;
	outline: none;
	border-radius: 10px;
	padding: 15px;
	font-size: 14px;
	font-weight: 500;
	border: 1px solid #f2f7f7;
}

.canvas .canvasMain .changePassword form .formGroup input:focus {
	border: 1px solid #5434e2;
}

@media (max-width: 480px) {
	.canvas .canvasMain .changePassword form .formGroup input {
		height: 50px;
	}
}

.canvas .canvasMain .changePassword form .formGroup #btnToggle2 {
	position: absolute;
	background: none;
	outline: none;
	border: none;
	font-size: 14px;
	top: 50%;
	right: 5%;
	cursor: pointer;
	-webkit-transform: translateY(-50%);
	transform: translateY(-50%);
}

.canvas .canvasMain .changePassword form .formBtnArea {
	width: 400px;
	margin-top: 30px;
}

@media (max-width: 480px) {
	.canvas .canvasMain .changePassword form .formBtnArea {
		width: 100%;
	}
}

.canvas .canvasMain .changePassword form .formBtnArea button {
	width: 100%;
	padding: 15px;
	background: #5434e2;
	color: white;
	font-size: 16px;
	font-weight: 400;
	border: none;
	border-radius: 10px;
	outline: none;
	cursor: pointer;
}

.canvas .canvasMain .changePassword form .formBtnArea button:hover {
	-webkit-animation: pulse15 1s;
	animation: pulse15 1s;
	-webkit-box-shadow: 0 0 0 1.5em rgba(255, 255, 255, 0);
	box-shadow: 0 0 0 1.5em rgba(255, 255, 255, 0);
}

@keyframes pulse15 {
	0% {
		-webkit-box-shadow: 0 0 0 0 #5434e265;
		box-shadow: 0 0 0 0 #5434e265;
	}
}

.canvas .canvasMain .resultProgressBar {
	width: 100%;
	margin-top: 30px;
}

.canvas .canvasMain .resultProgressBar h3 {
	font-size: 18px;
	font-weight: 500;
}

.canvas .canvasMain .resultProgressBar .resultProgress {
	width: 100%;
	height: 100px;
	position: relative;
	background: #f7f7f7;
	border-radius: 10px;
	margin-top: 10px;
	overflow: hidden;
}

.canvas .canvasMain .resultProgressBar .resultProgress .progress {
	height: 100%;
	border-radius: 3px;
	background-size: 12000px 1px;
	background-image: url("../images/illustration/progress.png");
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	font-size: 2em;
	font-weight: 600;
	color: white;
	border-radius: 0px 10px 10px 0px;
}

.canvas .canvasMain .answerList {
	width: 100%;
	margin-top: 50px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
}

.canvas .canvasMain .answerList .answerListBox {
	width: 100%;
	text-decoration: none;
	margin-top: 15px;
	-webkit-box-shadow: 0 0 20px rgba(0, 0, 0, 0.048);
	box-shadow: 0 0 20px rgba(0, 0, 0, 0.048);
	border-radius: 10px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	overflow: hidden;
}

@media (max-width: 768px) {
	.canvas .canvasMain .answerList .answerListBox {
		-ms-flex-wrap: wrap;
		flex-wrap: wrap;
	}
}

.canvas .canvasMain .answerList .answerListBox .answerListbolumn1 {
	padding: 15px;
	font-size: 30px;
	color: white;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
}

@media (max-width: 768px) {
	.canvas .canvasMain .answerList .answerListBox .answerListbolumn1 {
		-webkit-box-flex: 0;
		-ms-flex: 0 0 48%;
		flex: 0 0 48%;
	}
}

@media (max-width: 480px) {
	.canvas .canvasMain .answerList .answerListBox .answerListbolumn1 {
		-webkit-box-flex: 100%;
		-ms-flex: 100%;
		flex: 100%;
	}
}

.canvas .canvasMain .answerList .answerListBox .wrong {
	background: red;
}

.canvas .canvasMain .answerList .answerListBox .right {
	background: green;
}

.canvas .canvasMain .answerList .answerListBox .answerListbolumn2 {
	width: 100px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
}

@media (max-width: 768px) {
	.canvas .canvasMain .answerList .answerListBox .answerListbolumn2 {
		width: inherit;
		-webkit-box-flex: 0;
		-ms-flex: 0 0 48%;
		flex: 0 0 48%;
		padding: 20px;
	}
}

@media (max-width: 480px) {
	.canvas .canvasMain .answerList .answerListBox .answerListbolumn2 {
		-webkit-box-flex: 100%;
		-ms-flex: 100%;
		flex: 100%;
	}
}

.canvas .canvasMain .answerList .answerListBox .answerListbolumn2 span {
	font-size: 14px;
	color: black;
}

.canvas .canvasMain .answerList .answerListBox .answerListbolumn2 p {
	font-size: 16px;
	margin-top: 10px;
	font-weight: 500;
	color: black;
}

.canvas .canvasMain .answerList .answerListBox .answerListbolumn3 {
	width: 20%;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
}

@media (max-width: 768px) {
	.canvas .canvasMain .answerList .answerListBox .answerListbolumn3 {
		width: inherit;
		-webkit-box-flex: 0;
		-ms-flex: 0 0 48%;
		flex: 0 0 48%;
		padding: 20px;
	}
}

@media (max-width: 480px) {
	.canvas .canvasMain .answerList .answerListBox .answerListbolumn3 {
		-webkit-box-flex: 100%;
		-ms-flex: 100%;
		flex: 100%;
	}
}

.canvas .canvasMain .answerList .answerListBox .answerListbolumn3 span {
	font-size: 14px;
	color: black;
}

.canvas .canvasMain .answerList .answerListBox .answerListbolumn3 p {
	font-size: 16px;
	margin-top: 10px;
	font-weight: 500;
	color: black;
}

.canvas .canvasMain .answerList .answerListBox .answerListbolumn4 {
	width: 10%;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
}

@media (max-width: 768px) {
	.canvas .canvasMain .answerList .answerListBox .answerListbolumn4 {
		width: inherit;
		-webkit-box-flex: 0;
		-ms-flex: 0 0 48%;
		flex: 0 0 48%;
		padding: 20px;
	}
}

@media (max-width: 480px) {
	.canvas .canvasMain .answerList .answerListBox .answerListbolumn4 {
		-webkit-box-flex: 100%;
		-ms-flex: 100%;
		flex: 100%;
	}
}

.canvas .canvasMain .answerList .answerListBox .answerListbolumn4 span {
	font-size: 14px;
	color: black;
}

.canvas .canvasMain .answerList .answerListBox .answerListbolumn4 p {
	font-size: 16px;
	margin-top: 10px;
	font-weight: 500;
	color: black;
}

.canvas .profile {
	width: 100%;
	position: relative;
	z-index: 0;
}

.canvas .profile::after {
	position: absolute;
	content: '';
	width: 100%;
	height: 50px;
	bottom: 0;
	left: 0;
	z-index: -1;
	background: #2cc7ff27;
}

.canvas .profile .profileDetails {
	width: 100%;
	border-radius: 0px 0px 20px 20px;
	background: linear-gradient(45deg, #336aff, #00c3ff);
	position: relative;
	z-index: 0;
	overflow: hidden;
}

.canvas .profile .profileDetails::before {
	position: absolute;
	content: '';
	top: 20%;
	left: -5%;
	width: 250px;
	height: 250px;
	background: linear-gradient(45deg, #03c4ff, rgba(0, 0, 0, 0));
	z-index: -1;
	border-radius: 50%;
	-webkit-animation: wave15 2s;
	animation: wave15 2s;
	-webkit-animation-direction: alternate;
	animation-direction: alternate;
	-webkit-animation-iteration-count: infinite;
	animation-iteration-count: infinite;
}

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

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

@media (max-width: 480px) {
	.canvas .profile .profileDetails::before {
		width: 200px;
		height: 200px;
		left: -15%;
		top: -30%;
	}
}

.canvas .profile .profileDetails::after {
	position: absolute;
	content: '';
	top: -30%;
	left: -5%;
	width: 300px;
	height: 300px;
	background: linear-gradient(45deg, #30cfff, rgba(0, 0, 0, 0));
	z-index: -1;
	border-radius: 50%;
	-webkit-animation: wave16 1.5s;
	animation: wave16 1.5s;
	-webkit-animation-direction: alternate;
	animation-direction: alternate;
	-webkit-animation-iteration-count: infinite;
	animation-iteration-count: infinite;
}

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

@media (max-width: 480px) {
	.canvas .profile .profileDetails::after {
		width: 150px;
		height: 150px;
		top: 20%;
		left: -15%;
	}
}

.canvas .profile .profileDetails .profileDetailsMain {
	width: 100%;
	padding: 50px 0px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
}

@media (max-width: 768px) {
	.canvas .profile .profileDetails .profileDetailsMain {
		-webkit-box-pack: center;
		-ms-flex-pack: center;
		justify-content: center;
		-webkit-box-align: center;
		-ms-flex-align: center;
		align-items: center;
		padding: 30px 0px;
	}
}

.canvas .profile .profileDetails .profileDetailsMain .profileDetailsMainThumbnail {
	width: 150px;
	height: 150px;
	border-radius: 30px;
	overflow: hidden;
	border: 2px solid white;
}

@media (max-width: 768px) {
	.canvas .profile .profileDetails .profileDetailsMain .profileDetailsMainThumbnail {
		width: 100px;
		height: 100px;
	}
}

.canvas .profile .profileDetails .profileDetailsMain .profileDetailsMainThumbnail img {
	width: 100%;
	height: 100%;
	-o-object-fit: cover;
	object-fit: cover;
}

.canvas .profile .profileDetails .profileDetailsMain .profileDetailsMainDetails {
	width: 100%;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	margin-top: 40px;
}

@media (max-width: 768px) {
	.canvas .profile .profileDetails .profileDetailsMain .profileDetailsMainDetails {
		margin-top: 20px;
	}
}

.canvas .profile .profileDetails .profileDetailsMain .profileDetailsMainDetails h2 {
	font-size: 25px;
	font-weight: 400;
	color: white;
	margin-bottom: 10px;
}

@media (max-width: 480px) {
	.canvas .profile .profileDetails .profileDetailsMain .profileDetailsMainDetails h2 {
		font-size: 18px;
		font-weight: 500;
	}
}

.canvas .profile .profileDetails .profileDetailsMain .profileDetailsMainDetails p {
	font-size: 16px;
	margin-top: 7px;
	color: white;
	font-weight: 300;
}

@media (max-width: 480px) {
	.canvas .profile .profileDetails .profileDetailsMain .profileDetailsMainDetails p {
		font-size: 14px;
		margin-top: 5px;
	}
}

.canvas .profilePerfomance {
	width: 100%;
	padding: 20px 0px;
	background: #2cc7ff27;
	border-radius: 0px 0px 20px 20px;
}

.canvas .profilePerfomance h2 {
	font-size: 20px;
	font-weight: 500;
}

@media (max-width: 480px) {
	.canvas .profilePerfomance h2 {
		font-size: 18px;
	}
}

.canvas .profilePerfomance .profilePerfomanceMian {
	width: 100%;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
}

.canvas .profilePerfomance .profilePerfomanceMian .perfomanceBox {
	-webkit-box-flex: 0;
	-ms-flex: 0 0 24%;
	flex: 0 0 24%;
	padding: 20px;
	border-radius: 10px;
	-webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0.048);
	box-shadow: 0 0 10px rgba(0, 0, 0, 0.048);
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	position: relative;
	z-index: 0;
	margin-top: 20px;
	overflow: hidden;
}

@media (max-width: 480px) {
	.canvas .profilePerfomance .profilePerfomanceMian .perfomanceBox {
		padding: 10px;
		-webkit-box-flex: 0;
		-ms-flex: 0 0 48%;
		flex: 0 0 48%;
		margin-top: 15px;
	}
}

.canvas .profilePerfomance .profilePerfomanceMian .perfomanceBox::before {
	position: absolute;
	content: '';
	top: 50%;
	left: 20%;
	width: 200px;
	height: 200px;
	background: linear-gradient(45deg, rgba(0, 0, 0, 0.103), rgba(0, 0, 0, 0));
	z-index: -1;
	border-radius: 50%;
	-webkit-animation: wave7 2s;
	animation: wave7 2s;
	-webkit-animation-direction: alternate;
	animation-direction: alternate;
	-webkit-animation-iteration-count: infinite;
	animation-iteration-count: infinite;
}

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

@media (max-width: 480px) {
	.canvas .profilePerfomance .profilePerfomanceMian .perfomanceBox::before {
		width: 100px;
		height: 100px;
		left: 30%;
		top: 60%;
	}
}

.canvas .profilePerfomance .profilePerfomanceMian .perfomanceBox::after {
	position: absolute;
	content: '';
	top: -50%;
	right: -30%;
	width: 250px;
	height: 250px;
	background: linear-gradient(45deg, rgba(0, 0, 0, 0.075), rgba(0, 0, 0, 0));
	z-index: -1;
	border-radius: 50%;
	-webkit-animation: wave8 1.5s;
	animation: wave8 1.5s;
	-webkit-animation-direction: alternate;
	animation-direction: alternate;
	-webkit-animation-iteration-count: infinite;
	animation-iteration-count: infinite;
}

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

@media (max-width: 480px) {
	.canvas .profilePerfomance .profilePerfomanceMian .perfomanceBox::after {
		width: 150px;
		height: 150px;
		top: 30%;
		right: -35%;
	}
}

.canvas .profilePerfomance .profilePerfomanceMian .perfomanceBox:nth-child(1) {
	background: linear-gradient(45deg, #1984ff, #0168c9);
}

.canvas .profilePerfomance .profilePerfomanceMian .perfomanceBox:nth-child(2) {
	background: linear-gradient(45deg, #ffa319, #c95b01);
}

.canvas .profilePerfomance .profilePerfomanceMian .perfomanceBox:nth-child(3) {
	background: linear-gradient(45deg, #20a000, #06be0f);
}

.canvas .profilePerfomance .profilePerfomanceMian .perfomanceBox:nth-child(4) {
	background: linear-gradient(45deg, #a00000, #ec0808);
}

.canvas .profilePerfomance .profilePerfomanceMian .perfomanceBox h1 {
	font-size: 30px;
	font-weight: 600;
	text-align: center;
	color: white;
}

@media (max-width: 480px) {
	.canvas .profilePerfomance .profilePerfomanceMian .perfomanceBox h1 {
		font-size: 16px;
	}
}

.canvas .profilePerfomance .profilePerfomanceMian .perfomanceBox p {
	font-size: 14px;
	text-align: center;
	margin-top: 10px;
	color: white;
}

@media (max-width: 480px) {
	.canvas .profilePerfomance .profilePerfomanceMian .perfomanceBox p {
		font-size: 10px;
		margin-top: 5px;
	}
}

.canvas .profileMenu {
	width: 100%;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
}

.canvas .profileMenu ul {
	width: 100%;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	padding-top: 20px;
}

.canvas .profileMenu ul li {
	list-style: none;
}

.canvas .profileMenu ul li:nth-child(1) a {
	border-top: none;
}

.canvas .profileMenu ul li a {
	text-decoration: none;
	padding: 20px 2.5%;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: #5434e2;
	-ms-flex-align: #5434e2;
	align-items: #5434e2;
	color: black;
	font-size: 16px;
	border-top: 1px solid #eee;
	opacity: 0.7;
}

@media (max-width: 480px) {
	.canvas .profileMenu ul li a {
		font-size: 14px;
		padding: 15px 2.5%;
	}
}

.canvas .profileMenu ul li a i {
	margin-right: 10px;
	color: #5434e2;
}

.navigation {
	position: fixed;
	width: 60%;
	background: white;
	border-radius: 10px;
	z-index: 150;
	-webkit-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
	top: 50%;
	left: 50%;
	overflow: hidden;
	border: 2px solid #5434e2;
	background: #5434e2;
	display: none;
}

@media (max-width: 1024px) {
	.navigation {
		width: 80%;
	}
}

@media (max-width: 768px) {
	.navigation {
		width: 90%;
	}
}

@media (max-width: 480px) {
	.navigation {
		width: 95%;
	}
}

.navigation .navigationHead {
	width: 100%;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	background: #5434e2;
	padding: 20px;
}

.navigation .navigationHead h1 {
	font-size: 25px;
	font-weight: 400;
	color: white;
}

@media (max-width: 480px) {
	.navigation .navigationHead h1 {
		font-size: 20px;
	}
}

.navigation .navigationBody {
	width: 100%;
	padding: 20px;
	background: white;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	max-height: 60vh;
	overflow-y: auto;
}

.navigation .navigationBody .navigationTitle {
	width: 100%;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	background: #eee;
	border-radius: 10px;
}

.navigation .navigationBody .navigationTitle .navigationTitleBox {
	font-size: 14px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-flex: 0;
	-ms-flex: 0 0 30%;
	flex: 0 0 30%;
	padding: 10px 15px;
}

.navigation .navigationBody ul {
	width: 100%;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
}

.navigation .navigationBody ul li {
	list-style: none;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
}

.navigation .navigationBody ul li a {
	text-decoration: none;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	width: 100%;
	border-radius: 10px;
	color: red;
}

.navigation .navigationBody ul li a:hover {
	background: #5434e265;
}

.navigation .navigationBody ul li a .navigationContentBox {
	font-size: 14px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-flex: 0;
	-ms-flex: 0 0 30%;
	flex: 0 0 30%;
	padding: 10px 15px;
}

.navigation .navigationBody ul li .completed {
	color: green;
}

.navigation .navigationBodyFooter {
	width: 100%;
	background: #eee;
	padding: 15px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
}

.navigation .navigationBodyFooter p {
	font-size: 14px;
}

.navigation .navigationBodyFooter .navigationClose {
	padding: 10px 30px;
	background: #5434e2;
	color: white;
	border-radius: 10px;
	font-size: 14px;
	cursor: pointer;
}

.navigation .navigationBodyFooter .navigationClose:hover {
	-webkit-animation: pulse3 1s;
	animation: pulse3 1s;
	-webkit-box-shadow: 0 0 0 1.5em rgba(255, 255, 255, 0);
	box-shadow: 0 0 0 1.5em rgba(255, 255, 255, 0);
}

@-webkit-keyframes pulse3 {
	0% {
		-webkit-box-shadow: 0 0 0 0 #5434e265;
		box-shadow: 0 0 0 0 #5434e265;
	}
}

@keyframes pulse3 {
	0% {
		-webkit-box-shadow: 0 0 0 0 #5434e265;
		box-shadow: 0 0 0 0 #5434e265;
	}
}

.completeExamPopup {
	position: fixed;
	-webkit-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
	top: 50%;
	left: 50%;
	width: 50%;
	max-height: 80vh;
	background: white;
	z-index: 160;
	border-radius: 10px;
	padding: 50px;
	display: none;
}

@media (max-width: 1024px) {
	.completeExamPopup {
		width: 70%;
	}
}

@media (max-width: 768px) {
	.completeExamPopup {
		width: 80%;
	}
}

@media (max-width: 480px) {
	.completeExamPopup {
		width: 90%;
		padding: 20px;
	}
}

.completeExamPopup .completeExamPopupMain {
	width: 100%;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
}

.completeExamPopup .completeExamPopupClose {
	position: absolute;
	right: 20px;
	top: 20px;
	font-size: 18px;
	cursor: pointer;
}

.completeExamPopup .completeExamPopupThumbnail {
	width: 300px;
}

@media (max-width: 480px) {
	.completeExamPopup .completeExamPopupThumbnail {
		width: 100%;
	}
}

.completeExamPopup .completeExamPopupThumbnail img {
	width: 100%;
	height: 100%;
	-o-object-fit: contain;
	object-fit: contain;
}

.completeExamPopup .completeExamPopupContent {
	width: 100%;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	margin-top: 30px;
}

.completeExamPopup .completeExamPopupContent h1 {
	font-size: 25px;
	font-weight: 500;
	text-align: center;
}

@media (max-width: 480px) {
	.completeExamPopup .completeExamPopupContent h1 {
		font-size: 22px;
	}
}

.completeExamPopup .completeExamPopupContent p {
	font-size: 14px;
	opacity: 0.7;
	text-align: center;
	margin-top: 15px;
	width: 70%;
	line-height: 1.7;
}

@media (max-width: 1024px) {
	.completeExamPopup .completeExamPopupContent p {
		width: 100%;
	}
}

.completeExamPopup .completeExamPopupContent a {
	text-decoration: none;
	width: 200px;
	padding: 15px;
	border-radius: 10px;
	background: #5434e2;
	color: white;
	font-size: 16px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	margin-top: 30px;
}

.completeExamPopup .completeExamPopupContent a:hover {
	-webkit-animation: pulse5 1s;
	animation: pulse5 1s;
	-webkit-box-shadow: 0 0 0 1.5em rgba(255, 255, 255, 0);
	box-shadow: 0 0 0 1.5em rgba(255, 255, 255, 0);
}

@-webkit-keyframes pulse5 {
	0% {
		-webkit-box-shadow: 0 0 0 0 #5434e265;
		box-shadow: 0 0 0 0 #5434e265;
	}
}

@keyframes pulse5 {
	0% {
		-webkit-box-shadow: 0 0 0 0 #5434e265;
		box-shadow: 0 0 0 0 #5434e265;
	}
}

@media (max-width: 480px) {
	.completeExamPopup .completeExamPopupContent a {
		padding: 12px;
		width: 100%;
	}
}

.elseDesign {
	width: 100%;
	display: none;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	margin-top: 50px;
}

.elseDesign .elseDesignThumbnail {
	width: 300px;
}

@media (max-width: 480px) {
	.elseDesign .elseDesignThumbnail {
		width: 100%;
	}
}

.elseDesign .elseDesignThumbnail img {
	width: 100%;
	height: 100%;
	-o-object-fit: contain;
	object-fit: contain;
}

.elseDesign .elseDesignContent {
	width: 100%;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	margin-top: 30px;
}

.elseDesign .elseDesignContent h1 {
	font-size: 25px;
	text-align: center;
	font-weight: 500;
}

@media (max-width: 480px) {
	.elseDesign .elseDesignContent h1 {
		font-size: 22px;
	}
}

.profileUpdatedPopup {
	position: fixed;
	-webkit-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
	top: 50%;
	left: 50%;
	width: 50%;
	max-height: 80vh;
	background: white;
	z-index: 160;
	border-radius: 10px;
	padding: 50px;
	display: none;
}

@media (max-width: 1024px) {
	.profileUpdatedPopup {
		width: 70%;
	}
}

@media (max-width: 768px) {
	.profileUpdatedPopup {
		width: 80%;
	}
}

@media (max-width: 480px) {
	.profileUpdatedPopup {
		width: 90%;
		padding: 20px;
	}
}

.profileUpdatedPopup .profileUpdatedPopupMain {
	width: 100%;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
}

.profileUpdatedPopup .profileUpdatedPopupClose {
	position: absolute;
	right: 20px;
	top: 20px;
	font-size: 18px;
	cursor: pointer;
}

.profileUpdatedPopup .profileUpdatedPopupThumbnail {
	width: 300px;
}

@media (max-width: 480px) {
	.profileUpdatedPopup .profileUpdatedPopupThumbnail {
		width: 100%;
	}
}

.profileUpdatedPopup .profileUpdatedPopupThumbnail img {
	width: 100%;
	height: 100%;
	-o-object-fit: contain;
	object-fit: contain;
}

.profileUpdatedPopup .profileUpdatedPopupContent {
	width: 100%;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	margin-top: 30px;
}

.profileUpdatedPopup .profileUpdatedPopupContent h1 {
	font-size: 25px;
	font-weight: 500;
	text-align: center;
}

@media (max-width: 480px) {
	.profileUpdatedPopup .profileUpdatedPopupContent h1 {
		font-size: 22px;
	}
}

.profileUpdatedPopup .profileUpdatedPopupContent p {
	font-size: 14px;
	opacity: 0.7;
	text-align: center;
	margin-top: 15px;
	width: 70%;
	line-height: 1.7;
}

@media (max-width: 1024px) {
	.profileUpdatedPopup .profileUpdatedPopupContent p {
		width: 100%;
	}
}

.profileUpdatedPopup .profileUpdatedPopupContent a {
	text-decoration: none;
	width: 200px;
	padding: 15px;
	border-radius: 10px;
	background: #5434e2;
	color: white;
	font-size: 16px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	margin-top: 30px;
}

.profileUpdatedPopup .profileUpdatedPopupContent a:hover {
	-webkit-animation: pulse5 1s;
	animation: pulse5 1s;
	-webkit-box-shadow: 0 0 0 1.5em rgba(255, 255, 255, 0);
	box-shadow: 0 0 0 1.5em rgba(255, 255, 255, 0);
}

@keyframes pulse5 {
	0% {
		-webkit-box-shadow: 0 0 0 0 #5434e265;
		box-shadow: 0 0 0 0 #5434e265;
	}
}

@media (max-width: 480px) {
	.profileUpdatedPopup .profileUpdatedPopupContent a {
		padding: 12px;
		width: 100%;
	}
}

.timerOutPopup {
	position: fixed;
	-webkit-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
	top: 50%;
	left: 50%;
	width: 30%;
	max-height: 80vh;
	background: white;
	z-index: 160;
	border-radius: 10px;
	padding: 50px;
	display: none;
}

@media (max-width: 1024px) {
	.timerOutPopup {
		width: 40%;
	}
}

@media (max-width: 768px) {
	.timerOutPopup {
		width: 50%;
	}
}

@media (max-width: 480px) {
	.timerOutPopup {
		width: 90%;
		padding: 20px;
	}
}

.timerOutPopup .timerOutPopupThumbnail {
	width: 100%;
	height: 250px;
}

.timerOutPopup .timerOutPopupThumbnail img {
	width: 100%;
	height: 100%;
	-o-object-fit: contain;
	object-fit: contain;
}

.timerOutPopup .timerOutPopupContent {
	width: 100%;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
}

.timerOutPopup .timerOutPopupContent h1 {
	font-size: 2em;
	font-weight: 400;
	text-align: center;
	color: red;
}

.timerOutPopup .timerOutPopupContent .closeTimerOutPopup {
	padding: 18px 30px;
	background: #5434e2;
	color: white;
	font-size: 16px;
	border-radius: 10px;
	cursor: pointer;
	margin-top: 30px;
}








.closeExamPopup {
	position: fixed;
	-webkit-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
	top: 50%;
	left: 50%;
	width: 400px;
	max-height: 80vh;
	background: white;
	z-index: 160;
	border-radius: 10px;
	padding: 50px;
	display: none;
}

@media (max-width: 480px) {
	.closeExamPopup {
		width: 90%;
		padding: 20px;
	}
}

.closeExamPopup .closeExamPopupThumbnail {
	width: 100%;
	height: 250px;
}

.closeExamPopup .closeExamPopupThumbnail img {
	width: 100%;
	height: 100%;
	-o-object-fit: contain;
	object-fit: contain;
}

.closeExamPopup .closeExamPopupContent {
	width: 100%;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
}

.closeExamPopup .closeExamPopupContent h1 {
	font-size: 20px;
	font-weight: 400;
	text-align: center;
}
.closeExamPopup .closeExamPopupContent .closeExamPopupBtnArea{
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: space-between;
}
.closeExamPopup .closeExamPopupContent .closeExamPopupBtnArea .cancelCloseExamPopup {
	flex: 0 0 48%;
	padding: 16px;
	background: #eee;
	color: #5434e2;
	font-size: 16px;
	border-radius: 10px;
	cursor: pointer;
	margin-top: 30px;
	text-align: center;
	transition: .3s;
}
.closeExamPopup .closeExamPopupContent .closeExamPopupBtnArea .cancelCloseExamPopup:hover{
	opacity: 0.7;
	transition: .3s;
}
.closeExamPopup .closeExamPopupContent .closeExamPopupBtnArea .submitCloseExamPopup {
	flex: 0 0 48%;
	padding: 16px;
	background: #5434e2;
	color: white;
	font-size: 16px;
	border-radius: 10px;
	cursor: pointer;
	margin-top: 30px;
	text-align: center;
	transition: .3s;
}
.closeExamPopup .closeExamPopupContent .closeExamPopupBtnArea .submitCloseExamPopup:hover{
	opacity: 0.7;
	transition: .3s;
}

.loadinSection {
	position: fixed;
	width: 82%;
	height: 100vh;
	z-index: 300;
	top: 60px;
	background: white;
	right: 0;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
}

@media (max-width: 1024px) {
	.loadinSection {
		width: 100%;
	}
}

.loadinSection .loadinSectionThumbnail {
	width: 250px;
}

.loadinSection .loadinSectionThumbnail img {
	width: 100%;
	height: 100%;
	-o-object-fit: contain;
	object-fit: contain;
}




.answerRevission {
	position: absolute;
	z-index: 2;
	width: 80%;
	height: 95%;
	top: 0;
	left: 0;
	background: white;
	display: none;
	justify-content: center;
	align-items: center;
	font-size: 30px;
	color: red;
}
.answerRevissionActive{
	display: flex;
}

.canvas{
	/*margin-top:10rem;*/
	height:100%;
}
.canvas .canvasMain{
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	justify-content: space-between;
	row-gap: 1rem;

}
.canvas .canvasMain .card-head{
	background:linear-gradient(45deg, #ffa319, #c95b01);
	width:calc(95% / 3);
	padding:2.5rem 0;
	text-align:center;
	border-radius:8px;
	color:white;
}
.status-1::before {
	background-color: #52b69a;
	border-color: #52b69a;
}

/* Apply this class when data-status is 0 and checkbox is checked */
.status-0::before {
	background-color: red;
	border-color: red;
}
.correctAnsSpan{
	color: #000;
	border: 1px solid green;
	background: #ffffff;
	border-left: 5px solid green;
	padding: 3px 6px;
}
.selectAnsSpan{
	color: #000;
	border: 1px solid #29bce1;
	background: #ffffff;
	border-left: 5px solid #29bbe1;
	padding: 3px 6px;
}

.answersArea{
	width: 100%;
	background: #f5f9f9;
	border-radius: 10px;
	padding :20px;
	display :flex;
	flex-wrap :wrap;
	gap: 40px;
	margin-top :20px;
	align-items:start;
}
.answersAreaBox{
	width: calc(100% / 2 - 20px);
	display: flex;
	flex-wrap: wrap;
	row-gap: 10px;
	column-gap: 15px;
}
@media(max-width: 900px){
	.answersAreaBox{
		width: 100%;
	}
}
.answersAreaBox h4{
	font-size :16px;
	font-weight: 500;
	width :100%;
}
.explanationBoxIdentify{
	display: flex;
	gap: 20px;
	margin-top: 20px;
	align-items: center;
	padding-bottom: 20px;

}
.explanationBoxIdentify .redBox{
	display:flex;
	gap:10px;
	align-items :center;
}
.explanationBoxIdentify .greenBox{
	display:flex;
	gap:10px;
	align-items :center;
}
.explanationBoxIdentify .blueBox{
	display:flex;
	gap:10px;
	align-items :center;
}
.explanationBoxIdentify .redBox button {
	width: 13px;
	height: 13px;
	border-radius: 4px;
	border-style: solid;
	color: #d00606;
	border-color: red;
	background-color: red;
}
.explanationBoxIdentify .redBox p{
	font-size: 14px;
}

.explanationBoxIdentify .greenBox button {
	width: 13px;
	height: 13px;
	border-radius: 4px;
	border-style: solid;
	color: #53b79b;
	border-color: #53b79b;
	background-color: #53b79b;

}
.explanationBoxIdentify .greenBox p{
	font-size: 14px;
}

.explanationBoxIdentify .blueBox button {
	width: 13px;
	height: 13px;
	border-radius: 4px;
	border-style: solid;
	color: #39c600;
	border-color: #39c600;
	background-color: #39c600;
}
.explanationBoxIdentify .blueBox p{
	font-size: 14px;
}


.ScreenshotBtn{
	position :fixed;
	z-index :15;
	bottom: 10px;
	right: 10px;
	background: #41B06E;
	color :white;
	border: none;
	outline: none;
	cursor: pointer;
	padding: 8px 15px;
	border-radius: 5px;
	display :flex;
	align-items: center;
	justify-content: center;
	gap: 5px;
	font-size: 12px;
	font-weight: 300;
}
.ScreenshotBtn:hover {
	-webkit-animation: screenshotBtnPulse 1s;
	animation: screenshotBtnPulse 1s;
	-webkit-box-shadow: 0 0 0 1.5em rgba(255, 255, 255, 0);
	box-shadow: 0 0 0 1.5em rgba(255, 255, 255, 0);
}

@-webkit-keyframes screenshotBtnPulse {
	0% {
		-webkit-box-shadow: 0 0 0 0 #41B06E;
		box-shadow: 0 0 0 0 #41B06E;
	}
}

@keyframes screenshotBtnPulse {
	0% {
		-webkit-box-shadow: 0 0 0 0 #41B06E;
		box-shadow: 0 0 0 0 #41B06E;
	}
}
@media(max-width:1024px){
	.ScreenshotBtn{
		bottom: 70px;
		font-size:11px;
		padding:4px 6px;
	}

}
.ScreenshotBtn i{
	font-size: 14px;
}
@media(max-width:1024px){
	.ScreenshotBtn i{
		font-size: 16px;
	}
}
.ScreenshotPreview{
	position: fixed;
	z-index: 110;
	top: 50%;
	left: 50%;
	width: 500px;
	transform: translate(-50%, -50%);
	box-shadow: 0 0 20px #0000001c;
	background: #fff;
	border-radius: 10px;
	overflow: hidden;
	padding: 30px;
	display: none;
}
@media(max-width: 540px){
	.ScreenshotPreview{
		width: 90%;
	}
}
@media(max-width: 480px){
	.ScreenshotPreview{
		width: 95%;
		padding: 20px;
	}
}
.ScreenshotPreview .ScreenshotPreviewImg{
	width: 100%;
	height: 280px;
	border: 1px solid #eee;
}
@media(max-width: 540px){
	.ScreenshotPreview .ScreenshotPreviewImg{
		height: 220px;
	}
}
.ScreenshotPreview .ScreenshotPreviewImg canvas{
	width: 100% !important;
	height: 100% !important;
	object-fit: contain;
}
.ScreenshotPreview .ScreenshotPreviewForm{
	width: 100%;
}
.ScreenshotPreview .ScreenshotPreviewForm form{
	width :100%;
	display :flex;
	flex-direction :column;
}
.ScreenshotPreview .ScreenshotPreviewForm form .formGroup{
	width: 100%;
	display :flex;
	flex-direction :column;
	margin-top :20px;
}
.ScreenshotPreview .ScreenshotPreviewForm form .formGroup label{
	font-size: 14px;
}
.ScreenshotPreview .ScreenshotPreviewForm form .formGroup textarea{
	width :100%;
	height: 100px;
	padding: 15px;
	border-radius: 5px;
	border: 1px solid #ccc;
	margin-top :5px;
	outline: none;
}
.ScreenshotPreview .ScreenshotPreviewForm form .formGroup textarea:focus{
	border-color: black;
}
.ScreenshotPreview .ScreenshotPreviewForm form .formBtnArea{
	width: 100%;
	margin-top: 20px;
	display: flex;
	align-items :center;
	justify-content: flex-end;
	gap :10px;
}
.ScreenshotPreview .ScreenshotPreviewForm form .formBtnArea .closeScreenshotPreviewBtn{
	height: 45px;
	padding :0px 25px;
	display :flex;
	justify-content :center;
	align-items: center;
	background: #eee;
	border-radius: 5px;
	cursor: pointer;
	font-size :16px;
	transition: .3s;
}
.ScreenshotPreview .ScreenshotPreviewForm form .formBtnArea .closeScreenshotPreviewBtn:hover{
	opacity: .7;
	transition: .3s;
}
.ScreenshotPreview .ScreenshotPreviewForm form .formBtnArea .submitScreenshotPreviewBtn{
	height: 45px;
	padding :0px 25px;
	display :flex;
	justify-content :center;
	align-items: center;
	background: #2731a5;
	color: white;
	border-radius: 5px;
	cursor: pointer;
	font-size :16px;
	transition: .3s;
	border: none;
	outline: none;
}
.ScreenshotPreview .ScreenshotPreviewForm form .formBtnArea .submitScreenshotPreviewBtn:hover{
	opacity: .7;
	transition: .3s;
}


.selectParagraphBox{
	width: 100%;
	border: 1px solid #aaa;
	padding: 20px;
	border-radius :10px;
	display: flex;
	flex-direction :column;
	margin-top :20px;
}
.selectParagraphBox .selectParagraphBoxTitle{
	font-size: 18px;
	font-weight: 600;
}
.selectParagraphBox .selectParagraphBoxTextarea{
	width :100%;
	display: flex;
	flex-direction: column;
	background: #ddf1fc;
	border-radius: 10px;
	padding: 10px;
	margin-top: 10px;
}
.selectParagraphBox .selectParagraphBoxTextarea .selectParagraphBoxTextareaBody{
	width: 100%;
}
.selectParagraphBox .selectParagraphBoxTextarea .selectParagraphBoxTextareaBody textarea{
	width: 100%;
	min-height: 200px;
	resize: vertical;
	border: 1px solid transparent;
	border-radius: 10px;
	background :white;
	padding: 15px;
	font-size: 14px;
	line-height: 1.5;
	outline: none;
}
.selectParagraphBox .selectParagraphBoxTextarea .selectParagraphBoxTextareaBody textarea:focus{
	border-color: var(--primaryColor);
}
.selectParagraphBox .selectParagraphBoxTextarea .selectParagraphBoxTextareaBodyFooter{
	width :100%;
	margin-top :10px;
	display :flex;
	align-items :center;
	justify-content: flex-end;
} 
.selectParagraphBox .selectParagraphBoxTextarea .selectParagraphBoxTextareaBodyFooter .textApplyBtn{
	padding: 6px 12px;
	background: #08a208;
	color: white;
	font-size: 14px;
	cursor: pointer;
	border-radius: 8px;
	transition: .3s;
}
.selectParagraphBox .selectParagraphBoxTextarea .selectParagraphBoxTextareaBodyFooter .textApplyBtn:hover{
	transition: .3s;
	opacity: .7;
}



.selectParagraphBox .selectParagraphBoxContent{
	width: 100%;
}
.selectParagraphBox .selectParagraphBoxContent::selection {
	color: black;
	background: transparent;
}
.selectParagraphBox .selectParagraphBoxContent p{
	display: flex;
	flex-wrap: wrap;
	row-gap: 2px;
	margin-top: 20px;
}
.selectParagraphBox .selectParagraphBoxContent .word {
	cursor: pointer;
	padding: 2px;
	display: inline-block;

}
.selectParagraphBox .selectParagraphBoxContent .word.selected {
	background-color: yellow;
}
.selectParagraphBox .selectParagraphBoxContent .word.grouped {
	background-color: yellow;
}



.text_hightlight_explanation_right_ans_data{
	width: 100%;
}
.text_hightlight_explanation_right_ans_data::selection {
	color: black;
	background: transparent;
}
.text_hightlight_explanation_right_ans_data{
	display: flex;
	flex-wrap: wrap;
	row-gap: 2px;
	margin-top: 20px;
}
.text_hightlight_explanation_right_ans_data .word {
	cursor: pointer;
	padding: 2px;
	display: inline-block;

}
.text_hightlight_explanation_right_ans_data .word.selected {
	background-color: yellow;
}
.text_hightlight_explanation_right_ans_data .word.grouped {
	background-color: yellow;
}




/*# sourceMappingURL=style.css.map */