@CHARSET "ISO-8859-1";

@import url('https://fonts.googleapis.com/css?family=Rubik:400,400i,700,700i|Tillana|Kanit:100|Short+Stack&display=swap');

/* general styling */

* {
	-webkit-box-sizing:border-box;
	-moz-box-sizing:border-box;
    box-sizing: border-box;
}

html {
	-ms-text-size-adjust:100%;
	-webkit-text-size-adjust:100%;
}

/* tell the browser to render HTML 5 elements as block */
article,aside,details,figcaption,figure,footer,header,hgroup,main,menu,nav,section,summary{
  display:block;
}

body{
	padding: 0;
	margin: 0;
    font: normal 14px 'Rubik', Arial, sans-serif;
	background-color: white;
	color: #000040;
	height: 100%;
}

section {
	position: relative;
	margin: 0;
	padding: 0;
	text-align:center;
}

section:after, nav:after, footer:after, .fix-clear:after {
	content: "";
	display: table;
	clear: both;
}

h1, h2, h3, h4, h5, h6 {
	font-family: 'Tillana', sans-serif;
	font-weight: normal; 
	color: inherit;
	margin: auto;
	padding-top: 20px;
	padding-bottom: 8px;
}
h1 {font-size: 32px; text-transform: uppercase; word-spacing: 4px; font-weight:bold;}
h2 {font-size: 28px;}
h3 {font-size: 24px;}
h4 {font-size: 20px;}
h5 {font-size: 18px;}
h6 {font-size: 16px;}

hr {border: 1px solid #1baab1; margin: 12px auto;}

img {margin-bottom: -5px; width: 100%;}

a {
	color: #1baab1;
	text-decoration: none;
	cursor: pointer;
}
a:hover {
	color: #32939a;
}

ul, ol{ 
	list-style-position: inside;
	padding: 0;
	margin: 0;
}
ul.no-marker {list-style-type: none;}
li ul, li ol {margin: 0 16px;}
li ul li {list-style-type: circle;}
li ol li {list-style-type: lower-alpha;}

table {
	border-collapse: collapse;
	border-radius: 5px;
	width: 100%;
}
table thead {
	background-color: #000040;
	color: white;
}
table tbody {
	background-color: white;
	color: #000040;
}
table tfoot {
	background-color: #bbddff;
	color: #000040;
}
table tr th {
	padding: 8px;
	font: normal 14px 'Tillana', sans-serif;
}
table tr td { 
	padding: 8px;
	border-bottom: 1px solid #bbddff;
}

/* form elements */
form {
    font-family: 'Rubik', Arial, sans-serif;
	padding: 0;
  	text-align: left;
}

label {
    font-weight: bold;
	padding: 10px 12px 0 0;
	margin: 2px;
	vertical-align: top;
}

input, textarea, select {
    font-family: 'Rubik', Arial, sans-serif;
	padding: 12px 12px 9px 12px;
	margin: 2px 2px 16px 2px;
	outline: 0;
	border: 1px solid #1baab1;
	border-radius: 2px;
	vertical-align: top;
}
input[type=checkbox], input[type=radio] { margin-bottom: 2px; }
input:focus, textarea:focus, select:focus {
	border: 1px solid #bbddff;
}
textarea {
	height: 100px;
}

button {
	position: relative;
	padding: 12px 16px 9px 16px;
	margin: 2px;
	outline: 0;
	color: #000040;
	text-transform: uppercase; 
	vertical-align: middle;
	background-color: #1baab1;
	border: 1px solid #1baab1;
	border-radius: 2px;
	transition-duration: 0.4s;
	-moz-transition-duration: 0.4s;
	-webkit-transition-duration: 0.4s;
}
button.no-bg {
	background-color: transparent;
}
button:hover {
	-webkit-filter: brightness(85%);
	filter: brightness(85%);
	box-shadow: 2px 2px 2px 0 rgba(0, 0, 0, 0.4), 2px 2px 5px 2px rgba(0, 0, 0, 0.3);
}
button[disabled] {
    opacity: 0.5;
    cursor: not-allowed;
}
button[disabled]:hover {
	box-shadow: none;
}
button.btnAsLnk {
	color: #1baab1;
	text-decoration: none;
	cursor: pointer;
    font: inherit;
	padding: 0;
	margin: 0;
	text-transform: none; 
	vertical-align: top;
	background-color: inherit;
	border: none;
	border-radius: 0;
	transition-duration: 0s;
	-moz-transition-duration: 0s;
	-webkit-transition-duration: 0s;
}
button.btnAsLnk:hover {
	background-color: inherit;
	border: none;
	box-shadow: none;
	color: #bbddff;
}


/* media queries for responsive layout */

@media (max-width:600px){.hide-small{display:none!important}}
@media (max-width:992px) and (min-width:601px){.hide-medium{display:none!important}}
@media (min-width:993px){.hide-large{display:none!important}}

.col,.half,.third,.twothird,.threequarter,.quarter{float:left;width:100%}
.col.s1{width:8.33333%}
.col.s2{width:16.66666%}
.col.s3{width:24.99999%}
.col.s4{width:33.33333%}
.col.s5{width:41.66666%}
.col.s6{width:49.99999%}
.col.s7{width:58.33333%}
.col.s8{width:66.66666%}
.col.s9{width:74.99999%}
.col.s10{width:83.33333%}
.col.s11{width:91.66666%}
.col.s12,.half,.third,.twothird,.threequarter,.quarter{width:99.99999%}
@media only screen and (min-width:601px){
.col.m1{width:8.33333%}
.col.m2{width:16.66666%}
.col.m3{width:24.99999%}
.col.m4,.third{width:33.33333%}
.col.m5{width:41.66666%}
.col.m6,.half,.quarter,.threequarter{width:49.99999%}
.col.m7{width:58.33333%}
.col.m8,.twothird{width:66.66666%}
.col.m9{width:74.99999%}
.col.m10{width:83.33333%}
.col.m11{width:91.66666%}
.col.m12{width:99.99999%}
}
@media only screen and (min-width:993px){
.col.l1{width:8.33333%}
.col.l2{width:16.66666%}
.col.l3,.quarter{width:24.99999%}
.col.l4,.third{width:33.33333%}
.col.l5{width:41.66666%}
.col.l6,.half{width:49.99999%}
.col.l7{width:58.33333%}
.col.l8,.twothird{width:66.66666%}
.col.l9,.threequarter{width:74.99999%}
.col.l10{width:83.33333%}
.col.l11{width:91.66666%}
.col.l12{width:99.99999%}
}

/* website specific common styles */
.left { 
  float: left;
  width: auto;
}
.right { 
  float: right; 
  width: auto;
}
.center { 
  text-align: center;
  margin: 0 auto;
}

.error-text {color: #c20e0a;}
.error-bar {background-color: #c20e0a; color: white; font-style:italic; padding: 5px 2px;}

.warn-text {color: #e1871e;}
.warn-bar {background-color: #e1871e; color: white; font-style:italic; padding: 5px 2px;}

.success-text {color: #11cc15;}
.success-bar {background-color: #11cc15; color: white; font-style:italic; padding: 5px 2px;}

.info-text {color: #c0c0c0; font-style:italic;}
.info-bar {background-color: #c0c0c0; color: white; font-style:italic; padding: 5px 2px;}

.highlight-text {color: #bbddff;}
.highlight-bar {background-color: #bbddff; color: white; padding: 5px 2px;}

.review-star {color: #efb810;}

.zoom {
	position: relative;
	
	-ms-transition: transform .2s ease-in-out;
	-webkit-transition: transform .2s ease-in-out;
	transition: transform .2s ease-in-out;
}
.zoom:hover {
    -o-transform: matrix(5, 0, 0, 5, 100, 100);
    -ms-transform: matrix(5, 0, 0, 5, 100, 100);
    -moz-transform: matrix(5, 0, 0, 5, 100, 100);
    -webkit-transform: matrix(5, 0, 0, 5, 100, 100);
	transform: matrix(5, 0, 0, 5, 100, 100);
	
	z-index: 3;
}

.scrolling-area {
	height: 300px;
	overflow: auto;
	border: 1px solid #bbddff;
}
.scrolling-area-large {
	height: 1500px;
	overflow: auto;
	border: 1px solid #bbddff;
}

.form-div {
	padding: 20px;
	border: 1px solid #1baab1;
	border-radius: 2px;
	background-color: white;
	text-align: left;
}

.search-container input[type=text] {
	margin-right: 0;
	border-radius: 4px 0 0 4px;
}
.search-container button {
	margin-left: 0;
	border-radius: 0 4px 4px 0;
}

.profileImageContainer {
	padding: 20px 30px;
}

.previewContainer {
	width: 150px;
	height: 150px;
	border: 1px solid #000040;
}

.thumbnail {
	width: 40px;
	height: 40px;
	border: 1px solid #000040;
	border-radius: 50%;
}

/* For Navigation Bar */
nav {
	position:relative;
	top:0;
	left:0;
	width: 100%;
	color: white;
	background-color: #000040;
	border-bottom: 2px solid #1baab1;
	padding: 4px 8px;
}
nav a {
	display: inline-block;
	color: inherit;
	padding: 4px 16px;
}
nav a:hover {
	color: #1baab1;
}
nav button {
	padding: 4px 16px;
	color: inherit;
	border-radius: 10px;
	text-transform: uppercase;
	background-color: #ff7d26;
	border-color: #ff7d26;
}
nav .logoName, nav .contactBar, nav .menulist {
	padding: 8px 0;
    position: relative;
}
nav .logoName img {
	width: 50px;
	vertical-align: baseline;
}
nav .logoName a {
	display: inline-block;
	font: italic normal bold 22px 'Short Stack', sans-serif;
	text-shadow: 1px 1px 2px rgba(40,30,20,0.7);
	margin: 0;
	padding: 0;
}
nav .logoName .tagline {
	font: italic normal normal 14px 'Tillana', sans-serif;
	color: white;
}
nav .contactBar a {
	font-size: 13px;
	color: #bbddff;
}
nav #hiddenMenu a {
	color: inherit;
	margin: 0;
	display: block;
}
nav #hiddenMenu a:hover {
	color: #1baab1;
}
nav #hiddenMenu {
	height: 0%;
	width: 100%;
    position: absolute;
    z-index: 1;
    top: 100%;
    right: 0;
    background-color: #000040;
    overflow-x: hidden;
    transition: 0.5s;
}
nav #hiddenMenu div {
	padding: 12px;
}
nav #hiddenMenu button {
	background: transparent;
	border: none;
}

/* footer styles */
footer {
	background-size: cover;
	width: 100%;
	padding: 20px;
    background-color: #000040;
    color: #1baab1;
	border-top: 2px solid #1baab1;
}
footer a {
	color: white;
}
footer button {
	padding: 4px 16px;
	color: white;
	border-radius: 10px;
	text-transform: uppercase;
	background-color: #ff7d26;
	border-color: #ff7d26;
}
.footer-section {
	padding-bottom: 20px;
	text-align: left;
}
.footer-section > div {
	padding: 8px 16px;
}
.footer-section .centersArea li {
	list-style-type: none;
	padding: 8px 0;
	color: white;
}
.footer-section .map {
	border: 1px solid #1baab1;
	width: 100%;
	height: 250px;
}
.footer-section .contactArea {
	border-left: 1px solid #1baab1;
	text-align: right;
}
.footer-notice {
	font-size: 12px;
	color: #bbddff;
	border-top: 1px solid #1baab1;
	padding: 4px;
	padding-top: 20px;
}

.social-links {
    font-size: 20px;
}
.fa-facebook {
	background-color: #3b5998;
	color: white;
	padding: 1px 4px 1px 3px;
	margin: 4px 4px 4px 0;
	border-radius: 3px;
}
.social-links:hover .fa-facebook {
	background-color: #000040;
}

.whatapp-share-button {
	position: relative;
	display:inline-block;
	vertical-align: top;
	width:55px;
	height:20px;
	padding: 0;
	margin: 0;
}
.whatapp-share-button a {
	position: absolute;
	top: 0;
	left: 0;
	color: white;
	background-color: #25d366;
	border-radius: 3px;
	font-size: 11px;
	font-weight: bold;
	padding: 3px 3px 3px 20px;
	margin: 0;
}
.whatapp-share-button i {
    font-size: 13px;
    position: absolute;
    left: 4px;
    top: 3px;
    
 }
 .whatapp-share-button a:hover {
	background-color: #1fad54;
	color: white;
}
	

/* styles for loader while page loads */
#preLoaderDiv {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: white;
	text-align: center;
	z-index: 99;
	opacity: 1;

	-o-transition: opacity 1s, z-index 0 1s;
	-ms-transition: opacity 1s, z-index 0 1s;
	-moz-transition: opacity 1s, z-index 0 1s;
	-webkit-transition: opacity 1s, z-index 0 1s;
	transition: opacity 1s, z-index 0 1s;
}
#preLoaderDiv .hidden {
	z-index: -99;
	opacity: 0;
}
#preLoaderDiv p {
	position: absolute;
	top: 50%;
	left: 50%;
	color: #000040;
	font-size: 20px;

    -o-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}
#preLoaderDiv > div {
	position: absolute;
	top: 40%;
	left: 50%;
	width: 51px;
	height: 51px;
	border-radius: 50%;
	background: #1baab1;
	animation: lds-circle 2.4s cubic-bezier(0, 0.2, 0.8, 1) infinite;

    -o-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}
@keyframes lds-circle {
  0%, 100% {
    animation-timing-function: cubic-bezier(0.5, 0, 1, 0.5);
  }
  0% {
    transform: rotateY(0deg);
  }
  50% {
    transform: rotateY(1800deg);
    animation-timing-function: cubic-bezier(0, 0.5, 0.5, 1);
  }
  100% {
    transform: rotateY(3600deg);
  }
}

/* website specific styles */
#topBtn {
    display: none;
    position: fixed;
    bottom: 40px;
    right: 8px;
    z-index: 99;
    width: 30px;
    height: 30px;
    padding: 0;
    text-align: center;
    vertical-align: middle;
    background-color: #1baab1;
    border:none;
}

/* ******************** For The Home Page Only *********************** */
.homepage .banner {
	background: -webkit-linear-gradient( rgba(40,30,20,0.7) 100%, rgba(40,30,20,0.7) 100%), url("../images/home-bg.jpg");
	background: linear-gradient( rgba(40,30,20,0.7) 100%, rgba(40,30,20,0.7) 100%), url("../images/home-bg.jpg");
	background-repeat: no-repeat;
	background-size: cover;
	padding: 10px 10px;
	color: white;
}	

.homepage .banner .notice-area {
	background: rgba(0,0,0,0.9);
	color: #ff9900;
}
.homepage .banner .notice-area a {
	color: #00ff00;
	text-decoration: underline;
}

.homepage .banner h1 {
	margin: 12px auto 12px auto;
	font-family: 'Short Stack', sans-serif;
	text-shadow: 1px 1px 2px rgba(40,30,20,0.7);
}
.homepage .banner h2 {
	font-family: 'Tillana', sans-serif;
	margin: 12px auto;
	text-shadow: 1px 1px 2px rgba(40,30,20,0.7);
}
.homepage .banner h4 {
	margin: 12px auto;
	font-family: 'Kanit', sans-serif;
	text-shadow: 1px 1px 2px rgba(40,30,20,0.7);
}
.homepage .banner hr {
	width: 30%;
}
.homepage .heading .fas, .homepage .heading .far {
	font-size: 13px;
	padding: 8px;
	color: #1baab1;
}
.homepage .search-container {
	display: inline-block;
	margin: 12px auto;
}

.homepage .about, .homepage .action {
	padding: 50px;
}
.homepage .about div {
	text-align: left;
}
.homepage .about hr {
	width: 10%;
}

.homepage .courses {
	padding: 10px;
}
.homepage .courses>ul {
	background: rgba(255,255,255,0.9);
	border: 1px solid #1baab1;
	border-radius: 5px;
	list-style: none;
	text-align: left;
	padding: 10px 40px;
}
.homepage .courses li {
	font-size: 14px;
	color: #808080;
}
.homepage .courses li h6 {
	display: inline-block;
	font-weight: bold;
/*	color: #1baab1;*/
	color: #000040;
}

.homepage .facilities {
	padding: 50px 0;
}
.homepage .facilities div {
	text-align: center;
}
.homepage .facilities .block1, .homepage .facilities .block2, .homepage .facilities .block3,
.homepage .facilities .block4 {position:relative; border-bottom: 2px solid #1baab1; }

.homepage .facilities img {width: 100%;}
.homepage .facilities hr {width: 30%;}
.homepage .facilities h6 {
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	padding: 8px;
	text-transform: uppercase;
	color: white;
	opacity: 1;
	transition: .5s ease;
}
.homepage .facilities .block1 h6 {background-color: #c20e0a;}
.homepage .facilities .block2 h6 {background-color: #11cc15;}
.homepage .facilities .block3 h6 {background-color: #000040;}
.homepage .facilities .block4 h6 {background-color: #e1871e;}

.homepage .facilities .overlay {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(40,30,20,0.7);
	color: white;
	opacity: 0;
	transition: .5s ease;
}
.homepage .facilities .block1:hover h6, .homepage .facilities .block2:hover h6,
.homepage .facilities .block3:hover h6, .homepage .facilities .block4:hover h6 {opacity: 0;}

.homepage .facilities .block1:hover .overlay, .homepage .facilities .block2:hover .overlay,
.homepage .facilities .block3:hover .overlay, .homepage .facilities .block4:hover .overlay {opacity: 1;}

.homepage .action, .listingpage .action {
	background: -webkit-linear-gradient(bottom, rgba(255,255,255,1), rgba(255,255,255,0.5)), url("../images/bottom.jpg");
	background: linear-gradient(to bottom, rgba(255,255,255,1), rgba(255,255,255,0.5)), url("../images/bottom.jpg");
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center;
}
.homepage .action button, .listingpage .action button {
	color: white;
	background-color: #ff7d26;
	border-color: #ff7d26;
}


/* ******************** for Do Not Exist Page Only ********************* */
.doNotExist .msgArea {
	padding: 50px;
}

.doNotExist .msgArea .far, .doNotExist .msgArea .fas {
	color: #bbddff;
}

/* ******************* For all Pages showing listings of courses, resources, tests **************** */
.listingpage .courses, .listingpage .resources {
	padding: 10px;
}
.listingpage .courses hr, .listingpage .resources hr {
	width: 10%;
}
.listingpage .resources>ul {
	text-align: left;
	padding: 10px 40px;
}
.listingpage .resources ul {
	text-align: left;
}
.listingpage .resources li {
	font-size: 14px;
	color: #808080;
}
.listingpage .resources li h6 {
	display: inline-block;
	font-weight: bold;
}

.listingpage .courses ul {
	text-align: left;
	padding: 10px 40px;
}
.listingpage .courses li {
	font-size: 14px;
	padding: 20px;
}



/* ******************** For Reach Us Page Only ******************** */
.reachUsPage .banner {
	position: relative;
	text-align: center;
}
.reachUsPage .banner .banner-bg {
	min-width: 100%;
	height: 400px;
	object-fit: cover;
	opacity: 0.5;
	filter: blur(2px);
	-webkit-filter: blur(2px);
}
.reachUsPage .banner .banner-fg {
	position: absolute;
	top: 0;
	left: 0;
	height: 400px;
	width: 100%;
	overflow: hidden;
	text-align: center;
}
.reachUsPage .banner .banner-fg img {
	margin: 20px;
	max-width: 60%;
	width: auto;
	max-height: 280px;
	vertical-align: middle;
}
.reachUsPage .banner .banner-fg p {
	margin: 20px;
	font: bold 40px 'Short Stack', sans-serif;
	display: inline-block;
}

.reachUsPage .aboutUs, .reachUsPage .enquireArea, .reachUsPage .contactArea, .reachUsPage .action {
	padding: 30px 50px;
}
.reachUsPage .aboutUs, .reachUsPage .contactArea {
	text-align: left;
}

.reachUsPage .enquire-form textarea, .reachUsPage .enquire-form input {
	max-width: 100%;
	width: 500px;
}
.reachUsPage .enquire-form input[type=checkbox] {
	width: auto;
	margin-right: 12px;
}

.reachUsPage .action {
	background: -webkit-linear-gradient(bottom, rgba(255,255,255,1), rgba(255,255,255,0.5)), url("../images/bottom.jpg");
	background: linear-gradient(to bottom, rgba(255,255,255,1), rgba(255,255,255,0.5)), url("../images/bottom.jpg");
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center;
}

/* ******************** For Review Page Only ********************* */
.reviewPage .reviewList {
	padding: 50px;
	text-align: center;
}
.reviewPage .reviewList div {
	background-color: #e9f3f3;
	padding: 24px;
	text-align: left;
	box-shadow: 0 1px 1px 0 rgba(100, 100, 150, 0.4), -2px 2px 5px 2px rgba(100, 100, 150, 0.3);
}
.reviewPage .reviewList img {
	width: 60px;
	height: 60px;
	border: 1px solid #000040;
	box-shadow: -2px 2px 2px 0 rgba(0, 0, 0, 0.4), -2px 2px 5px 2px rgba(0, 0, 0, 0.3);
}
.reviewPage .reviewList .review-text {
	font-size: 16px;
}
.reviewPage .reviewList .review-text i {
	font-size: 24px;
	color: #1baab1;
}
.reviewPage .reviewList .reviewer {
	font-style: italic;
}

/* ******************** For Gallery Page Only ********************* */
.galleryPage .picGallery {
	padding: 50px;
	text-align: center;
}
.galleryPage .picGallery div {
	padding: 12px;
}
.galleryPage .picGallery img {
	width: 100%;
	box-shadow: -2px 2px 2px 0 rgba(0, 0, 0, 0.4), -2px 2px 5px 2px rgba(0, 0, 0, 0.3);
}

/* ******************** For Login Page and Change Password Pages Only ********************** */
.loginPage {
	background-color: #000040;
}
.loginPage .logoName {
	padding: 20px;
}
.loginPage .logoName img {
	width: 50px;
	vertical-align: baseline;
}
.loginPage .logoName a {
	display: inline-block;
	color: white;
	font: italic normal bold 22px 'Short Stack', sans-serif;
	text-shadow: 1px 1px 2px rgba(40,30,20,0.7);
	margin: 0;
	padding: 0;
	text-align: left;
}
.loginPage .logoName a:hover {
	color: #1baab1;
}
.loginPage .logoName .tagline {
	font: italic normal normal 14px 'Tillana', sans-serif;
	color: white;
}

/* login form */
form#loginForm {
	width: 350px;
 	margin: 8px auto;
  	padding: 30px;
	border: 5px solid #ff7d26;
	border-radius: 10px;
	background-color: white;
}
form#loginForm input {
	width: 100%;
}

/* ******************** For Admin Pages Only *********************** */
/* all admin forms */
form.admin-form input, form.admin-form textarea, form.admin-form select {
	width: 100%;
}

form.admin-form input[type=checkbox], form.admin-form input[type=radio] {
	width: auto;
	margin-right: 12px;
}
 
.objList {
	padding: 30px;
	text-align: left;
}

/* ************************* For Policy Page Only ************************** */

.policySec {
	padding: 30px 50px;
	text-align: left;
}

/* ********************** rich text editor nicEdit's styles ******************* */
.richTextContentPanel {
	border: 1px solid #1baab1;
	background-color: white;
	padding: 12px 12px 9px 12px;
	outline: 0;
	border-radius: 2px;
	vertical-align: middle;
	height: 200px;
	width: 100%;
	overflow: auto;
}
.richTextEditorPanel {
	width: 100%;
}

.nicEdit-panel {
	border: 1px solid #1baab1;
	background-color: #1baab1;
	border-radius: 2px;
	box-shadow: -2px 2px 2px 0 rgba(0, 0, 0, 0.4), -2px 2px 5px 2px rgba(0, 0, 0, 0.3);
	width: 100%;
}
.nicEdit-button {
	background-color: white !important;
}

/* **************************** For test engine pages *********************** */
.test-engine-page section {
	padding: 10px;
	text-align: left;
}

.test-engine-page .main-area {
	padding: 10px;
	border: 1px solid #000040;
	border-radius: 5px;
}

.test-engine-page .controls {
	padding: 8px 16px;
}

.test-engine-page .quesiton-answers {
	padding: 8px 16px;
}

.test-engine-page .button-groups {
	padding: 0 0 16px 0;
}

.test-engine-page .quesNumBtn {
    font-size: 12px;
	padding: 6px 8px 4px 8px;
	background-color: white;
	border: 1px solid #000040;
}
.test-engine-page .current-ques {
	background-color: #000040;
	color: white;
}

.test-engine-page .graph {
	border: 1px solid #bbddff;
	padding: 8px;
	border-radius: 2px;
}
.test-engine-page .graph-part {
	width: 100%;
	padding: 1px;
}
.test-engine-page .graph-part .graph-legends {
	float: left;
	width: 150px;
	height: 20px;
	text-align: right;
	padding-right: 4px;
}
.test-engine-page .graph-part .graph-bars {
	float: left;
	width: calc(100% - 150px);
	height: 20px;
}
.test-engine-page .graph-part .graph-legends-small {
	float: left;
	width: 50px;
	height: 16px;
	text-align: right;
	padding-right: 4px;
	font-size: 13px;
}
.test-engine-page .graph-part .graph-bars-small {
	float: left;
	width: calc(100% - 50px);
	height: 16px;
}
.test-engine-page .graph-part .bar {
	height: 80%;
	margin: 2px 0;
	padding: 0;
	background-color: #000040;
}

.test-engine-page .default { background-color: #000040 !important; }
.test-engine-page .default-text { color: #000040; }
.test-engine-page .correct { background-color: green !important; }
.test-engine-page .correct-text { color: green; }
.test-engine-page .incorrect { background-color: red !important; }
.test-engine-page .incorrect-text { color: red; }
.test-engine-page .manualeval { background-color: orange !important; }
.test-engine-page .manualeval-text { color: orange; }
.test-engine-page .answered { background-color: green !important; }
.test-engine-page .answered-text { color: green; }
.test-engine-page .unanswered { background-color: red !important; }
.test-engine-page .unanswered-text { color: red; }

.test-engine-page .review {	
	position: absolute;
	left: 16px;
	top: -4px;
	color: purple;
}

.test-engine-page .hidden-sol-div {
	position: fixed;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	display: none;
	background-color: rgba(80,80,80,0.8);
	z-index: 99;
}
.test-engine-page .hidden-sol-div p {
	position: absolute;
	left: 10%;
	top: 10%;
	width: 80%;
	min-height: 200px;
	border: 1px solid #000040;
	padding: 40px;
	background-color: white;
	opacity: 1;
}
.test-engine-page .hidden-sol-div button {
	position: absolute;
	right: 10px;
	top: 10px;
	color: white;
	opacity: 1;
}
