body {

}

* {
	box-sizing: border-box;
}

button {
	border: none;
	border-radius: 6px;
	padding: 10px 20px;
	font-size: 20px;
	color: #fff;
	background-color: #ccc;
}

header .title {
	
}

header h1, header h2 {
	
}

header div.countdown {
	
}

header div.points {
	-webkit-transition: color 0.5s;
    transition: color 0.5s;
}

header div.points.animate.right {
	color: #767D76;
}

header div.points.animate.wrong {
	color: #bf0000;
}

header div.countdown, header div.points {

}

.card {
	
}

div.start .card {
	display: block;
}

div.start .card p, .question.card span.question {
	font-size: 25px;
	text-align: center;
}

.card.question {
	display: none;
}

.card.question.active {
	display: block;
}

.card.question .options {
	padding: 0;
	list-style: none;
	padding-top: 20px;
}

.card.question .options > li {
	text-align: center!important;
}

.card.question .options > li label {
	background-color: #f3f3f3;
	display: block;
	padding: 10px;
	border-radius: 20px;
}

.card.question .options > li label:hover {
	background-color: #e4e4e4;
}

.card.question .options > li input:checked + label {
	background-color: #f3f3f3!important;
	color: #fff;
}

.card.question .options > li input {
	opacity: 0;
	display: none;
}

.finish {
	display: none;
}

.card.finish p {
	font-size: 22px;
}

.card.finish .final_points {
	font-size: 40px;
	text-align: center;
}

.play_again,
button.start {
	font-size: 22px;
    background: transparent;
}