/* -------------------------------- 

Primary style

-------------------------------- */
html * {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

*, *:after, *:before {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

html, body {
  /* you need to set this to assign to the main element a min height of 100% */
  height: 100%;
}

body {
  font-size: 100%;
  font-family: 'Rokkitt', serif;
  color: #ffffff; /*#4e6361;*/
  /*background-color: #f4f2f3;*/
}

a {
  color: #6cac70;
  text-decoration: none;
}

/* -------------------------------- 

Modules - reusable parts of our design

-------------------------------- */
.cd-img-replace {
  /* replace text with a background-image */
  display: inline-block;
  overflow: hidden;
  text-indent: 100%;
  white-space: nowrap;
}

.overflow-hidden {
  overflow: hidden;
}

/* -------------------------------- 
Main components 
-------------------------------- */

.close-menu-page-css
{
    padding-left:10%;
    padding-right:10%;
}

.open-menu-page-css
{
    padding-left:0%;
    padding-right:19%;
}
.cd-main-content {
  /* set a min-height and a z-index to be sure that the main element completely covers the lateral menu */
  min-height: 100%;
  position: relative;
  background-color: #0192C1; /*#333;*/
    /* Force Hardware Acceleration in WebKit */
  z-index: 2;
  padding-top: 50px;
  color:Black;
  -webkit-backface-visibility: hidden;
  -webkit-transition-property: -webkit-transform;
  -moz-transition-property: -moz-transform;
  transition-property: transform;
  -webkit-transition-duration: 0.4s;
  -moz-transition-duration: 0.4s;
  transition-duration: 0.4s; 

}
 
.cd-main-content.lateral-menu-is-open {
  /* translate to show the lateral menu - all content needs to be put in the .cd-main-content to translate*/
  -webkit-transform: translateX(260px);
  -moz-transform: translateX(260px);
  -ms-transform: translateX(260px);
  -o-transform: translateX(260px);
  transform: translateX(260px);
}

@media only screen and (min-width: 768px) {
  .cd-main-content {
    padding-top: 70px;
    padding-bottom: 70px;
  }
  .cd-resource-content {
    padding-top: 70px;
    padding-bottom: 70px;
  }
}

@media only screen and (max-width: 768px) {
  .cd-main-content {
    padding-top: 40px;
    padding-bottom: 70px;
  }
  .cd-resource-content {
    padding-top: 40px;
    padding-bottom: 70px;
  }
}

header {
  position: absolute;
  top: 0;
  left: 0;
  height: 70px;
  width: 100%;
  background: #fff;
  z-index: 3;
  Force Hardware Acceleration in WebKit 
  -webkit-transform: translateZ(0);
  -webkit-backface-visibility: hidden;
  -webkit-transition-property: -webkit-transform;
  -moz-transition-property: -moz-transform;
  transition-property: transform;
  -webkit-transition-duration: 0.4s;
  -moz-transition-duration: 0.4s;
  transition-duration: 0.4s;
   border-bottom:1px solid #f4f2f3;
}
header.lateral-menu-is-open {
  /* translate to show the lateral menu */
  -webkit-transform: translateX(0px);
  -moz-transform: translateX(0px);
  -ms-transform: translateX(0px);
  -o-transform: translateX(0px);
  transform: translateX(0px);
}
header.is-fixed {
  position: fixed;
}
@media only screen and (min-width: 768px) {
  header {
    height: 70px;
  }
}

#cd-logo {
	display: block;
	float: right;
	margin: 12px 0 0 20px;
}
#cd-logo img {
	display: block;
}
@media only screen and (min-width: 768px) {
	#cd-logo {
		margin: 5px 30px 0 0;
	}
}

#cd-top-nav {
	position: absolute;
    top: 0;
    left: 50%;
    height: 100%;
    display: none;
    margin-left: -200px;
}
#cd-top-nav ul {
	height: 100%;
	padding-top: 18px;
}
#cd-top-nav li {
	display: inline-block;
	margin-right: 1em;
}
#cd-top-nav a {
	display: inline-block;
	padding: .5em;
	color: #ff0000;
	text-transform: uppercase;
	font-weight: 600;
}
#cd-top-nav a.current {
	background-color: #242e30;
}
.no-touch #cd-top-nav a:hover {
	color: rgba(0, 0, 0, 0.5);
}
@media only screen and (min-width: 768px) {
	#cd-top-nav {
		display: block;
	}
}

#cd-menu-trigger {
	position: absolute;
	left: 0;
	top: 0;
	height: 100%;
	width: 50px;
	background-color: #f4f2f3;
}
#cd-menu-trigger .cd-menu-text {
	height: 100%;
	text-transform: uppercase;
	color: #36845a;
	font-weight: 600;
	display: none;
}
#cd-menu-trigger .cd-menu-icon {
	/* this span is the central line in the menu menu */
	display: inline-block;
	position: absolute;
	left: 50%;
	top: 50%;
	bottom: auto;
	right: auto;
	-webkit-transform: translateX(-50%) translateY(-50%);
	-moz-transform: translateX(-50%) translateY(-50%);
	-ms-transform: translateX(-50%) translateY(-50%);
	-o-transform: translateX(-50%) translateY(-50%);
	transform: translateX(-50%) translateY(-50%);
	width: 28px;
	height: 3px;
	background-color: #696969; /*#36845a;*/
	/* these are the upper and lower lines in the menu menu */
}
#cd-menu-trigger .cd-menu-icon::before, #cd-menu-trigger .cd-menu-icon:after {
  content: '';
  width: 100%;
  height: 100%;
  position: absolute;
  background-color: inherit;
  left: 0;
}
#cd-menu-trigger .cd-menu-icon::before {
  bottom: 5px;
}
#cd-menu-trigger .cd-menu-icon::after {
  top: 5px;
}
#cd-menu-trigger.is-clicked .cd-menu-icon {
  background-color: rgba(255, 255, 255, 0);
}
#cd-menu-trigger.is-clicked .cd-menu-icon::before, #cd-menu-trigger.is-clicked .cd-menu-icon::after {
  background-color: #36845a;
}
#cd-menu-trigger.is-clicked .cd-menu-icon::before {
  bottom: 0;
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  transform: rotate(45deg);
}
#cd-menu-trigger.is-clicked .cd-menu-icon::after {
  top: 0;
  -webkit-transform: rotate(-45deg);
  -moz-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  -o-transform: rotate(-45deg);
  transform: rotate(-45deg);
}
@media only screen and (min-width: 768px) {
  #cd-menu-trigger {
    width: 80px;
    padding-left: 1.25em;
  }
  #cd-menu-trigger .cd-menu-text {
    display: inline-block;
    line-height: 75px;
  }
  #cd-menu-trigger .cd-menu-icon {
    left: auto;
    right: 1.5em;
    -webkit-transform: translateX(0);
    -moz-transform: translateX(0);
    -ms-transform: translateX(0);
    -o-transform: translateX(0);
    transform: translateX(0);
  }
}

#cd-lateral-nav {
  position: absolute;
  height:80%;
  left: 0;
  top: 70px;
  visibility: hidden;
  /* the secondary navigation is covered by the main element */
  z-index: 1;
  width: 260px;
  background-color: #f4f2f3;
  overflow-y: auto;
  /* Force Hardware Acceleration in WebKit */
  -webkit-transform: translateZ(0);
  -webkit-backface-visibility: hidden;
  -webkit-transition: -webkit-transform .4s 0s, visibility 0s .4s;
  -moz-transition: -moz-transform .4s 0s, visibility 0s .4s;
  transition: transform .4s 0s, visibility 0s .4s;
  /* this creates the subtle slide in animation of the navigation */
  -webkit-transform: translateX(0px);
  -moz-transform: translateX(0px);
  -ms-transform: translateX(0px);
  -o-transform: translateX(0px);
  transform: translateX(0px);
}
#cd-lateral-nav .cd-navigation {
  margin: 10px 0 16px;
}
#cd-lateral-nav .cd-navigation li{
  border-bottom:1px solid #d2d0d1;
  padding:5px 0;
}
#cd-lateral-nav .sub-menu {
  padding: 0 10px 5px 15px;
  display: none;
}
#cd-lateral-nav .sub-menu li{
	border:none;
	padding:0;
}
#cd-lateral-nav .sub-menu li a{
	color:#333!important;
}
#cd-lateral-nav a {
  display: block;
  font-size:20px;
  font-weight:500;
  line-height: 2em;
  padding: 0 16px 0 32px;
  color: #6d6e70;
}
#cd-lateral-nav a.current {
  background-color: #3a4a4d;
  color: #333333;
}
.no-touch #cd-lateral-nav a:hover {
  color: #333333;
}
@media only screen and (min-width: 768px) {
  #cd-lateral-nav .cd-navigation {
    margin: 20px 0;
  }
}
#cd-lateral-nav.lateral-menu-is-open {
  -webkit-transform: translateX(0);
  -moz-transform: translateX(0);
  -ms-transform: translateX(0);
  -o-transform: translateX(0);
  transform: translateX(0);
  visibility: visible;
  -webkit-transition: -webkit-transform .4s 0s, visibility 0s 0s;
  -moz-transition: -moz-transform .4s 0s, visibility 0s 0s;
  transition: transform .4s 0s, visibility 0s 0s;
  /* smooth the scrolling on touch devices - webkit browsers */
  -webkit-overflow-scrolling: touch;
}

/* style menu items which have a submenu  */
#cd-lateral-nav .item-has-children > a {
  position: relative;
  /* this is the right arrow to show that the item has a submenu  */
}
#cd-lateral-nav .item-has-children > a::after {
  content: '';
  display: block;
  height: 11px;
  width: 8px;
  position: absolute;
  top: 50%;
  bottom: auto;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
  right: 1em;
  background: url("../siteimages/cd-arrow.png") no-repeat center center;
  background-size: 8px 11px;
  -webkit-transition-property: -webkit-transform;
  -moz-transition-property: -moz-transform;
  transition-property: transform;
  -webkit-transition-duration: 0.2s;
  -moz-transition-duration: 0.2s;
  transition-duration: 0.2s;
}
#cd-lateral-nav .item-has-children > a.submenu-open::after {
  -webkit-transform: translateY(-50%) rotate(90deg);
  -moz-transform: translateY(-50%) rotate(90deg);
  -ms-transform: translateY(-50%) rotate(90deg);
  -o-transform: translateY(-50%) rotate(90deg);
  transform: translateY(-50%) rotate(90deg);
}

#cd-lateral-nav .socials {
  padding: 0 32px;
}
#cd-lateral-nav .socials:after {
  content: "";
  display: table;
  clear: both;
}
#cd-lateral-nav .socials a {
  height: 32px;
  width: 32px;
  float: left;
  padding: 0;
  background-image: url("../siteimages/cd-socials.png");
  background-repeat: no-repeat;
  background-size: 128px 64px;
  background-color: #FFF;
  margin-right: .5em;
  border-radius: 0.25em;
}
#cd-lateral-nav .socials a.cd-twitter {
  background-position: 0 0;
}
#cd-lateral-nav .socials a.cd-github {
  background-position: -32px 0;
}
#cd-lateral-nav .socials a.cd-facebook {
  background-position: -64px 0;
}
#cd-lateral-nav .socials a.cd-google {
  background-position: -96px 0;
}
.no-touch #cd-lateral-nav .socials a:hover {
  background-color: #4e6361;
}
.no-touch #cd-lateral-nav .socials a:hover.cd-twitter {
  background-position: 0 -32px;
}
.no-touch #cd-lateral-nav .socials a:hover.cd-github {
  background-position: -32px -32px;
}
.no-touch #cd-lateral-nav .socials a:hover.cd-facebook {
  background-position: -64px -32px;
}
.no-touch #cd-lateral-nav .socials a:hover.cd-google {
  background-position: -96px -32px;
}

.progress-control
{
    margin-left:0%;
    margin-right:0px;
    text-align:center;
    float:left;
    width:40%;
    padding-top:7px;
}

.video-control
{
	float:right;
	/*margin-right:30px;*/
	width:30%;
}
.info-control{
	float:left;
	margin-left:0px;
	color:#fff;
	width:30%;
}

.info-control-icon
{
    width: 27px;
}

@media (max-width: 600px) 
{
    .progress-control
    {
        width:30%;
    }

    .video-control
    {
	    width:35%;
    }
    
    .info-control{
	    width:35%;
    }
    
    .info-control-icon
    {
        width: 27px;
    }

}
   
.info-icon a {
  height: 30px;
  width: 30px;
  float: left;
  padding: 0;
  background-image: url("../siteimages/info.png");
  background-repeat: no-repeat;
  background-size: 128px 64px;
  margin-right: .5em;
  text-indent:-99999px;
}
.info-icon a:hover {
	opacity: 0.5;
    filter: alpha(opacity=50);
	-webkit-filter: alpha(opacity=50);
}
.info-icon a.info1 {
  background-position: -1px -1px;
}
.info-icon a.info2 {
  background-position: -33px -1px;
}
.info-icon a.info3 {
  background-position: -67px -1px;
}
@media (max-width: 580px){
	#cd-logo {margin: 3px 8px 0 20px;}
	#cd-lateral-nav {top: 50px;}
}	

@media (min-width: 768px){
.modal-dialog {
    width: 80%;
    margin: 30px auto;
}
}
.modal-header .close {
    margin-top: -13px;
    width: 23px;
    height: 24px;
    opacity: 1.2;
}

.quizbackground {
    opacity: 0.8;
    filter: alpha(opacity=80);
    background-repeat: no-repeat;
    -ms-background-size: cover;
    -o-background-size: cover;
    -moz-background-size: cover;
    -webkit-background-size: cover;
    background-size: cover;
    background-size: contain;
}

#quizsection
{
	position: absolute;
	z-index: 99999; 
	top: 50px; 
	left: 10%;
	width:80%;
	height:80%;
	display:block;
}


@media (max-width: 768px) 
{
    #quiz_question
    {
        line-height: 13px !important;
    }
    .quizbackground
    {
        background:none !important;
    }
    
    #quizsection {
        top: 50px;
        left: 2%;
        width: 96%;
        height: 96%;
    }
}


@media (min-width: 768px and max-width: 1024px) 
{
    #quiz_question
    {
        line-height: 16px !important;
    }
    
    #quizsection {
        top: 50px;
        left: 14%;
        width: 84%;
        height: 84%;
    }
}
 
#quizinnerbox
{
	width:auto;
	height:520px;
	padding:5px;
}

#quizsectionheading
{
    font-size: 30px;
    padding-top: 10px;
    padding-bottom: 10px;
    display: block;
    color: #89C53F;
    font-weight: bold;
}   

#quiz_heading
{
	/*background-color:#00833C;*/
	color:white;
	font-size: 20px;
	font-weight: 700;
	/*border: 1px solid white;*/
	padding:10px;
}

#quiz_question
{
	/*background-color:#56A964;*/
	color:White;
	font-size: 20px;
	font-weight: 300;
	text-align:left;
	padding:20px 10px 10px 30px;
	/*border: 1px solid white;*/
	max-height:390px;
	min-height:150px;
	height:auto;
	line-height: 20px;
}

#quiz_heading_1
{
	background-color:#00B4EF;
	color:White;
	font-size: 20px;
	font-weight: 700;
	border: 1px solid white;
	padding:10px;
}


#quiz_question_1
{
	background-color:#2CC0F1;
	color:White;
	font-size: 20px;
	font-weight: 300;
	text-align:left;
	padding:20px 10px 10px 30px;
	border: 1px solid white;
	max-height:390px;
	min-height:150px;
	height:auto;
}

#quizsection_2
{
	position: absolute;
	z-index: 2; 
	top: 100px; 
	left: 50px;
	width:940px;
	height:500px;
	display:block;
}

#quizinnerbox_2
{
	width:auto;
	height:auto;
	padding:5px;
}

#quiz_heading_2
{
	color:Black;
	font-size: 20px;
	font-weight: 700;
	padding:10px;
}

#quiz_question_2
{
	color:black;
	font-size: 20px;
	font-weight: 300;
	text-align:left;
	max-height:490px;
	height:auto;
}


#quiz_question_map_ans_2
{
	color:#2D5D25;
	font-size: 12px;
	font-weight: 600;
	border: 1px solid white;
	padding:10px;
}

.btnClass
{
	background-color:#6B6B6B;
	padding-left:10px;
	padding-right:10px;
	padding-top:10px;
	padding-bottom:10px;
	border: 2px solid white;
	font-size:20px;
	font-weight:700;
	color: White;
    border-radius: 8px;
}

.btnClass_1
{
	background-color:#6B6B6B;
	padding-left:10px;
	padding-right:10px;
	padding-top:10px;
	padding-bottom:10px;
	border: 2px solid white;
	font-size:20px;
	font-weight:700;
	color: White;
    border-radius: 8px;
}

