.quiz-section {
	box-sizing: border-box;	
	width:100%; 
	background-color:#FFF;
	margin-top:2rem;
	padding:2rem;
	background-color:#656565;
	border-radius:0.8rem;
}

.quiz-section .question {
	font-weight: 500;
	font-size:2rem;	
	/*background: #f1f1f1 url("/photos/state/illinois.jpg") no-repeat; */
	/* background-color:#999;
	padding:3rem; */
	border-radius:1rem;	
}

.quiz-section .question strong {	
	font-weight: 600;
	font-size:2.2rem;	
	color:white;
	white-space: normal;
}

.quiz-section .answers {
	margin-bottom: 2rem;	
	font-size:1.7rem;
	font-weight: 500;
}

.quiz-section .answers label {
	box-sizing: border-box;
	display:block;				
	margin:0.5rem 0;
	padding:1.2rem;
	border-radius: 1rem;	
	background-color:#f2f2f2;
	border:4px solid #f2f2f2;	
	
	transition: all 0.2s ease-in;
}

.quiz-section .answers label:hover {
	background-color:#eaf1f7;
	border:4px solid #d9e8ef;	
}			

.quiz-section button {
  background-color: #2f81b1;
  color: #fff;
  border: 0;
  border-radius: 0.6rem;
  padding: 0rem 3rem;
  cursor: pointer;	
  height:35px;
  line-height:35px;
}
			
.quiz-section button:disabled,
.quiz-section button:disabled:hover
{
  cursor: default;
  background-color: #ddd;
  color: #888;
}

.quiz-section button:hover {
	background-color: #3c9bd2;
}

.quiz-section .answers input[type="radio"] {
	margin-top: -4px;
	vertical-align: middle;
	margin-right:1rem;
}

.quiz-section .answers input[type="radio"]:checked {			  
	appearance: none;
	border-radius:50%;
	width:16px;
	height:16px;
	border:2px solid #2f81b1;
	box-shadow:0 0 0 3px #2f81b1;			
}

.quiz-section #results {
	margin-bottom:0.5rem;
	text-align:center;
	color:white;
}			

/* .quiz-section .slides-container {				
	display: flex;

	margin: 0;
	padding: 0;

	overflow-y: hidden;
	overflow-x: hidden;
	
	scroll-behavior: smooth;
	transition:0.2s right linear;
} */

.quiz-section .slides-container {				
	display: flex;
	/* width: 100%; */				

	/* list-style: none; */
	margin: 0;
	padding: 0;

	
	/* overflow-y: hidden; */
	/* overflow-x: scroll; */
	white-space: nowrap;
	/*overflow:scroll;*/
	
	overflow: auto;
    margin: auto;
	
	/* scroll-behavior: smooth; 
	transition:0.2s right linear;*/
	
	-ms-overflow-style: none;  /* hide scrollbars in IE and Edge */
	scrollbar-width: none;  /* hide scrollbars in Firefox */
}


 /* Hide scrollbar for Chrome, Safari and Opera */
.quiz-section .slides-container::-webkit-scrollbar {
  display: none;
}

.quiz-section .slides-container .slide {
	width: 100%;	
	flex:1 0 100%;	
}

.quiz-section #submit {				
	width:15rem;
}

.quiz-section #slide-arrow-prev {
	float:left;
	/* border-radius: 25px 5px 5px 25px; */  
}

.quiz-section #slide-arrow-next {
	float:right;
	/* border-radius: 5px 25px 25px 5px; */
}

.quiz-section .buttons {
	text-align: center;  				
}

.quiz-section .progress-container {				
	position:relative;
	height:25px;
	width:100%;
	
	background-color:#DDD;
	margin-bottom:10px;	
	/*border-radius:10px;*/
}

.quiz-section .progress-bar {	
	height:100%;
	width:0%;
	background-color:#2f81b1;					
	transition: width 0.2s ease-in-out;						
	text-align: center;
	display: flex;
	/*border-radius:10px;*/	
}

.quiz-section .progress-status {	
	font-size:12px;
	margin: auto;	
	color:white;
}