body{
	font-size: 1em;
	font-family: 'Work Sans', sans-serif;
	color: black;
  font-weight: 200;
  text-align: center;
  background-color: #f8f6f0;
	direction: rtl;
	box-sizing: border-box;
}

.buffer{
	margin: 15px 0px;
	positition: cover;
	background: orange;
	height: 60px;
	padding: inherit;
		
}
.buffered{
	margin: 15px 0px;
	positition: cover;
	background: #fe6036;
	height: 60px;
	padding: inherit;
		
}

nav{
	background: olive;
	height: 100px; 
	width: 100%;
	
}
label.logo{
	color: #765400;
	float: inherit;
	font-size: 2.2em;
	width: 80%;
	line-height: 90px;
	padding: 0 10px;
	font-weight: bold;
	cursor: pointer;
	display: block;
}
.checkbtn{
	font-size: 1.2em;
	color: firebrick;
	float: right;
	line-height: 80px;
	margin-right: 40px;
	cursor: pointer;
	display: none;
}
nav ul{
	float: right;
	margin-right: 20px;
}
nav ul li{
	display: inline-block;
	line-height: 60px;
	margin: 0 5px;
}
nav ul li a{
	color: wheat;
	font-size: 1em;
	padding: 7px 13px;
	border-radius: 3px;
	text-transform: uppercase;
}
a.active, a.hover{
	background: #3F0203;
	transition: .5s;
}

#check{
	display: none;
}
#main{
	display: none;
}
.container {
  margin: 0px auto;
  max-width: 100%;
  width: 100%;

}
@media (max-width: 952px){
	label.logo{
		font-size: 2em;
		padding-left: 50px;
		z-index: 2;
	}
	nav ul li a{
	font-size: 1.2em;
	}
}
@media (max-width: 858px){
	.checkbtn{
		display: block;
		z-index: 2;
	}
	ul{
		position: fixed;	
		width: 100%;
		height: 100vh;
		background:#4B2504;
		top: 20px;
		left: -100%;
		text-align: center;
		transition: all .5s;
	}
	nav ul li {
	display: block;
		margin: 5px 0;
		line-height: auto; /*was 30px*/
	}
	nav ul li a{
		font-size: 1.1em;
		z-index: 2;
	}
	a.active, a:hover{
		background: #332E01;
		color: #0E5104;
	}
	#check:checked ~ ul{
		left: 0;
	}
	#main:checked ~ ul{
		left: 0;
	}
}

@media only screen and (min-width: 601px) {
  .container {
    width: 100%;
  }
}
@media only screen and (min-width: 993px) {
  .container {
    width: 90%;
  }
	.border-lb {
		border-left: 1px solid #ccc; 
	}
}

h1{
  font-weight: 200;
  margin: 0px;
  font-size: 1.2em;
  background-color: gold;
  color: #fff;
}
.question{
  margin: 0px;
  margin-bottom: 5px;
	right: inherit;
}
.answers {
  margin-bottom: 20px;
  text-align: right;
  display: inline-block;
direction: rtl;
}
.answers label{
  display: block;
  margin-bottom: 5px;
}
button{
  font-family: 'Work Sans', sans-serif;
	font-size: 1.2em;
	background-color: darkgreen;
	color: wheat;
	border: 0px;
	border-radius: 3px;
	padding: 20px;
	cursor: pointer;
	margin-bottom: 20px;
	z-index: 3;
}
button:hover{
	background-color: darkolivegreen;
	color: burlywood;
}
table{
		font-size: 1.2em;
	}
table a{
  text-decoration: none;
	color: #406205;
	text-align: right;
}
.top-nav-bar{
	height: 50px;
	top: 0;
	position: sticky;
	background: #fff;
	margin-bottom: 100px;
	border-bottom: 3px solid orange;
	z-index: 2;
}
.slide{
  font-size: 1.2em;
	position: absolute;
  left: 0px;
  top: 0px;
  width: 100%;
  /*z-index: 1;*/
  opacity: 0;
  transition: opacity 0.5s;
}
.active-slide{
  opacity: 1;
  z-index: 2;
}
.quiz-container{
  position: relative;
	font-size: 1em;
  margin-top: 5px;
	width: 80%;
	height: auto;
}
.module {
  height: 100vh; /* Use vh as a fallback for browsers that do not support Custom Properties */
  height: calc(var(--vh, 1vh) * 75);
  margin: 0 auto;
  max-width: 100%;
}
.module_2 {
  height: 100vh; /* Use vh as a fallback for browsers that do not support Custom Properties */
  height: calc(var(--vh, 1vh) * 35);
  margin: 0 auto;
  max-width: 100%;
}

.module_item {
  	height: 100vh; /* Use vh as a fallback for browsers that do not support Custom Properties */
  	height: calc(var(--vh, 1vh) * 40);
	align-items: center;
  	display: flex;
  	justify-content: center;
}
.module__item {
  align-items: center;
  display: flex;
  height: 20%;
  justify-content: center;
}

.module__item:nth-child(odd) {
  background-color: #F1D08A;
  color: #F73859;
}

.module__item:nth-child(even) {
  background-color: #F73859;
  color: #F1D08A;
}
