@charset "utf-8";
/* CSS Document */

#current-question-display
{
	background-color: #d8e1e9;
	padding: 20px;
	margin-bottom: 5px;
}

#introduction-text, #restart-text, #question
{
	padding: 20px;
	background-color: #3f81b9;
	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=radio]
{
	width: 20px;
	height: 20px;
	padding: 10px;
}

.radio-container
{
	text-align: center;
	padding: 10px;
}