/* QUIZ STYLES */
/* Styles to prettify the quiz page */

html {
    background: #eee;
}

body{
	margin:0 auto;
}


h1,h2,h3,h4,h5,h6 {text-align:center;font-weight: bold;}

h1 {
    font-size: 26px;
    margin: 0 0 20px;
    color: #0C4569;
}
h2 {
    font-size: 22px;
    margin: 15px 0;
}
h3 {
    font-size: 22px;
    margin: 15px 0 10px;
}
h4 {
    font-size: 16px;
    margin: 10px 0;
}
h5 {
    font-size: 14px;
    margin: 10px 0 5px;
}
h6 {
    font-size: 12px;
    margin: 5px 0;
}

strong { font-weight: bold; }
em { font-style: italic; }
ul { list-style-type: circle; }
ol { list-style-type: decimal; }
ol li { list-style-type: decimal; margin-left: 20px; }

.button {
    margin: 0 10px !important;  
    width: auto;
    padding: 5px 15px;
    color: #000;
    background-color: #ffffff;
    border: 3px solid #f28001;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border-radius: 5px;
    text-decoration: none;
    font-size: 13px;
    padding-top: 14px;
    padding-bottom: 12px;
    position: relative;
    top: 22px;
}
.button:hover {
    background-color:#000;
    color: #fff;
}

.startQuiz {
    margin-top: 40px;
}

.tryAgain {
    float: none;
    margin: 20px 0;
}

/* clearfix */
.quizArea, .quizResults {
    zoom: 1;
}
.quizArea:before, .quizArea:after, .quizResults:before, .quizResults:after {
    content: "\0020";
    display: block;
    height: 0;
    visibility: hidden;
    font-size: 0;
}
.quizArea:after, .quizResults:after {
    clear: both;
}

.questionCount {

    font-size: 14px;
    font-style: italic;
    position: absolute;
    top: 13px;
    left: 0;
    padding-left: 36px;
    width: 100%;
    text-align: left;
}
.questionCount:before {
    height: 1px;
    width: 33px;
    background: #fff;
    display: block;
    content: "";
    position: absolute;
    left: 0;
    top: 12px;
}
.questionCount:after {
    height: 1px;
    width: calc(100% - 181px);
    background: #fff;
    display: block;
    content: "";
    position: absolute;
    left: 156px;
    top: 12px;
}
.questionCount span {
    font-size:15px;
}

ol.questions {
    margin-top: 20px;
    margin-left: 0;
}
ol.questions li {
    margin-left: 0;
	margin-top:10px;
}

ul.answers {
    margin-bottom: 20px;
    max-width: 620px;
    margin-left: auto;
    margin-right: auto;
}
input[type=checkbox], input[type=radio] {
    box-sizing: border-box;
    padding: 0;
    width: 16px;
    height: 16px;
}
.answers label {
    width: calc(100% - 35px);
    border-bottom: 1px solid #615f5e;
    padding-bottom: 5px;
    font-size: 15px;
    text-align: left;
    position: relative;
    top: -3px;
}
.answers li{
    margin-bottom: 11px;
}

ul.responses li {
    margin: 10px 20px 20px;
}
ul.responses li p span {
    display: block;
    font-weight: bold;
    font-size: 18px;
}
.complete ul.answers li.correct, ul.responses li.correct p span {
    color: #6C9F2E;
}
ul.responses li.incorrect p span {
    color: #B5121B;
}

.quizResults h3 {
    margin: 0;
}
.quizResults h3 span {
    font-weight: normal;
    font-style: italic;
}
.quizResultsCopy {
    clear: both;
    margin-top: 20px;
}



#slickQuiz{
	display:block;
	max-width:1271px;
	background-color:#333;
	margin:45px auto;
}

.quizName{
  color:#fff; 
  font-weight:bold; 
  font-size:32px;
  padding-bottom: 45px;
   margin-bottom: 0;
}

.quizArea, .quizResults{
  color:#fff; 
  font-weight:400; 
  font-size:24px; 
  padding-top:0;
  text-align: center;
}
.quizDescription p{
    font-size: 16px;
    color:#fff;
}
.container-quizz {
    position: absolute;
    top: 0;
    left: 0;
    padding:90px 100px 20px;
    width: 100%;
}
.question h3{
    font-size:25px;
    color:#fff;
    padding-bottom: 66px;
}
.quizResults h3{
    font-size:31px;color:#fff;
}
.rtl .answers label{
    text-align: right;
}
.responses p{
    font-size: 18px;
}