a, abbr, acronym, address, applet, article, aside, audio, b, big, blockquote, body, button, canvas, caption, center, cite, code, dd, del, details, dfn, div, dl, dt, em, embed, fieldset, figcaption, figure, footer, form, h1, h2, h3, h4, h5, h6, header, hgroup, html, i, iframe, img, input, ins, kbd, label, legend, li, main, mark, menu, nav, object, ol, output, p, pre, q, ruby, s, samp, section, section, select, small, span, strike, strong, sub, summary, sup, table, tbody, td, textarea, tfoot, th, thead, time, tr, tt, u, ul, var, video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline;
}

article, aside, details, figcaption, figure, footer, header, hgroup, main, menu, nav, section {
	display: block;
}

body {
	display: block;
}

html {
	font-family: Arial;
}

ol, ul {
	margin: 0;
	padding: 0;
	list-style: none;
}

blockquote, q {
	quotes: none;
}

blockquote:after, blockquote:before, q:after, q:before {
	content: '';
	content: none;
}

table {
	border-collapse: collapse;
	border-spacing: 0;
}

[role="button"],
[type='submit'],
[type='button'],
[type='reset'],
button {
	border: none;
	border-radius: 0;
	background: none;
	cursor: pointer;
	padding: 0;
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	-webkit-border-radius: 0;
}

b, strong {
	font-weight: bold;
}

* {
	-webkit-box-sizing: inherit;
	-moz-box-sizing: inherit;
	box-sizing: inherit;
}

[v-cloak] {
    display: none;
}

.reset-quiz-btn {
	border: 1px solid black;
	padding: 5px 10px;
	border-radius: 3px;
}

.reset-quiz-btn:hover, .reset-quiz-btn:focus {
	background-color: lightgray;
}

.page-heading {
	font-size: 50px;
	margin-bottom: .7em;
}

.question-box-container {
	max-width: 600px;
	margin: 0 auto;
	padding: 20px;
}

.question-form__heading {
	font-size: 34px;
	margin-bottom: 20px;
}

.question-form__question {
	font-size: 24px;
	margin-bottom: 20px;
}

.question-form__field-wrapper {
	position: relative;
	overflow: hidden;
	border: 2px solid gray;
	border-bottom: 0;
}

.question-form__field-wrapper:last-of-type {
	margin-bottom: 20px;
	border-bottom: 2px solid gray;
}

.question-form input {
	position: absolute;
	left: -9999px;
	z-index: -1;
	width: 1px;
	height: 1px;
	overflow: hidden;
	border: 0;
}

.question-form input:focus + label {
	background-color: lightgray;
}

.question-form input:checked + label {
	background-color: #4cd3ff;
	color: #fff;
}

.question-form input[disabled="disabled"] + label {
	background-color: transparent;
	cursor: default;
}

.question-form input.correct + label {
	background-color: #1db100;
	color: #fff;
}

.question-form input.incorrect + label {
	background-color: red;
	color: #fff;
}

.question-form label {
	display: block;
	width: 100%;
	height: 100%;
	font-size: 18px;
	cursor: pointer;
	padding: 10px;
	box-sizing: border-box;
}

.question-form label:hover {
	background-color: lightgray;
}

.question-form button {
	border: 1px solid black;
	padding: 5px 10px;
	border-radius: 3px;
}

.question-form button:not(:last-child) {
	margin-right: 5px;
}

.question-form button:hover, .question-form button:focus {
	background-color: lightgray;
}

.question-form button[disabled="disabled"] {
	opacity: .7;
	background-color: lightgray;
	cursor: default;
}

.question-form .submit {
	background-color: #4cd3ff;
}

.question-form .submit:not([disabled]):hover, .question-form .submit:not([disabled]):focus {
	background-color: #19c6ff;
}

.question-form .next {
	background-color: #4cd3ff;
}

.question-form .next:not([disabled]):hover, .question-form .next:not([disabled]):focus {
	background-color: #19c6ff;
}
