body{
	background-color: #EAEAEA;
	font-family: sans-serif;
	padding-left: 15px;
	padding-right: 15px;
}

.multiple-choice{
	padding-top: 20px;
	color: black;
}

.fa-arrow-right{
	margin-right: 10px;
}

.icons{
	margin-bottom: 20px;
}

.icons .fa-times{
	font-size: 40px;
	color: red;
	margin-top: -5px;
}

.solution .fa-check{
	color: green;
}

.solution .fa-times{
	color: red;
}

.solution .fa-check,
.solution .fa-times{
	font-size: 30px;
}

.error-counter{
	display: block;
	float: left;
	width: 40px;
	height: 30px;
	line-height: 30px;
	background: rgb(255, 0, 0); /* Fallback for older browsers without RGBA-support */
	background: rgba(255, 0, 0, 0.5);;
	text-align: center;
	font-size: 14px;
	font-weight: bold;
	border: solid darkred 1px;
	margin-right: 10px;
}

.icon-next{
	background:  url('../img/icon_weiter.svg');
	background-repeat: no-repeat;
	background-size: contain;
	width:  40px;
	height:  40px;
	display:  block;
	line-height:  59px;
	float: left;
	margin-right:  10px;
	cursor:  pointer;
}

.icon-solution{
	background:  url('../img/loesung.svg');
	background-repeat: no-repeat;
	background-size: contain;
	width:  40px;
	height:  40px;
	display:  block;
	line-height:  59px;
	float: left;
	margin-right:  10px;
	cursor:  pointer;
}

.fa-arrow-right{
	cursor:  pointer;
}

.singleChoice .question{
	padding: 5px 5px 5px 15px;
	background-color: white;
	margin-bottom: 20px;
}
.singleChoice .question-image{
	margin-top: 10px;
	text-align: center;
}

.singleChoice .question{
	min-height: 200px;
}

.singleChoice .solution{
	margin-bottom: 15px;
	border: solid #d1d000 1px;
	background-color: #fbfae8;
	min-height: 40px;
	min-width: 146px;
	max-height: 100%;
	line-height: 20px;
	padding: 5px 5px 5px 15px;
}

.singleChoice .solution .solutionText{
	width: 90%;
	float: left;
	word-break: break-word;
}

.singleChoice .solution.correct,
.singleChoice .solution.correct:hover{
	background: rgb(207, 205, 0); /* Fallback for older browsers without RGBA-support */
	background: rgba(207, 205, 0, 0.5);
	border-color: darkgreen;
}

.singleChoice .solution.wrong,
.singleChoice .solution.wrong:hover{
	background: rgb(255, 0, 0); /* Fallback for older browsers without RGBA-support */
	background: rgba(255, 0, 0, 0.5);;
	border-color: darkred;
}

.singleChoice .solution:hover{
	background-color: #f7f4bd;
	cursor: pointer;
}

.singleChoice .question-image img{
	max-width: 100%;
	margin-left: -10px;
}
.singleChoice .solution img{
	margin-left: -10px;
	max-height: 80px;
}

#exercise{
	min-height: 350px;
	margin-bottom: 20px;
}

/******************
 * Overlay
*******************/
.overlay{
	background-color: rgba(96,96,96,0.8);
	min-width: 99%;
	min-height: 100%;
	position: absolute;
	bottom: 0;
	display:  flex;
	align-items: center;
	justify-content: center;
}

.overlay a{
	cursor: pointer;
	color: #d2731d;
	font-size: 16px;
	font-family: Arial;
}



.close-overlay{
	color:  white;
	font-size:  20px;
	position:  absolute;
	top: 10px;
	right:  10px;
	cursor:  pointer;
	font-weight:  bold;
}

.overlay-headline{
	font-family:arial;
	color:#444444;
	font-weight:bold;
	font-size:20px;
	line-height: 25px;
}
.overlay-message{
	font-family:arial;
	color:#444444;
	font-size:16px;
	font-weight:normal;
}

.overlay .overlay-inner{
	color:  black;
	padding:  20px;
	width:  100%;
	position: absolute;
	margin:  0 auto;
	top: 50px;
	white-space: normal;
}

.text-blue {
	color: blue;
}

.overlay .overlay-success{
	background-color:  #CFCD00;
}

.overlay .overlay-error{
	background-color:  #FF0000;
}

.coordinate{
	color: #0000c8;
}

.lineNumber{
	color: #CF78C0;
}

@media screen and (max-width: 768px){
	html{
		background-color: white;
		margin-left: 15px;
		margin-right: 15px;
	}
}

@media screen and (min-width: 335px) {
	.singleChoice .solution .solutionText{
		width: 84%;
	}
}

@media screen and (min-width: 768px) {
	.singleChoice .solution .solutionText{
		width: 88%;
	}
}

@media screen and (min-width: 1024px) {
	.singleChoice .solution .solutionText{
		width: 90%;
	}
}

@media screen and (max-width: 334px) {
	.singleChoice .solution .solutionText{
		width: 84%;
	}
}

@media screen and (max-width: 302px) {
	.singleChoice .solution .solutionText{
		width: 82%;
	}
}

