/* http://meyerweb.com/eric/tools/css/reset/
   v2.0 | 20110126
   License: none (public domain)
*/
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline;
	box-sizing: border-box;
	font-weight: 400;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
	display: block;
}
body {
	line-height: 1;
}
ol, ul {
	list-style: none;
}
blockquote, q {
	quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
	content: '';
	content: none;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}
img {
	max-width: 100%;
}

:root {
	touch-action: pan-x pan-y;
}

body {
	font-family: 'Open Sans', Arial, Helvetica, sans-serif;
	font-size: 14px;
	background: #EDEDED;
}

a {
	color: #AE1206;
}

p {
	line-height: 1.25;
	margin-bottom: 1em;
}

strong {
	font-weight: 700;
}

.kwizly-page {
	padding-bottom: 20px;
}

.kwizly-page .kwizly-content {
	padding: 20px 16px;
	position: relative;
}

.kwizly-page-home .kwizly-content {
	padding-top: 25px;
}
.kwizly-page-home .fixtures {
	margin: 0 0 20px;
}
.kwizly-page-home .kwizly-panels {
	display: flex;
	gap: 20px;
	flex-wrap: nowrap;
}
.kwizly-page-home .kwizly-panels .kwizly-panel {
	flex-basis: 50%;
	position: relative;
	cursor: pointer;
}
.kwizly-page-home .kwizly-panels .kwizly-panel img {
	border-radius: 6px;
}
.kwizly-page-home .kwizly-panels .kwizly-panel div {
	position: absolute;
	inset: 0;
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-content: center;
	text-align: center;
	font-size: 21px;
	color: #fff;
	text-transform: uppercase;
	font-weight: bold;
	line-height: 24px;
	padding: 10px;
}
.kwizly-page-home .kwizly-panels .kwizly-panel div span {
	font-weight: bold;
}

.site-wrapper {
	max-width: 100%;
	width: 428px;
	margin: 0 auto 30px;
	overflow: hidden;
}

.kwizly-quiz {
	background: transparent !important;
}

.kwizly-quiz .hero {
	background: url(../images/hero.jpg) no-repeat center center / cover;
	padding: 24px;
	height: 125px;
	display: flex;
	align-items: center;
	justify-content: center;
}
.kwizly-quiz .large-hero {
	height: auto;
	display: block;
	padding: 30px;
	text-align: left;
}
.kwizly-quiz .hero h1 {
	font-size: 21px;
	text-transform: uppercase;
	color: #fff;
	margin: 0;
	font-weight: 700;
}
.kwizly-quiz .large-hero h1 {
	font-size: 36px;
	line-height: 40px;
	margin-bottom: 16px;
}
.kwizly-quiz .large-hero h2 {
	font-size: 15px;
	line-height: 21px;
	text-transform: uppercase;
	color: #fff;
	margin: 0;
	font-weight: 700;
	max-width: 90%;
}

.kwizly-quiz .kwizly-questions-container {
	background: #fff;
}

.kwizly-quiz .fixture-list {
	background: #fff;
	padding: 20px;
	border-radius: 6px;
}
.kwizly-quiz .fixture-list .date {
	background: #EDEDED;
	line-height: 1;
	text-align: center;
	font-size: 12px;
	margin: 30px 0 25px;
	padding: 4px 0;
}
.kwizly-quiz .fixture-list .date:first-child {
	margin-top: 0;
}
.kwizly-quiz .fixture-list .fixture {
	display: flex;
	flex-direction: row;
	align-items: center;
	margin: 0 0 25px;
}
.kwizly-quiz .fixture-list .fixture .team {
	width: 50%;
	flex-grow: 1;
	flex-shrink: 1;
	font-weight: 600;
	font-size: 12px;
}
.kwizly-quiz .fixture-list .fixture .home-team {
	text-align: right;
	padding-right: 10px;
}
.kwizly-quiz .fixture-list .fixture .away-team {
	padding-left: 10px;
}
.kwizly-quiz .fixture-list .fixture .meta {
	width: 60px;
	flex-grow: 0;
	flex-shrink: 0;
	text-align: center;
}
.kwizly-quiz .fixture-list .fixture .meta .time {
	color: #AE1206;
	font-size: 12px;
}
.kwizly-quiz .fixture-list .fixture .img {
	width: 28px;
	height: 28px;
	flex-grow: 0;
	flex-shrink: 0;
}
@media ( max-width: 350px ) {
	.kwizly-quiz .fixture-list .fixture .home-team {
		padding-right: 4px;
	}
	.kwizly-quiz .fixture-list .fixture .away-team {
		padding-left: 4px;
	}
	.kwizly-quiz .fixture-list .fixture .img {
		width: 20px;
		height: 20px;
	}
}
.kwizly-quiz .fixture-list .cta {
	margin-top: 30px;
}
.kwizly-quiz .fixture-list .cta button {
	width: 100%;
	text-transform: uppercase;
	font-size: 18px;
}

.kwizly-page.kwizly-page-help .kwizly-content {
	background: #fff;
}
.kwizly-page.kwizly-page-help h1, .kwizly-page.kwizly-page-leaderboard h1 {
	margin: 30px 0 44px;
}
.kwizly-page.kwizly-page-help .kwizly-image {
	margin: 0 0 30px;
}
.kwizly-page.kwizly-page-help p {
	margin-bottom: 1.5em;
}
.kwizly-page.kwizly-page-help p.last {
	font-weight: bold;
}
.kwizly-page.kwizly-page-help p strong {
	color: #AE1206;
}
.kwizly-page.kwizly-page-help .kwizly-intro {
	color: #AE1206;
	font-weight: bold;
	margin: 0 1em 30px;
	text-align: center;
	font-size: 16px;
	line-height: 24px;
}
.kwizly-page.kwizly-page-help .kwizly-cta {
	padding: 20px 0;
}

.kwizly-quiz section h1 {
	font-size: 21px;
	font-weight: 700;
	margin: 0 0 20px;
	text-align: center;
	text-transform: uppercase;
	color: #000;
}

.kwizly-no-fixtures {
	text-align: center;
}
.kwizly-no-fixtures button {
	width: 100%;
}

.kwizly-back-arrow {
	position: absolute;
	left: 20px;
	top: 26px;
	width: 16px;
	height: 16px;
	background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 15.752 15.353"><path d="m9.055 14.325-.78.78a.84.84 0 0 1-1.192 0L.248 8.274a.84.84 0 0 1 0-1.192L7.083.253a.84.84 0 0 1 1.192 0l.78.78a.845.845 0 0 1-.014 1.206L4.804 6.27h10.1a.842.842 0 0 1 .844.844v1.125a.842.842 0 0 1-.844.844h-10.1l4.236 4.036a.839.839 0 0 1 .015 1.206Z" fill="%23000000"/></svg>') no-repeat;
	cursor: pointer;
}