@charset "utf-8";
/* CSS Document */
html {
  scroll-behavior: smooth;
}
body {
	overflow-x: hidden;
	font-family: 'Montserrat', sans-serif;
}
button, .btn, a {
	outline: none !important;
}
a:hover {
	text-decoration: none;
}
select {
	-webkit-appearance: none;
    -moz-appearance: none;
    background: url('../img/select-notch.png') right 3% center no-repeat;
    height: 42px !important;
}
input[type="number"] {
	-moz-appearance: textfield;
}
input[type="number"]::-webkit-outer-spin-button, input[type="number"]::-webkit-inner-spin-button {
	-webkit-appearance: none;
	margin: 0;
}
.container-fluid {
	padding-left: 40px;
	padding-right: 40px;
}
#mainLogo, #avtarProfile, #menuButton, #logoContain, #menuButtonSize, #footer, #dashboardMenu, #menuPosition {
	transition: 0.4s;
}
.logo img {
	width: 85px;
}
#dashboardBody {
	position: relative;
	margin-top: 65px;
	margin-bottom: 60px;
}
#dashboardBody .sideMenu .navbar {
	padding: 0px;
}
#dashboardBody .sideMenu .navbar .navbar-nav {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    width: 100%;
}
.btn.focus, .btn:focus {
	box-shadow: none;
}
.form-control:focus {
	box-shadow: none;
}
#mainBody {
	background: url(../img/mainBg.jpg) no-repeat center;
	background-size: cover;
	padding-top: 120px;
	padding-bottom: 150px;
}
.login_card {
	display: flex;
	justify-content: center;
}
.login_card .card {
	width: 475px;
    background: no-repeat;
    border: none;
    border-radius: 15px;
    -webkit-box-shadow: 7px 7px 16px 0px rgba(0, 0, 0, 0.14);
	-moz-box-shadow:    7px 7px 16px 0px rgba(0, 0, 0, 0.14);
	box-shadow:         7px 7px 16px 0px rgba(0, 0, 0, 0.14);
}
.login_card .card .card-header {
	background-color: #012b55;
	text-align: center;
	border-radius: 20px 20px 0px 0px;
	position: relative;
}
.login_card .card .card-header .card-img-top {
	width: 85px;
}
.closeModel {
	position: absolute;
	width: 20px;
	top: 0;
	margin-top: 15px;
	right: 0;
	margin-right: 15px;
	opacity: 0.5;
	cursor: pointer;
	transition: 0.4s;
}
.closeModel:hover {
	opacity: 1;
	transition: 0.4s;
}
.login_card .card .card-body {
	background-color: #f2f2f2;
	border-radius: 0px 0px 20px 20px;
	padding: 60px;
}
.login_card .card .card-body .card-title {
	font-size: 32px;
	color: #000;
	text-align: center;
	font-weight: 200;
	text-transform: uppercase;
	letter-spacing: 5px;
	margin-bottom: 25px;
}
.login_card .card .card-body form .form-group {
	margin-bottom: 45px;
}
.login_card .card .card-body form .form-group label {
	color: #00a651;
	font-size: 12px;
	font-weight: 600;
	margin-bottom: 0px;
}
.login_card .card .card-body form .form-group .form-control {
	border-radius: 0px;
	border: 1px solid #dfdfdf;
	background-color: #fff;
	height: 42px;
	text-align: center;
	font-size: 16px;
	color: #696969;
	font-weight: 600;
}
.login_card .card .card-body form .form-group .form-control::placeholder {
	font-weight: 400;
}
.form-group .belowInput {
	display: flex;
}
.form-group .belowInput li:last-child {
	margin-left: auto;
}
.form-group .belowInput li a {
	color: #012b55;
	font-weight: 500;
	font-size: 14px;
}
.form-group .belowInput li a:hover {
	text-decoration: underline;
}
.login_card .btn-img img {
	width: 50px;
}
.btn-img {
	padding: 0px;
	margin-top: -10px;
	margin-bottom: 45px;
}
.numberLevel {
	margin-bottom: 40px;
}
.registration_card .card .card-body {
	padding: 20px 125px 60px
}
.registration_card .card .card-body .card-title {
	margin-bottom: 20px;
}
.registration_card .btn-img {
	margin-bottom: -5px;
}
.registration_card .card {
	width: 600px;
}
.registration_card.registration_card2 .card {
	width: 870px;
}
.registration_card2 .card .card-body {
	padding: 20px 70px 35px
}
.registration_card2 .card .card-body form .form-group {
    margin-bottom: 30px;
}

/*custom-radio-btn-end*/
.customRadio {
    height: 42px;
    display: flex;
    align-items: center;
}
.customRadio .relationBtn {
  display: block;
  position: relative;
  padding-left: 30px;
  margin-bottom: 12px;
  cursor: pointer;
  font-size: 22px;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  color: #231f20 !important;
  font-weight: 600 !important;
  font-size: 14.19px !important;
  margin-right: 45px;
}
.customRadio .relationBtn input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
}
.customRadio .relationBtn .checkmark {
  position: absolute;
  top: 0;
  left: 0;
  height: 15px;
  width: 15px;
  background-color: #e5f6ee;
  border-radius: 50%;
  border: 1px solid #767273;
  margin-top: 3px;
}
.customRadio .relationBtn:hover input ~ .checkmark {
  background-color: #ccc;
}
.customRadio .relationBtn input:checked ~ .checkmark {
  background-color: #00a651;
  border: none;
}
.customRadio .relationBtn .checkmark:after {
  content: "";
  position: absolute;
  display: none;
}
.customRadio .relationBtn input:checked ~ .checkmark:after {
  display: block;
}
.customRadio .relationBtn .checkmark:after {
 	top: 4px;
	left: 4px;
	width: 7px;
	height: 7px;
	border-radius: 50%;
	background: #e5f6ee;
}
/*custom-radio-btn-end*/
.btn-next {
    background-color: #00a651;
    border: 1px solid #00a651;
    color: #fff;
    font-size: 18px;
    font-weight: 600;
    border-radius: 0px;
    padding: 5px;
    height: 42px;
    width: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0px auto;
    margin-top: 20px !important;
}
.btn-next:hover {
	background-color: #1e8655;
    border: 1px solid #1e8655;
    color: #fff;
}
.registration_heading {
	font-size: 20px;
	color: #00a651;
	font-weight: 600;
	text-align: center;
}
.packages .packages_card {
	width: auto !important;
	margin-bottom: 15px;
}
.packages .packages_card .card-header {
	border-radius: 10px 10px 0px 0px;
	font-size: 16px;
	color: #eff4ff;
	font-weight: 600;
	height: 75px;
	display: flex;
    justify-content: center;
    align-items: center;
}
.packages .packages_card .card-body {
	border-radius: 0px 0px 10px 10px;
	background-color: #fff;
	padding: 10px 20px !important;
}
.packages_cardDetails {
	color: #000;
	font-weight: 500;
	font-size: 14px;
	letter-spacing: 2px;
}
.packages_cardcontain {
	color: #696969;
	font-weight: 500;
	font-size: 14px;
}
.packages_cardPrice, .marquee .card .card-body .card-title {
	color: #012b55;
	font-weight: 600;
	font-size: 18px;
}
.packages {
	margin-bottom: 30px;
}
.registration_card3 .card .card-body {
	padding: 20px 130px 35px;
}
.registration_card.registration_card3 .card {
    width: 870px;
}
.frgt_password .card {
	width: 475px;
}
.frgt_password .card .card-body {
	padding: 30px 60px 85px;
}
.frgt_password .card .card-body .card-title {
	margin-bottom: 50px;
}
.withValue {
    text-align: left !important;
    background: none !important;
    border: none !important;
    padding: .375rem 0px;
    letter-spacing: 2px;
}
.reset_password .card .card-body form .form-group {
	margin-bottom: 15px;
}
.reset_password .card .card-body {
	padding: 30px 60px 50px;
}
.reset_password .btn-next {
	margin-top: 40px !important;
}
.form-group select {
	text-align: left !important;
}
#header {
	padding: 10px 0px;
	border-bottom: 1px solid #e5e5e5;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 99999;
    background-color: #960b08;
}
.mainHeader {
	display: flex;
	flex-direction: row;
    justify-content: space-between;
}
.mainHeader .avtar_profile img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}
.mainHeader .avtar_profile {
	background-color: #000;
    border-radius: 50%;
    overflow: hidden;
    width: 50px;
    height: 50px;
}
.mainHeader .avtar_demo {
	/*margin-left: auto;*/
    display: flex;
    align-items: center;
}
#dashboardBody .sideMenu {
	border-right: 1px solid #e5e5e5;
	padding-top: 20px;
	height: 100%;
    position: fixed;
    width: calc(22% - 30px);
}
.sideMenu .navbar-nav .nav-item {
	margin: 4px 0px;
	width: 84%;
	padding: 4px 5px;
	border: 1px solid #e5e5e5;
	border-radius: 20px;
	color: #012b55;
	font-size: 14px;
	font-weight: 600;
}
.sideMenu .navbar-nav .nav-item.active, .sideMenu .navbar-nav .nav-item:hover {
	background-color: #f6e5e7;
}
.sideMenu .navbar-nav .nav-item .nav-link {
	padding: 0px;
	color: #012b55;
	font-size: 13px;
	font-weight: 600;
}
.dashboardMenu1 {
	background: url(../img/menuIcon1.png) no-repeat left 20px center;
}
.dashboardMenu2 {
	background: url(../img/menuIcon2.png) no-repeat left 20px center;
}
.dashboardMenu3 {
	background: url(../img/menuIcon3.png) no-repeat left 20px center;
}
.dashboardMenu4 {
	background: url(../img/menuIcon4.png) no-repeat left 20px center;
}
.dashboardMenu5 {
	background: url(../img/menuIcon5.png) no-repeat left 20px center;
}
.dashboardMenu6 {
	background: url(../img/menuIcon6.png) no-repeat left 20px center;
}
#dashboardBody .customCol .col-md-3 {
    -ms-flex: 0 0 22%;
    flex: 0 0 22%;
    max-width: 22%;
}
#dashboardBody .customCol .col-md-9 {
    -ms-flex: 0 0 78%;
    flex: 0 0 78%;
    max-width: 78%;
}
.marquee .card .card-body {
	padding: 20px 20px 10px;
}
.marquee .card .card-body .card-title {
	border-bottom: 1px solid #00a651;
	margin-bottom: 6px;
}
.marquee .card .card-body .card-text, .examHistoryText {
	font-size: 14px;
	font-weight: 300;
	color: #7b7b7b;
}
.marquee .card {
	border-radius: 12px;
	background-color: #f2f4f6;
}
.marquee .card .card-img-top {
	border-radius: 10px;
    height: 100%;
    max-width: 100%;
    object-fit: cover;
    object-position: center;
    width: 100%;
}
.marquee .card .card-header {
    padding: 0px;
    border-radius: 0px;
    border: none;
    height: 144px;
    width: 100%;
    display: flex;
    justify-content: center;
}
.examDeteils {
	display: flex;
}
.examDeteils li, .examTimeTaken .examTimeTaken1 {
	font-size: 14px;
	color: #012b55;
	font-weight: 500;
}
.examDeteils li:last-child {
	color: #00a651;
	margin-left: 15%;
}
.dashBtn {
	display: flex;
	justify-content: center;
}
.btn-test {
	text-transform: uppercase;
    font-size: 14px;
    color: #fff;
    background-color: #f8931e;
    border-color: #f8931e;
    border-radius: 20px;
    font-weight: 500;
    /*padding: 4px 35px;*/
    padding: 4px;
    height: 31px;
    width: 155px;
    display: flex;
    justify-content: center;
    align-items: center;
}
.btn-test:hover {
	color: #fff;
	background-color: #e2861b;
    border-color: #e2861b;
}
.dashboard-right {
	padding: 40px 0px 0px 25px;
}
.dashboard-right .selectCources .bx-wrapper .bx-controls-direction a {
	height: 70px;
	margin-top: -35px;
}
.dashboard-right .selectCources .bx-wrapper .bx-prev {
    background: url(../img/leftCourse.png) center left no-repeat;
    left: 0%;
    margin-left: -30px;
}
.dashboard-right .selectCources .bx-wrapper .bx-next {
    background: url(../img/rightCourse.png) center right no-repeat;
    right: 0%;
    margin-right: -30px;
}
.dashboard-right .selectCources .bx-wrapper .bx-prev:hover {
	background: url(../img/leftCourse-h.png) center left no-repeat;
}
.dashboard-right .selectCources .bx-wrapper .bx-next:hover {
    background: url(../img/rightCourse-h.png) center right no-repeat;
}
.selectCourcesBellow-title {
	font-size: 20px;
	color: #012b55;
	margin-bottom: 15px;
	font-weight: 600;
}
.selectCourcesBellow {
	padding: 20px 0px 60px 25px;
}
.newsOnly .card {
	border-radius: 10px;
	border: 0px;
}
.newsOnly .card .card-header {
    padding: 0px;
    border: 0px;
    border-radius: 10px;
    height: 130px;
    width: 100%;
    display: flex;
    justify-content: center;
}
.newsOnly .card .card-header iframe {
	border-radius: 10px;
	border: none;
	background-color: #000;
}
.newsOnly .card .card-header .youtube .play {
	opacity: 1;
	background: url(../img/sTube.png) no-repeat center;
	background-size: 50px auto;
    height: 38px;
    width: 52px;
    top: 50%;
    margin-top: -19px;
    left: 50%;
    margin-left: -26px;
}
.newsOnly .card .card-header .youtube .thumb {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}
.newsOnly .card .card-header .card-img-top {
    border-radius: 10px;
    height: 100%;
    max-width: 100%;
    object-fit: cover;
    object-position: center;
    width: 100%;
}
.courseNews-text {
	font-size: 14px;
	color: #012b55;
	font-weight: 500;
	line-height: 18px;
	margin-top: 5px;
}
.selectCourcesBellow-news .bx-wrapper .bx-pager {
	padding: 0px;
    bottom: 0px;
    margin-bottom: -20px;
}
.selectCourcesBellow-news .bx-wrapper .bx-pager.bx-default-pager a {
	background-color: #818181;
	margin: 0px 4px;
}
.selectCourcesBellow-news .bx-wrapper .bx-pager.bx-default-pager a:hover, .selectCourcesBellow-news .bx-wrapper .bx-pager.bx-default-pager a.active, .selectCourcesBellow-news .bx-wrapper .bx-pager.bx-default-pager a:focus {
	background-color: #00a651;
}
#footer {
	text-align: center;
	font-size: 14px;
	font-weight: 500;
	color: #fff;
	background-color: #960b08;
	padding: 19.5px;
    position: fixed;
    width: 100%;
    bottom: 0;
    z-index: 99999;
    /*display: none;*/
}
.mainHeader .logoTitle {
    align-self: center;
}
.logoTitle2 {
	color: #2957a4;
	font-size: 15px;
	font-weight: 300;
	border: 1px solid #012b55;
	display: inline-block;
	padding: 2px 5px;
    margin-top: 8px;
}
#resultBody {
	margin-bottom: 105px;
}
#resultBody .resultBodySection {
	margin-top: 118px;
	width: 960px;
    margin-left: auto;
    margin-right: auto;
    padding: 15px;
}
.resultTime {
	width: 60%;
	padding-top: 25px;
	padding-bottom: 15px;
	margin: 0px auto;
}
.resultTime .resultTimeText, .examHistoryTitle {
	font-size: 18px;
	font-weight: 500;
	color: #012b55;
}
.resultTime .resultTimeText span {
 	color: #00a651;
 }
.performanceAnswer .nav.nav-tabs .nav-link {
 	border: none;
 	font-size: 15px;
 	font-weight: 300;
 	color: #000;
 	border-radius: 0px;
 	transition: 0.2s;
 	position: relative;
 }
 .performanceAnswer .nav.nav-tabs .nav-link.active::after {
    position: absolute;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 10px 6px 0 6px;
    border-color: #012b55 transparent transparent transparent;
    top: 39px;
    right: 48%;
    content: '';
 }
.performanceAnswer .nav.nav-tabs .nav-link.active, .performanceAnswer .nav.nav-tabs .nav-link:hover {
 	background-color: #012b55;
 	color: #fff;
 	transition: 0.2s;
 }
 .performanceAnswer .nav {
 	width: 80%;
 	margin: 0px auto;
 	border-bottom: none;
 }
 .performanceAnswer .nav .nav-item {
 	width: 50%;
 	text-align: center;
 	border: 1px solid #012b55;
 }
 .performanceScore, .marksCenter {
 	display: flex;
 	align-items: center;
 }
 .performanceScoreTitle {
 	font-size: 15px;
 	color: #000;
 	font-weight: 500;
 }
 .performanceScoreMarks {
 	font-size: 31px;
 	color: #000;
 	font-weight: 500;
 }
 .performanceTime .marksCenter {
 	align-items: baseline;
 }
 .performanceTime {
 	justify-content: right;
 }
 .performanceAnswer .tab-content {
 	background-color: #f0fff7;
 	border-radius: 10px;
 	border: 1px solid #e5e5e5;
 	margin-top: 15px;
 }
 .progressTitle {
 	display: flex;
 	justify-content: space-between;
 	margin-bottom: 2px;
    font-size: 16px;
    font-weight: 500;
    color: #000;
 }
 .performanceBody {
 	padding: 15px;
 }
 .performanceBody .progress {
    height: 25px;
    border-radius: 0px;
    background-color: #b5b5b5;
 }
 .bg-currect {
 	background-color: #2f3a90;
 }
 .bg-incurrect {
 	background-color: #ff0000;
 }
 .progressResult {
 	font-size: 15px;
 	color: #000;
 	font-weight: 300;
 	display: flex;
    justify-content: space-evenly;
    margin-top: 8px;
 }
 .questionScore {
 	padding: 5px 15px 15px;
 }
 .questionScore .table thead th, .questionScore .table td {
 	border-bottom: 1px solid rgba(0,0,0,0.4);
 	width: 50%;
 }
 .questionScore .table th {
 	border-top: 0px;
 	font-size: 15px;
 	color: #000;
 	font-weight: 500;
 	text-align: center;
 	padding: 5px;
 }
 .questionScore .table td {
 	padding: 20px 0px 15px;
 }
 .questionScore .table td:first-child {
 	padding-right: 15px;
 }
 .questionScore .table td:last-child {
 	padding-left: 15px;
 }
 .scoreBar {
 	background-color: #f69220 !important;
 	width: 35%;
 }
 .bg-score {
 	background-color: #00a651;
 }
 .scoreSection {
 	display: flex;
 	justify-content: space-between;
 	align-items: center;
 }
 .questionSection .progressResult {
 	font-size: 13px;
 	font-weight: 500;
 	margin-top: 2px;
 	justify-content: space-between;
 }
 .logoLeft {
 	width: auto !important;
	margin-left: 0px !important;
	display: flex;
	align-items: center;
 }
 .answerBody .answerBodyTitle {
 	padding: 15px;
 	background-color: #ffe8cd;
 	border-radius: 10px 10px 0px 0px;
 }
 .answerBodyQuestion {
 	padding: 8px 15px 15px;
 }
 .labelcontainer {
 	letter-spacing: 5px !important;
 	color: #000 !important;
    font-weight: 300 !important;
 }
 .answerBodyQuestion .labelcontainer {
 	pointer-events: none;
 	background-color: #fff;
    padding: 14px 20px;
    display: block;
    position: relative;
    padding-left: 35px;
    margin-bottom: 12px;
    cursor: pointer;
    font-size: 15px;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    border: 1px solid #e5e5e5;
    border-radius: 7px;
    text-transform: uppercase;
 }
 .answerBodyQuestion .optionsDiv {
 	margin-top: 8px;
 }
 .solutionPdf {
 	text-align: right;
 }
 .solutionPdf a span {
 	text-decoration: underline;
 }
 .solutionPdf a {
 	color: #f59121;
 }
 .resultInfo {
 	margin-top: -5px;
 	padding-bottom: 20px;
 }
 .questionOnly {
 	border-bottom: 1px solid #b6b6b6;
 }
 .examHistory {
 	margin-top: 40px;
 }
.examHistoryText {
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    max-height: 40px;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    width: 100%;
    line-height: 20px;
}
.examTimeTaken li {
	display: flex;
	padding: 2px 0px;
}
.examTimeTaken .examTimeTaken1 {
	width: 100px;
    align-items: center;
    display: flex;
}
.examTimeTaken2 {
	font-size: 16px;
	font-weight: 500;
	color: #000;
}
.examHistoryContain {
	background-color: #f2f4f6;
	border-radius: 10px;
	margin-left: 15px;
	margin-bottom: 30px;
}
.examHistoryContain .colExamTime {
	border-left: 1px solid #00a651;
	padding-left: 12px !important;
}
.btn-result {
	background-color: #fff;
	border: 1px solid #c0c0c0;
	color: #012b55;
}
.btn-result:hover {
	background-color: #e8e8e8;
	border-color: #e8e8e8;
	color: #012b55;
}
.examBtnOnly li {
	padding: 5px 0px;
	height: 41px;
}
.examBtnOnly .btn-test {
	width: 90%;
	/*margin: 0px auto;*/
}
.colExamImg {
	padding-right: 8px;
}
.colExamText, .colExamTime {
	padding: 0px 8px !important;
}
.colExamBtn {
	padding-left: 8px;
	align-self: center;
}
.examHistoryImg {
	height: 100%;
	width: 100%;
}
.examHistoryImg img {
	height: 100%;
	width: 100%;
	object-fit: cover;
	object-position: center;
	border-radius: 10px;
}
.examHistoryTitle {
	white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.labelcontainer {
    display: block;
    position: relative;
    padding-left: 35px;
    margin-bottom: 12px;
    cursor: pointer;
    font-size: 15px;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    border: 1px solid #e5e5e5;
    border-radius: 7px;
    text-transform: uppercase;
    padding: 19px 16px 19px 48px;
}
.labelcontainer input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
}
.labelcontainer .checkmark::after {
    top: 9px;
    left: 9px;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: white;
}
.labelcontainer input:checked ~ .checkmark::after {
    display: block;
}
.labelcontainer input:checked ~ .checkmark {
    background-color: #5257ea;
}
.checkmark::after {
    content: "";
    position: absolute;
    display: none;
}
.checkmark {
    position: absolute;
    top: 18px;
    left: 15px;
    height: 25px;
    width: 25px;
    background-color: #eee;
    border-radius: 50%;
}
.cheptersBodyTitle {
	font-size: 22px;
	font-weight: 600;
	color: #fff;
	text-align: center;
    background-color: #00a651;
    padding: 20px;
    border-radius: 10px;
}
.cheptersBodySection .labelcontainer input:checked ~ .checkmark {
	background-color: #2957a4; 
}
.cheptersBodySection .labelcontainer .checkmark::after {
	top: 4px;
	left: 4px;
	width: 12px;
	height: 12px;
}
 .cheptersBodySection .labelcontainer {
 	border: none;
    margin: 5px 15% !important;
    text-transform: capitalize;
    letter-spacing: normal !important;
    font-size: 15px !important;
    font-weight: 500 !important;
    color: #313131 !important;
 }
 .cheptersBodySection .checkmark {
	width: 22px;
	height: 22px;
	border: 1px solid #b5b5b5;
 }
 .cheptersBodySection .chepRadio .optionsDiv {
 	border-bottom: 1px solid rgba(74,74,74,0.3);
 }
 .cheptersBodySection .chepterForm {
 	padding: 0px 30px;
 }
 #resultBody .resultBodySection.cheptersBodySection {
 	padding: 0px;
 	background-color: #f0fff7;
 	width: 675px;
 	margin-top: 200px;
    border: 1px solid #e5e5e5;
    border-radius: 10px;
}
 .cheptersBodySection .chepterForm select {
 	background: #fff url('../img/select-notch-b.png') right 3% center no-repeat;
 	border-radius: 0px;
    font-size: 15px;
    font-weight: 300;
    color: #313131;
}
 .cheptersBodySection .chepterForm label, .customCheckTitle {
    font-size: 16px;
    font-weight: 500;
    color: #000;
    margin-bottom: 2px;
}

/* The container */
.customCheck {
  display: block;
  position: relative;
  padding-left: 35px;
  margin-bottom: 12px;
  cursor: pointer;
  font-size: 22px;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

/* Hide the browser's default checkbox */
.customCheck input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}

/* Create a custom checkbox */
.customCheck .checkmark {
  position: absolute;
  top: 0;
  left: 0;
  height: 20px;
  width: 20px;
  background-color: #eee;
  border-radius: 0px;
}

/* On mouse-over, add a grey background color */
.customCheck:hover input ~ .checkmark {
  background-color: #ccc;
}

/* When the checkbox is checked, add a blue background */
.customCheck input:checked ~ .checkmark {
  /*background-color: #2196F3;*/
}

/* Create the checkmark/indicator (hidden when not checked) */
.customCheck .checkmark:after {
  content: "";
  position: absolute;
  display: none;
}

/* Show the checkmark when checked */
.customCheck input:checked ~ .checkmark:after {
  display: block;
}

/* Style the checkmark/indicator */
.customCheck .checkmark:after {
  left: 6px;
  top: 2px;
  width: 7px;
  height: 12px;
  border: solid #00a651;
  border-width: 0 3px 3px 0;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}
.cheptersBodySection .chepterForm .customCheck {
    font-size: 15px;
    font-weight: 300;
    color: #313131;
    margin: 15px 0px;
}
.customCheckBox {
	background-color: #fff;
	border: 1px solid #e5e5e5;
	padding: 0px 20px;
}
.btn-done {
	background-color: #00a651;
	border: 1px solid #00a651;
	border-radius: 0px;
	color: #fff;
	font-size: 18px;
	font-weight: 600;
	width: 50%;
}
.btn-done:hover {
	background-color: #00823f;
	border: 1px solid #00823f;
	color: #fff;
}
.customCheckBtn {
	text-align: center;
    padding-top: 35px;
    padding-bottom: 25px;
}

@media (min-width:1600px) and (max-width:1920px) {
	.selectCources .bx-wrapper, .selectCourcesBellow .sub-selectCourcesBellow {
		max-width: 1149px !important;
	}
	.marquee li {
		width: 363px !important;
	}
	.selectCources, .selectCourcesBellow {
	    display: flex;
	    justify-content: center;
	}
	.selectCourcesBellow-news .bx-wrapper {
		max-width: 560px !important;
	}
	.newsOnly li {
		width: 274px !important;
	}
	.newsOnly .card .card-header {
		height: 160px;
	}
}

@media (min-width:1380px) and (max-width:1599px) {
	.selectCources .bx-wrapper, .selectCourcesBellow .sub-selectCourcesBellow {
		max-width: 978px !important;
	}
	.marquee li {
		width: 306px !important;
	}
	.selectCources, .selectCourcesBellow  {
	    display: flex;
	    justify-content: center;
	}
	.selectCourcesBellow-news .bx-wrapper {
		max-width: 560px !important;
	}
	.newsOnly li {
		width: 231px !important;
	}
	.newsOnly .card .card-header {
		height: 135px;
	}
}
@media (min-width:1331px) and (max-width:1379px) {
	.selectCources .bx-wrapper, .selectCourcesBellow .sub-selectCourcesBellow {
		max-width: 944px !important;
	}
	.marquee li {
		width: 294px !important;
	}
	.selectCources, .selectCourcesBellow  {
	    display: flex;
	    justify-content: center;
	}
	.selectCourcesBellow-news .bx-wrapper {
		max-width: 456px !important;
	}
	.newsOnly li {
		width: 220px !important;
	}
}

@media (min-width:1200px) and (max-width:1330px) {
	.selectCources .bx-wrapper, .selectCourcesBellow .sub-selectCourcesBellow {
		max-width: 841px !important;
	}
	.marquee li {
		width: 260px !important;
	}
	.selectCources, .selectCourcesBellow {
	    display: flex;
	    /*justify-content: center;*/
	}
	.selectCourcesBellow-news .bx-wrapper {
		max-width: 405px !important;
	}
	.newsOnly li {
		width: 197px !important;
	}
	.newsOnly .card .card-header {
		height: 115px;
	}
	.sideMenu .navbar-nav .nav-item {
		width: 90%;
	}
}

@media (max-width:1220px) {
	.examTimeTaken2 {
		font-size: 15px;
	}
}
@media (max-width:1199px) {
	#dashboardBody .customCol .col-md-3 {
	    -ms-flex: 0 0 28%;
	    flex: 0 0 28%;
	    max-width: 28%;
	}
	#dashboardBody .customCol .col-md-9 {
	    -ms-flex: 0 0 72%;
	    flex: 0 0 72%;
	    max-width: 72%;
	}
	#dashboardBody .sideMenu {
		width: calc(28% - 30px);
	}
	.selectCources, .selectCourcesBellow {
	    display: flex;
	    justify-content: center;
	}
	.selectCources .bx-wrapper, .selectCourcesBellow .sub-selectCourcesBellow {
		max-width: 619px !important;
	}
	.marquee li {
		width: 294px !important;
	}
	.selectCourcesBellow-news .bx-wrapper {
		max-width: 294px !important;
	}
	.newsOnly li {
		width: 292px !important;
	}
	.newsOnly .card .card-header {
		height: 168px;
	}
	.examHistoryContain .customColSix {
	    -ms-flex: 0 0 100%;
	    flex: 0 0 100%;
	    max-width: 100%;
	    align-self: center;
    	padding: 5px 20px;
	}
	.ExamTextOnly {
		padding: 5px 20px 0px 0px !important;
	}
	.examTimeTaken {
		padding-left: 25px;
	}
	.examHistoryContain .colExamTime {
		border-left: 0px;
	}
}
@media (max-width:1040px) {
	#resultBody .resultBodySection {
		width: 910px;
	}
}
@media (min-width:992px) {
	#dashboardMenu {
		margin-top: 0px !important;
	}
	#logoContain {
	    margin-left: 0px !important;
	}
}
@media (max-width:991px) {
	.container-fluid {
		padding-left: 15px;
		padding-right: 15px;
	}
	#dashboardBody .customCol .col-md-3, #dashboardBody .customCol .col-md-9 {
		-ms-flex: 0 0 100%;
	    flex: 0 0 100%;
	    max-width: 100%;
	}
	.logo {
		width: 100%;
	    text-align: center;
	    margin-left: 50px;
	}
	#dashboardBody .sideMenu .navbar button {
		padding: 0px;
	    z-index: 99999;
	    position: fixed;
	    /*height: 118px;*/
	    top: 0;
	}
	#dashboardBody .sideMenu {
		border-right: none;
		padding-top: 0px;
	    position: absolute;
	    top: 0%;
	    margin-top: -70px !important;
	    /*width: 100%;*/
	}
	#dashboardBody .sideMenu .navbar .navbar-collapse {
		background-color: #fff;
    	z-index: 99999;
    	margin-left: -15px;
    	border: 1px solid #e5e5e5;
    	margin-top: 118px;
    	position: fixed;
    	width: 275px;
    	top: 0px;
    	height: 100%;
	}
	#dashboardBody .sideMenu .navbar .navbar-nav {
		padding: 15px 30px;
	}
	.sideMenu .navbar-nav .nav-item {
		width: 100%;
	}
	.selectCources .bx-wrapper .bx-controls {
		display: none;
	}
	.dashboard-right {
	    padding: 40px 0px 0px 0px;
	}
	.selectCources .bx-wrapper, .selectCourcesBellow .sub-selectCourcesBellow {
	    max-width: 100% !important;
	    width: 100%;
	}
	.marquee li {
	    width: 300px !important;
	}
	.selectCourcesBellow {
		padding: 20px 0px 25px;
	}
	.selectCourcesBellow-news .bx-wrapper {
		max-width: 100% !important;
	}
	.selectCourcesBellow-news {
		margin-bottom: 30px;
	}/*
	#dashboardBody .container-fluid {
		padding-right: 0px;
	}*/
	#footer .bottom-footer li:nth-child(2) {
		display: none !important;
	}
	#footer .bottom-footer li {
		display: block !important;
	}
	#footer {
		padding: 15px 18px;
	}
	#resultBody .resultBodySection {
		width: 100%;
	}
	.resultTime {
		width: 70%;
	}
	.questionScore {
		padding: 5px 5px 15px;
	}
	#resultBody .resultBodySection {
		padding: 15px 5px;
	}
	.questionScore .table td:first-child {
		padding-right: 10px;
	}
	.questionScore .table td:last-child {
		padding-left: 10px;
	}
	#resultBody .resultBodySection.cheptersBodySection {
		margin-top: 180px;
	}
	.registration_card3 .card .card-body {
	    padding: 20px 70px 35px;
	}
	.registration_card.registration_card2 .card, .registration_card.registration_card3 .card {
    	width: 735px;
    }
}

@media (max-width:767px) {
	.performanceBody .table-responsive-md {
		width: 695px;
		padding-bottom: 0px;
	}
	.tableScroll {
		overflow-x: scroll;
	}
	.resultInfo .resultInfoLeft li {
		display: block !important;
	}
	.resultInfo .resultInfoLeft li:nth-child(2) {
		display: none !important;
	}
	.performanceAnswer .nav, .resultTime, #resultBody .resultBodySection.cheptersBodySection {
		width: 100%;
	}
	.cheptersBodySection .labelcontainer {
		margin: 5px !important;
	}
	.registration_card.registration_card2 .card, .registration_card.registration_card3 .card {
    	width: 80%;
    }
    .registration_card2 .card .card-body {
        padding: 20px 20px 35px;
    }
}

@media (max-width:575px) {
	#mainLogo {
		width: 50px !important;
	}
	.mainHeader .avtar_profile {
	    width: 25px !important;
	    height: 25px !important;
	}
	#menuButtonSize {
	    width: 25px !important;
	    height: 25px !important;
	}
	#dashboardBody .sideMenu .navbar button {
		height: 80px !important;
	}
	#logoContain {
		margin-left:0px !important;
	}
	#dashboardBody .sideMenu .navbar .navbar-collapse, #resultBody .resultBodySection {
		margin-top: 78px !important;
	}
	#dashboardBody {
		margin-top: 72px;
	}
	.examTimeTaken2 {
	    font-size: 14px;
	}
	.examTimeTaken .examTimeTaken1 {
		font-size: 13px;
	}
	.btn-test, .progressResult {
		font-size: 12px;
	}
	.performanceScoreTitle, .progressTitle {
		font-size: 14px;
	}
	.resultTime .resultTimeText, .examHistoryTitle {
		font-size: 16px;
	}
	.cheptersBodyTitle {
		font-size: 20px;
		padding: 15px;
	}
	#resultBody .resultBodySection.cheptersBodySection {
		margin-top: 120px !important;
	}
	.cheptersBodySection .chepRadio .labelcontainer {
		padding: 8px 16px 8px 48px;
	}
	.cheptersBodySection .chepRadio .checkmark {
		top: 9px;
	}
	.registration_card .card .card-body {
		padding: 20px 70px 35px
	}
}

@media (max-width:489px) {
	#footer {
		font-size: 12px;
	}
	.colExamText {
		padding: 0px !important;
	}
	.ExamTextOnly {
	    padding: 5px 15px 0px 0px !important;
	}
	.examTimeTaken {
	    padding-left: 10px;
	}
	.examTimeTaken .examTimeTaken1 {
	    font-size: 12px;
	    width: 80px;
	}
	.examTimeTaken2 {
		font-size: 12px;
	}
	.btn-test, .btn-done {
		width: 100% !important;
	}
	.performanceScoreTitle {
		font-size: 11px; 
	}
	.performanceScoreMarks {
		font-size: 30px;
	}
	.scoreSection .performanceScoreTitle {
		font-size: 12px !important;
	}
}

@media (max-width:413px) {
	.marquee li, .newsOnly li {
	    width: 288px !important;
	}
	#footer {
		font-size: 10px;
		padding: 15px 8px;
	}
	.examHistoryTitle {
		font-size: 15px;
		padding-bottom: 0px !important;
	}
	.examHistoryText {
	    font-size: 12px;
    	line-height: 14px;
	}
	.examHistoryContain .colExamTime, .examHistoryContain .colExamBtn {
		-ms-flex: 0 0 100%;
	    flex: 0 0 100%;
	    max-width: 100%;
	}
	.examHistoryContain .colExamBtn {
		padding: 0px 20px;
	}
	.resultTime .resultTimeText {
		font-size: 13px;
	}
	.performanceScoreMarks {
		font-size: 25px;
	}
	#performance .performanceScoreTitle {
		font-size: 9px;
		margin-right: 5px !important;
	}
	.progressTitle {
		font-size: 11px;
	}
	.progressResult {
		font-size: 9px;
	}
	.login_card .card .card-body {
		padding: 30px 15px;
	}
	.reset_password .card .card-body {
    	padding-left: 15px;
    	padding-right: 15px;
	}
	.login_card .card .card-body .card-title {
		font-size: 24px;
		line-height: 30px !important;
	}
	.login_card .card .card-body form .form-group {
	    margin-bottom: 15px;
	}
	.btn-img {
		margin-top: 0px;
	}
	.frgt_password .card .card-body .card-title {
	    margin-bottom: 30px;
	}
	.cheptersBodyTitle {
		font-size: 16px;
	}
}