@charset "utf-8";
/* CSS Document */

#current-question-display
{
	background-color: #A8ACB7;
	padding: 20px;
	margin-bottom: 5px;
}

#introduction-text, #restart-text, #question
{
	padding: 20px;
	background-color: #4D9FE2;
	color: #fff;
}

#question
{
	line-height: 35px;
	text-align: center;
	margin-bottom: 40px;
}

#answers
{
	margin: 0px 0px 20px 0px;
	font-weight: bold;
	font-size: 20px;
}

#answers .incorrect, #answers .correct
{
	min-height: 50px; 
	padding: 10px;
	width: 100%;
	color: #FFF !important;
}

#answers .incorrect
{	
	background-color: #e9545f !important;
}

#answers .correct
{
	background-color: #44ae79 !important;
}

.individual-answer
{
	margin-top: 5px;
	min-height: 50px;
}

.individual-answer label
{
	padding: 10px;
}

input[type=checkbox]
{
	width: 25px;
	height: 25px;
	padding: 10px;
}

.radio-container
{
	text-align: center;
	padding: 10px;
}

.fa-check, .fa-times {
    font-size: 2.1em;
    position: absolute;
    right: 10px;
    top: 0px;
}

.fa-times{
 color:darkred;
}

.fa-check{
	color:darkgreen;
}

label{
	max-width: 95%;
	border-bottom: 1px dotted #AED1E6}