/* 1. Remove default margin and padding */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* 2. Set font family and line height */
body {
  line-height: 1;
  font-family: "Poppins", sans-serif;
}

/* 3. Reset heading elements */
h1, h2, h3, h4, h5, h6 {
  font-size: 100%;
  font-weight: inherit;
}

/* 4. Remove list styles */
ul, ol {
  list-style: none;
}

/* 5. Remove text decoration from links */
a {
  text-decoration: none;
}

/* 6. Reset table layout */
table {
  border-collapse: collapse;
}

/* 7. Ensure images are responsive */
img {
  max-width: 100%;
  height: auto;
}

/* 8. Remove quotes around quotes and citations */
q, blockquote {
  quotes: none;
}

q:before, q:after, blockquote:before, blockquote:after {
  content: '';
  content: none;
}

input:focus{
    box-shadow: none !important;
}

/** Login 5 start **/
.login-cnk .form-section {
    min-height: 100vh;
    position: relative;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 30px 15px;
    background: #FFFFFF;
}

.login-cnk h1, h2, h3, h4, h5, h6, .h1, .h2, .h3, .h4, .h5, .h6 {
    font-family: "Poppins", sans-serif;
    color: #040404;
}

/* .login-cnk a {
    text-decoration: none;
    color: #535353;
} */

.login-cnk .form-section p p{
    color: #535353;
}

.login-cnk .form-inner {
    max-width: 500px;
    width: 100%;
    /* padding: 0 50px; */
}

.login-cnk .bg-img {
    background: url('../images/login-bg.avif') top left repeat;
    background-size: cover;
    z-index: 999;
    min-height: 100vh;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 30px;
}

.login-cnk .bg-img:before {
    position: absolute;
    content: '';
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgb(36 10 99 / 47%);
}

.login-cnk .form-section .extra-login {
    margin-bottom: 25px;
    position: relative;
}

.login-cnk .form-section .extra-login::before {
    position: absolute;
    left: 0;
    top: 10px;
    width: 100%;
    height: 1px;
    background: #d8dcdc;
    content: "";
}

.login-cnk .form-section .extra-login > span {
    padding: 1px 20px;
    position: relative;
    font-size: 15px;
    color: #535353;
    background: #fff2f2;
}

.login-cnk .form-section .form-check-input {
    width: 20px;
    height: 20px;
    margin-top: 0px;
    position: absolute;
    border-radius: 32px;
    border: none;
    background-color: #dfdada;
    margin-left: -22px;
}

.login-cnk .form-check-input:focus {
    border-color: snow;
    outline: 0;
    box-shadow: none;
}

.login-cnk .form-check-input:checked {
    background-color: #f5c025!important;
}

.login-cnk .form-section p {
    margin-bottom: 0;
    font-size: 14px;
}

.login-cnk .form-section ul {
    list-style: none;
    padding: 0;
    margin: 0 0 20px;
}

.login-cnk .form-section .social-list li {
    display: inline-block;
    margin-bottom: 5px;
}

.login-cnk .form-section .thembo {
    margin-left: 4px;
    color: #000000;
}

.login-cnk .form-section h3 {
    margin: 0 0 30px;
    font-size: 20px;
    font-weight: 400;
}

.login-cnk .form-section .form-group {
    margin-bottom: 14px;
}

.login-cnk .form-section .form-control {
    padding: 9px 20px 9px;
    font-size: 14px;
    outline: none;
    height: 49px;
    color: #535353;
    border-radius: 40px;
    font-weight: 400;
    border: 1px solid transparent;
    background: #e7e7e7;
}

.login-cnk .form-section .form-check {
    margin-bottom: 0;
}

.login-cnk .form-section .form-check-label {
    padding-left: 5px;
    font-size: 14px;
    color: #535353;
    padding-top: 2px;
}

.password-show{
    position: absolute;
    right: 20px;
    top: 19px;
    color: #000;
    font-size: 15px;
    opacity: 0.5;
    cursor: pointer;
}

#loginForm .form-group label{
    font-size: 14px;
    margin-left: 10px;
    margin-bottom: 4px;
}

.login-cnk .form-section a.forgot-password {
    font-size: 14px;
}

.login-cnk .form-section a.forgot-password:hover{
    color: #535353;
}

.login-cnk .logo img {
    margin-bottom: 15px;
}

.login-cnk .btn-theme {
    position: relative;
    display: inline-block;
    border: none;
    outline: none !important;
    color: #ffffff;
    text-transform: capitalize;
    transition: all 0.3s linear;
    z-index: 1;
    overflow: hidden;
    cursor: pointer;
    font-size: 17px;
    font-weight: 400;
    font-family: "Poppins", sans-serif;
    border-radius: 3px;
    width: 100%;
}

.login-cnk .btn-theme:after {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    content: "";
    border-radius: 3px;
    transform: perspective(200px) scaleX(0.1) rotateX(90deg) translateZ(-10px);
    transform-origin: bottom center;
    transition: transform 0.4s linear, transform 0.4s linear;
    z-index: -1;
}

.login-cnk .btn-theme:hover:after {
    transform: perspective(200px) scaleX(1.05) rotateX(0deg) translateZ(0);
    transition: transform 0.4s linear, transform 0.4s linear;
}

.login-cnk .btn-lg{
    padding: 0 50px;
    line-height: 44px;
}

.login-cnk .btn{
    box-shadow: none!important;
}

.login-cnk .btn-primary{
    background: #18119a;
    border-radius: 50px;
}

.login-cnk .btn-primary:after {
    background: #18119a;
}

.login-cnk .lines {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100%;
    z-index: -1;
}

.login-cnk .line {
    position: absolute;
    width: 5px;
    height: 100%;
    top: 0;
    left: 50%;
    background: rgba(255, 255, 255, 0.1);
    overflow: hidden;
}

.login-cnk .line::after {
    content: '';
    display: block;
    position: absolute;
    height: 15vh;
    width: 100%;
    top: -50%;
    left: 0;
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 0%, #f5c025 75%, #f5c025 100%);
    animation: drop 7s 0s infinite;
    animation-fill-mode: forwards;
    animation-timing-function: cubic-bezier(0.4, 0.26, 0, 0.97);
    z-index: -888;
}

.login-cnk .line:nth-child(1) {
    margin-left: -40%;
}

.login-cnk .line:nth-child(1)::after {
    animation-delay: 1s;
}

.login-cnk .line:nth-child(3) {
    margin-left: 40%;
}

.login-cnk .line:nth-child(3)::after {
    animation-delay: 2s;
}

.login-cnk .line:nth-child(4) {
    margin-left: -20%;
}

.login-cnk .line:nth-child(4)::after {
    animation-delay: 3s;
}

.login-cnk .line:nth-child(5) {
    margin-left: 20%;
}

.login-cnk .line:nth-child(5)::after {
    animation-delay: 4s;
}

@keyframes drop {
    0% {top: -50%; }
    100% {top: 110%; }
}

.login-cnk .info{
    max-width: 650px;
    padding: 0 50px;
}

.login-cnk .info p {
    color: #fff;
    opacity: 0.8;
    font-size: 15px;
    line-height: 25px;
}

.login-cnk .social-list li a {
    font-size: 13px;
    font-weight: 600;
    width: 130px;
    margin: 2px 0 3px 0;
    height: 40px;
    line-height: 40px;
    border-radius: 3px;
    display: inline-block;
    text-align: center;
    color: #fff;
}

.login-cnk .social-list li a i{
    height: 40px;
    width: 40px;
    line-height: 40px;
    float: left;
    border-radius: 3px;
}

.login-cnk .social-list li a span{
    margin-right: 7px;
}

.login-cnk .name_wrap h1 {
    position: relative;
    font-size: 55px;
    font-family: "Poppins", sans-serif;
    text-transform: uppercase;
    font-weight: 700;
    color: #fff;
    line-height: 1.2;
    margin-bottom: 20px;
    display: inline-block;
    overflow: hidden;
    text-align: center;
}

.login-cnk h1 span {
    color: transparent;
    -webkit-text-stroke: 1px #fff;
    padding-left: 2px;
}

/** Social media **/
.login-cnk .facebook-bg {
    background: #4867aa;
}

.login-cnk .twitter-bg {
    background: #33CCFF;
}

.login-cnk .google-bg {
    background: #db4437;
}

.login-cnk .google-i {
    background: #c3291c;
}

.login-cnk .facebook-i {
    background: #3b589e;
}

.login-cnk .twitter-i {
    background: #0cace0;
}

@media (max-width: 1200px){
    .login-cnk .name_wrap h1 {
        font-size: 40px;
    }
}

@media (max-width: 992px){
    .login-cnk .bg-img {
        display: none;
    }

    .login-cnk .social-list li a {
        width: 120px;
    }
}
/** Login 5 end **/

.custom-navbar{
    background-color: #1a2645;
}

/* .navbar-brand img{
    height: 100%;
    border-right: 1px solid #cccccc;
    padding-right: 8px;
    margin-right: 10px;
    width: 198px;
} */

.custom-navbar .dropdown-toggle{
    color: #fff;
}

h4.site-heading{
    color: #fff;
    font-size: 18px;
    font-weight: 500;
}

.tab-scroller{
    position: relative;
    max-width: 100%;
    overflow: hidden;
 }
 .tab-scroller-arrow{
   position: absolute;
   top: 0;
   bottom: 0;
   width: 25px;
   cursor: pointer;
   z-index: 1;
   display: flex;
   justify-content: center;
   align-items: center;
   background-color: #ffffff;
   border: 1px solid #222222;
 }
 .tab-scroller .right-arrow{
    right: 0;
 }
 .tab-scroller .left-arrow{
    left: 0;
 }
 .tab-scroller .left-arrow.d-none~.nav{
    padding-left: 0;
 }
 .tab-scroller .nav{
    position: relative;
    padding-left: 35px;
    flex-wrap: nowrap;
 }

 @media (max-width: 992px) {
    .navbar-expand-lg .navbar-collapse {
        display: flex !important;
        flex-basis: auto;
    }
    .custom-col{
        display: none;
    }
    .radio-buttons .bordered-column .form-check{
        align-items: self-start;
        justify-content: left;
        text-align: left;
        padding-left: 0px;
        margin-bottom: 0px;
        min-height: 1rem;
    }

    .radio-buttons .bordered-column:nth-child(1){
        background-color: #ffdfdf;
        border-left: 2px solid red;
        margin-bottom: 2px;
        border-right: none;
    }
    .radio-buttons .bordered-column:nth-child(2){
        background-color: #edb8b86e;
        border-left: 2px solid #e49292;
        margin-bottom: 2px;
        border-right: none;
    }
    .radio-buttons .bordered-column:nth-child(3){
        background-color: #fbe5b4;
        border-left: 2px solid #e3ab2e;
        margin-bottom: 2px;
        border-right: none;
    }
    .radio-buttons .bordered-column:nth-child(4){
        background-color: #d6efc9;
        border-left: 2px solid #90dd68;
        margin-bottom: 2px;
        border-right: none;
    }

    .radio-buttons .bordered-column:nth-child(5){
        background-color: #cbf3bf;
        border-left: 2px solid #49c524;
        margin-bottom: 2px;
        border-right: none;
    }

    .radio-buttons .bordered-column .form-check .form-check-input{
        margin-top: 1px;
        margin-right: 8px;
    }
 }

 .main-content{
    background-color: #f1f1f1;
    padding: 40px 0;
 }

 .custom-tab-content{
    background-color: #ffffff;
    border-radius: 10px;
    padding: 22px;
 }

 .table-container{
    border: 1px solid #e7e7e7;
    border-radius: 10px;
    overflow: hidden;
 }

 .table-container table tr td:first-child, .table-container table tr th:first-child{
    border-left: none;
 }

 .table-container table tr td:last-child,  .table-container table tr th:last-child{
    border-right: none;
 }

 .table-container table tbody tr:last-child{
    border-bottom: none;
 }

 .table-container table thead tr{
    border-top: none;
 }

 .table-heading{
    font-weight: 500;
    font-size: 13px;
    line-height: 20px;
    overflow: hidden;
    margin-bottom: 0px;
    text-align: center;
 }

 .radio-buttons .form-check label.form-check-label{
    font-weight: 500;
    font-size: 13px;
    line-height: 20px;
 }

 h4.multi-ques{
    font-size: 14px;
    font-weight: 400;
    line-height: 22px;
    margin-bottom: 0px;
 }

 h4.q-heading{
    margin-bottom: 0px;
    font-size: 14px;
 }

 .radio-buttons .bordered-column {
    padding: 10px;
 }

.radio-buttons .bordered-column:not(:last-child) {
    border-right: 1px solid #d9d9d9; /* Adds border to the columns */
}
.radio-buttons .bordered-column:first-child {
    border-left: 1px solid #d9d9d9;
}

@media (min-width: 992px) {
.radio-buttons .bordered-column .form-check{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding-left: 0px;
}
.radio-buttons{
    display: flex;
}
.custom-col{
    display: flex;
}
}

.radio-buttons .bordered-column .form-check .form-check-input{
    margin-left: 0px;
}

.instructions-container{
    background-color: #ffffff;
    padding: 30px 40px;
    border-radius: 20px;
}


ul.instructions-list>li:before {
    display: inline-block;

    font-family: 'Font Awesome 6 Free';
    content: "\f058";
    margin-right: 8px;
    margin-left: -1.7em;
}

ul.instructions-list>li{
    font-size: 13px;
    line-height: 20px;
    margin-bottom: 5px;
}

.instructions-container small{
    font-weight: 400;
    font-size: 13px;
}

.instructions-container h4{
    font-size: 20px;
    font-weight: 600;
    color: #f9af1e;
    margin-bottom: 2px;
}

.instruction-section h5{
    font-size: 15px;
    font-weight: 600;
}

.acknowledgment{
    background-color: #f1f1f1;
    padding: 10px;
    border-radius: 10px;
}

.checkbox-container {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 16px;
    color: #333;
    margin-top: 8px;
}


.acknowledgment .form-check-label{
    font-size: 12px;
    line-height: 18px;
}

.acknowledgment input.form-check-input{
    border-width: 2px;
}

.btn-cnk{
    background-color: #f9af1e;
    font-size: 14px;
    font-weight: 600;
}

.custom-nav-pill .nav-link.active, .custom-nav-pill .show>.nav-link{
    background-color: #f9af1e;
    color: #000000;
}

.custom-nav-pill{
    margin-bottom: 16px;
}

.custom-nav-pill .nav-link{
    color: #000000;
    line-height: 20px;
}

.custom-nav-pill .nav-link small{
    font-size: 12px;
    display: block;
}

.footer-inner{
    display: flex;
    justify-content: space-between;
    position: absolute;
    bottom: 15px;
    text-align: center;
    left: 50%;
    transform: translate(-50%, 0);
    width: 100%;
    padding: 0 15px;
}









/******************************Instruction page*********************************/
@font-face {
    font-family: 'Open Sans';
    src: url('../fonts/localfonts/OpenSans.eot');
    src: url('../fonts/localfonts/OpenSans.eot?#iefix') format('embedded-opentype'),
        url('../fonts/localfonts/OpenSans.woff2') format('woff2'),
        url('../fonts/localfonts/OpenSans.woff') format('woff'),
        url('../fonts/localfonts/OpenSans.ttf') format('truetype'),
        url('../fonts/localfonts/OpenSans.svg#OpenSans') format('svg');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'Open Sans';
    src: url('../fonts/localfonts/OpenSans-Italic.eot');
    src: url('../fonts/localfonts/OpenSans-Italic.eot?#iefix') format('embedded-opentype'),
        url('../fonts/localfonts/OpenSans-Italic.woff2') format('woff2'),
        url('../fonts/localfonts/OpenSans-Italic.woff') format('woff'),
        url('../fonts/localfonts/OpenSans-Italic.ttf') format('truetype'),
        url('../fonts/localfonts/OpenSans-Italic.svg#OpenSans-Italic') format('svg');
    font-weight: normal;
    font-style: italic;
}

@font-face {
    font-family: 'Open Sans';
    src: url('../fonts/localfonts/OpenSans-Light.eot');
    src: url('../fonts/localfonts/OpenSans-Light.eot?#iefix') format('embedded-opentype'),
        url('../fonts/localfonts/OpenSans-Light.woff2') format('woff2'),
        url('../fonts/localfonts/OpenSans-Light.woff') format('woff'),
        url('../fonts/localfonts/OpenSans-Light.ttf') format('truetype'),
        url('../fonts/localfonts/OpenSans-Light.svg#OpenSans-Light') format('svg');
    font-weight: 300;
    font-style: normal;
}

@font-face {
    font-family: 'Open Sans';
    src: url('../fonts/localfonts/OpenSans-Semibold.eot');
    src: url('../fonts/localfonts/OpenSans-Semibold.eot?#iefix') format('embedded-opentype'),
        url('../fonts/localfonts/OpenSans-Semibold.woff2') format('woff2'),
        url('../fonts/localfonts/OpenSans-Semibold.woff') format('woff'),
        url('../fonts/localfonts/OpenSans-Semibold.ttf') format('truetype'),
        url('../fonts/localfonts/OpenSans-Semibold.svg#OpenSans-Semibold') format('svg');
    font-weight: 600;
    font-style: normal;
}

@font-face {
    font-family: 'Open Sans';
    src: url('../fonts/localfonts/OpenSans-Bold.eot');
    src: url('../fonts/localfonts/OpenSans-Bold.eot?#iefix') format('embedded-opentype'),
        url('../fonts/localfonts/OpenSans-Bold.woff2') format('woff2'),
        url('../fonts/localfonts/OpenSans-Bold.woff') format('woff'),
        url('../fonts/localfonts/OpenSans-Bold.ttf') format('truetype'),
        url('../fonts/localfonts/OpenSans-Bold.svg#OpenSans-Bold') format('svg');
    font-weight: bold;
    font-style: normal;
}




html,
body {
  height: 100%;
  width: 100%;
}
body {
  font-family: 'Open Sans';
}

#page-top{
	/* margin-top: 100px; */
	background:#f1f1f1;
}

hr {
  border-color: #F05F40;
  border-width: 3px;
  max-width: 50px;
}
hr.light {
  border-color: white;
}
a {
  -webkit-transition: all 0.35s;
  -moz-transition: all 0.35s;
  transition: all 0.35s;
  color: #F05F40;
}
a:hover,
a:focus {
  color: #eb3812;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: 'Open Sans', 'Helvetica Neue', Arial, sans-serif;
}
p {
  font-size: 16px;
  line-height: 1.5;
  font-family: 'Open Sans';
}
.text-faded {
  color: rgba(255, 255, 255, 0.7);
}
.no-padding {
  padding: 0 !important;
}

/* login screen */

header {
  position: relative;
  width: 100%;
  min-height: auto;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  background-size: cover;
  -o-background-size: cover;
  background-position: center;
  background-image: url('../images/header.jpg');
  color: white;
}
header .header-content .header-content-inner hr {
  margin: 30px auto;
}

@media (min-width: 768px) {
  header {
    min-height: 100%;
  }
  header .header-content {
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    padding: 0 32px;
  }
  header .header-content .header-content-inner {
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
  }  
}


.login-page-instuctions{
  background: #e9e9e9;
  padding: 24px;
  color: #333333;
}

.login-form-main{
  padding: 24px 30px;
  text-align: center;
}


.row-eq-height {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}

.login-screen>.row>.col-md-4{
  padding-left: 0px;
  padding-right: 0px;
  background: #ffffff;
}
.login-screen>.row>.col-md-8{
  background: #ffffff;
      padding-right: 0px;
    padding-left: 0px;
}

.login-page-instuctions>h4{
  margin: 0px;
  font-size: 16px;
  text-transform: uppercase;
  font-weight: bold;
  text-decoration: underline;
  color: #337ab7;
  margin-bottom: 10px;

}

.login-page-instuctions>ul>li:before {
content: "\f00c ";
font-family: FontAwesome;
font-style: normal;
font-weight: normal;
margin-right: 4px;
}

.login-page-instuctions>ul>ul>li:before{
  content: "\f101  ";
  font-family: FontAwesome;
  font-style: normal;
  font-weight: normal;
  margin-right: 4px;
}

.login-page-instuctions>ul{
  padding-left: 10px;
}

.login-page-instuctions>ol{
  padding-left: 25px;
}

.login-page-instuctions>ul>li{
  list-style-type: none;
  display: flex;
}

.login-page-instuctions>ul>ul{
  padding-left: 20px;
}

.login-page-instuctions>ul>ul>li{
  list-style-type: none;
  display: flex;
}

.login-page-instuctions>ul>li,.login-page-instuctions>ul>ul>li, .login-page-instuctions>ol>li{
  font-size: 12px;
}

.login-page-instuctions>h5{
  font-weight: 600;
  text-decoration: underline;
  font-size: 13px;
  margin-bottom: 6px;
  color: #337ab7;
}


.logo-login{
    margin: 50px 20px;
}


.loginform{
  margin: 40px 0;
}

.loginform>.input-group{
  margin-bottom: 10px;
}

.loginform>.input-group>.input-group-addon{
  background: #ffffff;
}

.loginform>.input-group>input{
  height: 40px;
}

.loginform>.has-feedback{
	margin-bottom:40px;
	position:relative;
}

.loginform small{
	position:absolute;
	top: 36px;
}

.loginform i{
    z-index: 9;
}

.loginform>h5{
	font-size: 18px;
	margin-bottom: 30px;
	color:#337ab7;
	font-weight:600;
}

.login-button{
	background:#ea9b00;
	padding:8px;
	border-radius:0px;
	color:#ffffff;
	font-size:16px;
	text-transform:uppercase;
	font-weight:600;
}

.login-button:hover{
	background:#333333;
	color:#ffffff;
}

/* homepage */

@media screen and (min-width:768px){
    .navbar-brand-centered {
        position: absolute;
        left: 40%;
        display: block;
        width: 340px;
        text-align: center;
    }
    .navbar>.container .navbar-brand-centered, 
    .navbar>.container-fluid .navbar-brand-centered {
        margin-left: -40px;
    }
}
	.navbar-brand{
		padding:5px 5px;
	}
	
	.navbar-brand>img:last-child{
	border-left: 1px solid #ccc;
    margin-left: 10px;
    padding-left: 10px;
	}
	
	.navbar-brand>img{
		    display: initial;
	}

	.custom-nav{
		background:#ffffff;
		min-height:77px;
	}
	
	.time-nav>li>a{
		line-height: 24px;
		padding:10px 15px;
	}
	
	.time-nav>li>a .time-text{
		color: #040404;
		font-size: 18px;
		font-weight: normal;
		display:block;
	}
	
	.time-nav>li>a .time-clock{
		font-size: 20px;
		color: #18119a;
		font-weight: bold;
	}
	
	.user-nav{
		margin-right: 15px;
	}
	
	.user-nav>li>a{
	    padding: 25px 15px;
	}
	
	.navbar-login{
		width: 250px;
		padding: 10px;
		padding-bottom: 0px;
	}

	.navbar-login-session{
    	padding: 10px;
		margin-top:20px;
		padding-bottom:20px;
	}
	
	.navbar-login p{
		margin-bottom:4px;
	}
	
	#instructions{
		padding: 20px 0;
	}
	
	.box-widget {
		border: none;
		position: relative;
	}
	
	.bg-yellow{
		background-color: #eda400 !important;
		color:#ffffff;
	}
	
	.widget-user-2 .widget-user-header {
		    padding: 8px 18px;
    border-top-right-radius: 2px;
    border-top-left-radius: 2px;
    text-align: left;
	}
	
	.widget-user-2 .widget-user-username {
		    margin-top: 5px;
    margin-bottom: 5px;
    font-size: 18px;
    font-weight: 600;
	text-transform:uppercase;
	}
	
	.widget-user-2 .box-body{
		background:#ffffff;
	}
	
	.box-footer {
		border-top-left-radius: 0;
		border-top-right-radius: 0;
		border-bottom-right-radius: 3px;
		border-bottom-left-radius: 3px;
		border-top: 1px solid #f4f4f4;
		padding: 10px;
		background-color: #fff;
	}
	.box .nav-stacked>li {
		border-bottom: 1px solid #f4f4f4;
		margin: 0;
	}
	.nav-stacked>li>a {
		border-radius: 0;
		border-top: 0;
		border-left: 3px solid transparent;
		color: #444;
		text-align:left;
		padding: 6px 8px;
	}
	
	.starttest-btn{
		background:#000000;
		font-weight:bold;
		padding:10px 14px;
		border:1px solid #333333;
		border-radius:2px;
		color:#ffffff;
	}
	
	.instru-text>h5{
		color: #eda400;
	}
	
	.instru-text>h5>strong{
		color:#000000;
	}
	
	.dropdown>a{
		text-transform:uppercase;
	}


::-moz-selection {
  color: white;
  text-shadow: none;
  background: #222222;
}
::selection {
  color: white;
  text-shadow: none;
  background: #222222;
}
img::selection {
  color: white;
  background: transparent;
}
img::-moz-selection {
  color: white;
  background: transparent;
}
body {
  webkit-tap-highlight-color: #222222;
}






/* Test Page */

.box.box-danger {
    border-top-color: #18119a;
}

.box.box-blue{
	border-top-color: #18119a;
}

.box {
    position: relative;
    border-radius: 3px;
    background: #ffffff;
    border-top: 3px solid #d2d6de;
    margin-bottom: 20px;
    width: 100%;
    box-shadow: 0 1px 1px rgba(0,0,0,0.1);
}

.box-header.with-border {
    border-bottom: 1px solid #f4f4f4;
}

.box-header {
    color: #444;
    display: block;
    padding: 10px;
    position: relative;
}

.box-header>.fa, .box-header>.glyphicon, .box-header>.ion, .box-header .box-title {
    display: inline-block;
    font-size: 18px;
    margin: 0;
    line-height: 1;
}

.box-header>.box-tools {
    position: absolute;
    right: 10px;
    top: 2px;
}

.bg-red, .callout.callout-danger, .alert-danger, .alert-error, .label-danger, .modal-danger .modal-body {
    background-color: #dd4b39 !important;
}

.box-body {
    border-top-left-radius: 0;
    border-top-right-radius: 0;
    border-bottom-right-radius: 3px;
    border-bottom-left-radius: 3px;
    padding: 10px;
}

 .questionpallet{
	 padding-left:2px;
}

@media screen and (max-width: 992px) {
 .questionpallet{
	 padding-left:15px;
}
}

@media screen and (max-width: 768px) {
	.user-nav{
		float:right;
		margin:0px;
	}
	
	.user-nav > li > a{
		padding:22px 4px;
	}
	
	.time-nav{
		float:left;
		margin:0px;
	}
	
	.time-nav > li > a{
		padding:4px 4px;
	}
	
	.navbar-header{
		min-height: 75px;
		border-bottom: 1px solid #ccc;
	}
	
	#page-top{
		/* margin-top:137px; */
	}
}




.questio-pall{
	padding:0px;
}

.questio-pall>li{
	list-style-type: none;
    padding: 0px;
	border: 1px solid #f1f1f1;
    margin: 0px;
    float: left;
    border-collapse: collapse;
    width: 39px;
    height: 39px;
    text-align: center;
	display: grid;
	border-radius: 3px;
}

.questio-pall>li>a{
	line-height: 37px;
	font-size: 18px;
    font-weight: bold;
    color: #333;
	border-radius: 3px;
}

.questio-pall>li>a.answered{
	background:#34a853;
	color:#ffffff;
}

.questio-pall>li>a.not-answered{
	background:#c17294;
	color:#ffffff;
}

.questio-pall>li>a.current-question{
	background: #18119a;
	color:#ffffff;
}

.pallet-help>.pallet-inner{
	float:left;
	    margin-right: 12px;
}

.pallet-help h5{
	font-weight: 600;
    font-size: 14px;
	margin-top: 0px;
	margin-bottom: 0px;
}

.pallet-help h5>.curr-ques{
	width: 10px;
    height: 10px;
    background: #18119a;
    display: inline-block;
    margin-right: 2px;
}

.pallet-help h5>.ski-ques{
	width: 10px;
    height: 10px;
    background: #c17294;
    display: inline-block;
    margin-right: 2px;
}

.pallet-help h5>.answ-ques{
	width: 10px;
    height: 10px;
    background: #34a853;
    display: inline-block;
    margin-right: 2px;
}

.pallet-inner-last{
	margin-right:0px !important;
}

.pallet-help{
	padding: 6px;
    border: 1px solid #ccc;
}

.answs{
	/* background:#cc8da8; */
	padding:4px;
}

.answs>h4{
	font-size: 14px;
	font-weight:500;
	/* text-transform:uppercase; */
	margin:0px;
}

.answs>h2{
	margin:0px;
	font-size:18px;
	font-weight:bold;
	/* text-transform:uppercase; */
}

#outof{
	font-size: 14px;
}


.save-next-btn{
	background:#18119a;
	font-weight:bold;
	padding:10px 16px;
	border:1px solid #18119a;
	border-radius:2px;
	color:#ffffff;
	font-size:16px;
	transition-duration:0.4s;
	margin-left:10px;
}

.save-next-btn:hover{
	background:#18119a;
	transition-duration:0.2s;
}

.skip-btn{
	background:#18119a;
	font-weight:bold;
	padding:10px 16px;
	border:1px solid #18119a;
	border-radius:2px;
	color:#ffffff;
	font-size:16px;
	transition-duration:0.4s;
	opacity: 0.6;
}

.skip-btn:hover{
	background:#cb2113;
	transition-duration:0.2s;
	opacity: 0.9;
}

.ques-ans .box-header{
	padding: 15px 15px 15px 10px;
}

.box-header .box-title>span{
	background: #18119a;
    color: #fff;
    border-radius: 16px;
    padding: 2px 9px;
    font-size: 14px;
    font-weight: bold;
}

.question{
    padding: 12px;
    background: #f9f9f9;
    margin-bottom: 14px;
    border: 1px solid #f1f1f1;
}

.question>h4{
	font-size:14px;
	line-height: 20px;
    margin-top: 0px;
    margin-bottom: 0px;
}

.question>h4.english{
}

.question>h4.reginol-lan{
	margin-bottom: 0px;
}

.option-inner>label.reginol-lan{
	margin-top:4px;
}

.option-inner>label{
	font-size:14px;
	line-height: 20px;
    margin-top: 0px;
	display:block;
	font-weight:400;
	cursor:pointer;
	margin-bottom: 0;
}


.option{
	float: left;
    width: 50px;
    text-align: center;
    margin: auto 0px;
}

.option-inner{
	border-left: 1px solid #f1f1f1;
    padding-left: 13px;
    width: calc(100% - 50px);
}

.answers{
	border:1px solid #f1f1f1;
	padding:6px;
	margin-bottom:10px;
	display:flex;
}

.radio
{
    margin-top: 0 !important;
    margin-bottom: 0;
    margin-left: 4px;
}
.radio label
{
    position: relative;
    display: inline-block;
    padding-left: 5px;
    min-height: 14px;
    cursor: pointer;
}
.radio label::before
{
    position: absolute;  left: 0;  display: inline-block;  width: 17px;  height: 17px;  margin-left: -20px;  content: '';          -webkit-transition: border .15s ease-in-out;               -o-transition: border .15s ease-in-out;                  transition: border .15s ease-in-out;  border: 2px solid #000000;  border-radius: 50%;  background-color: #fff;
}
.radio label::after
{
    position: absolute;  top: 3px;  left: 3px;  display: inline-block;  width: 11px;  height: 11px;  margin-left: -20px;  content: ' ';          -webkit-transition: -webkit-transform .1s cubic-bezier(.8, -.33, .2, 1.33);             -moz-transition:    -moz-transform .1s cubic-bezier(.8, -.33, .2, 1.33);               -o-transition:      -o-transform .1s cubic-bezier(.8, -.33, .2, 1.33);                  transition:         transform .1s cubic-bezier(.8, -.33, .2, 1.33);                  -webkit-transform: scale(0, 0);                      -ms-transform: scale(0, 0);                       -o-transform: scale(0, 0);                          transform: scale(0, 0);  border-radius: 50%;  background-color: #333333;
}
.radio input[type='radio']
{
    opacity: 0;
    cursor: pointer;
}
.radio input[type='radio']:focus + label::before
{
      outline: thin dotted;      outline: 5px auto -webkit-focus-ring-color;  outline-offset: -2px;
}
.radio input[type='radio']:checked + label::after
{
              -webkit-transform: scale(1, 1);                  -ms-transform: scale(1, 1);                   -o-transform: scale(1, 1);                      transform: scale(1, 1);
}
.radio input[type='radio']:disabled + label
{
    opacity: .65;
}
.radio input[type='radio']:disabled + label::before
{
    cursor: not-allowed;
}
.radio.radio-inline
{
    margin-top: 0;
}

.radio-label
{
    display: block;
}


/* Session Expired */

.session-expired{
	border-radius:3px;
	text-align:center;
	padding: 70px 50px;
	margin:40px 0;
}

.session-expired>i{
	font-size:126px;
	color:#da4f4a;
}
.session-expired>h2{
	font-size:60px;
	color:#da4f4a;
	margin-top:0px;
}

.session-expired>h4{
	font-size: 36px;
    line-height: 22px;
    margin-bottom: 20px;
    margin-top: 30px;
}

.session-expired>h5{
	font-size: 20px;
    line-height: 22px;
    margin-bottom: 30px;
    margin-top: 20px;
}

.session-expired>a{
    background: #000000;
    font-weight: bold;
    padding: 6px 14px;
    border: 1px solid #333333;
    border-radius: 2px;
    color: #ffffff;
}

.widget-user-username {
    margin-top: 5px;
    margin-bottom: 5px;
    font-size: 18px;
    font-weight: 600;
    color: #FFF;
    /* text-transform: uppercase; */
}
.nav-stacke-a {
    border-radius: 0;
    border-top: 0;
    border-left: 3px solid transparent;
    color: #444;
    text-align: left;
    padding: 6px 8px;
    font-size: 14px;
}

/******************Footer strip*****************************/
footer {
    display: block;
}
footer.footer {
    color: #959595;
    background-color: #010101;
    padding: 5px 0 5px;
}
.footer-copyright, .footer-privacy {
    color: #959595;
    font-size: 14px;
    margin-bottom: 0px;
}
@media only screen and (min-width: 768px) {
    .footer-privacy {
        text-align: right;
    }
}
/* .footer-privacy__link {
    color: inherit;
    text-decoration: none;
} */
.footer-privacy__divider {
    padding: 0 8px;
}

.axis-btn{
    background-color: #18119a;
    border-color: #18119a;
}
.axis-btn2 {
    background-color: #1a4d82;
    border-color: #1a4d82;
}

.custom-margin {
    margin-top: 100px;
}
.custom-margin2 {
    margin-top: 100px;
}

.videoDiv{
    position: fixed;
    top:0px;
    left: calc(50% - 200px);
    zoom: 0.44;
    z-index: 6000;
}
@media only screen and (max-width: 767px) {
    .custom-margin {
        margin-top: 75px;
    }
    .custom-margin2 {
        margin-top: 75px;
    }
    .videoDiv{
        position: fixed;
        top:0px;
        left: 0px;
        zoom: 0.44;
        z-index: 6000;
    }
}