@font-face {
    font-family: 'Novecentosanswide-Book';
    src: url('fonts/Novecentosanswide-Book-webfont.woff2') format('woff2'),
         url('fonts/Novecentosanswide-Book-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}
@font-face {
    font-family: 'Novecentosanswide-Medium';
    src: url('fonts/Novecentosanswide-Medium-webfont.woff2') format('woff2'),
         url('fonts/Novecentosanswide-Medium-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}

[class*="entypo-"]:before {
	font-family: 'entypo', sans-serif;
}

html {
	width: 100%;
	height: 100%;
	overflow: hidden;
	font-family: 'Montserrat', sans-serif;
}
body {
	width: 100%;
	height: 100%;
	margin: 0;
	padding: 50px;
	background: #111;
	box-sizing: border-box;
	color: #000;
}
body * {
	box-sizing: border-box;
}
h1, h2, h3, h4 {
	font-weight: 900;
	text-transform: uppercase;
	letter-spacing: 2px;
}
.game:before {
	content: '';
	position: absolute;
	width: 100%;
	height: 100%;
	left: 0;
	top: 0;
	background: rgba(0,0,0,0.4);
}
.game {
	overflow: hidden;
	position: relative;
	width: 100%;
	height: 100%;
	
	background-image: url("../img/bg_sky.png");
	background-size: cover;
	background-repeat: no-repeat;
	background-position: center;
}
.video {
	position: absolute;
    z-index: 0;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
}
.video video {
	position: absolute;
    right: 0;
    bottom: 0;
    min-width: 100%; 
    min-height: 100%;
}
.video:after {
	content: '';
	position: absolute;
	background: rgba(0,0,0,0.3);
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	display: block;
}



/* Buttons */
.button {
	background: #6baac4;
	border-radius: 20px;
	color: #fff;
	display: inline-block;
	line-height: 40px;
	padding: 0 30px;
	margin: 5px;
	text-transform: uppercase;
	cursor: pointer;
	text-decoration: none;
}
.button:hover {
	background: #5d5d5d;
	color: #fff;
}

/* Controls */
.game > .controls.hide {
	top: -400px;
	margin-top: 0;
}
.desktop .game > .controls {
	width: 500px;
	margin-left: -250px;
}
.game > .controls {
	text-align: center;
	width: 360px;
	height: 400px;
	background: rgba(255,255,255,0.9);
	border-radius: 2px;
	position: absolute;
	left: 50%;
	top: 50%;
	margin-left: -180px;
	margin-top: -200px;
	z-index: 500;
	transition: all 1s;
	border: 2px solid #111;
}
.game > .controls .lug {
	position: absolute;
	bottom: 0;
	left: 50%;
	width: 60px;
	margin-left: -30px;
	height: 20px;
	background: #111;
	color: #fff;
	cursor: pointer;
	text-align: center;
	transition: bottom 1s;
}
.game > .controls.hide .lug {
	bottom: -20px;
}
.game > .controls .lug span {
	line-height: 20px;
	height: 20px;
	display: inline-block;
	vertical-align: top;
	transform: rotate(0);
	transition: transform 1s;
}
.game > .controls.hide .lug span {
	transform: rotate(180deg);
}
.game > .controls .button {
	margin-top: 10px;
}
.game > .controls .hidden {
	display: none;
}
.game > .controls .template h2 {
	background: #9ab41d;
	color: #fff;
	width: 100%;
	text-align: center;
	padding: 20px;
	margin: 0 0 20px 0;
	line-height: 40px;
}
.game > .controls .template.bad-performance h2 {
	background: #941918;
}
.game > .controls .template .text {
	padding: 0 10px;
	line-height: 28px;
}
.desktop .game > .controls .template .text {
	padding: 0 40px;
}
.game > .controls .template .text .label,
.game > .controls .template .text .value {
	display: inline-block;
	white-space: nowrap;
	text-align: left;
}
.game > .controls .template .text .label {
	width: 150px;
}
.game > .controls .template .text .value {
	width: 70px;
	font-weight: 400;
}


/* Splash */

.game.init .splash {
	opacity: 1;
	visibility: visible;
}
.game .splash {
	opacity: 0;
	visibility: hidden;
	text-align: center;
	position: absolute;
	width: 100%;
	height: 100%;
	z-index: 1000;
	color: #fff;
	
	transition: opacity 0.5s, visibility 0.5s;
	background: #024698;

	font-family: 'Open Sans', sans-serif;
	font-weight: 300;
}
.game .splash:before {
	content: '';
	display: block;
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	/* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#000000+0,000000+100&0+0,0.3+100 */
	background: -moz-radial-gradient(center, ellipse cover, rgba(0,0,0,0) 0%, rgba(0,0,0,0.3) 100%); /* FF3.6-15 */
	background: -webkit-radial-gradient(center, ellipse cover, rgba(0,0,0,0) 0%,rgba(0,0,0,0.3) 100%); /* Chrome10-25,Safari5.1-6 */
	background: radial-gradient(ellipse at center, rgba(0,0,0,0) 0%,rgba(0,0,0,0.3) 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#00000000', endColorstr='#4d000000',GradientType=1 ); /* IE6-9 fallback on horizontal gradient */
}
.game .splash .text {
	margin: 0 auto;
	width: 100%;
	max-width: 900px;
	max-height: 100%;
	overflow: auto;
	position: relative;
	padding: 120px 10px 10px 10px;
}
.game .splash .text h1 {
	margin-bottom: 40px;
	font-family: 'Novecentosanswide-Medium';
	font-weight: normal;
}
.game .splash .text .button {
	margin-top: 40px;
	background: #fff;
	color: #5d5d5d;
}
.game .splash .text .button:hover {
	background: #5d5d5d;
	color: #fff;
}
.game .splash .text .description {
	margin: 0;
	padding: 10px 0;
}
.game .splash .text .more-description {
	display: none;
	padding-top: 20px;
	position: relative;
}
.game .splash .text .more-description:before {
	content: '';
	position: absolute;
	top: 10px;
	border-top: 1px solid #fff;
	width: 200px;
	left: 50%;
	margin-left: -100px;
}
.game .splash .text .show-more-description,
.game .splash .text .show-less-description {
	text-decoration: underline;
	cursor: pointer;
}
.game .splash .text .logo {
	width: 160px;
	margin-top: 40px;
}
.game .splash .text .button {
	margin-top: 40px;
}
.game .splash .no-support {
	display: none;
}

/* Quiz */
.quiz {
	width: 100%;
	height: 100%;
	position: relative;
	z-index: 100;
}
.quiz .container {
	width: 100%;
	height: 100%;
	max-width: 1400px;
	position: relative;
	margin: 0 auto;
	padding-bottom: 50px;
}
.quiz .container .questions {
	position: relative;
	height: 100%;
	counter-reset: question;
	perspective: 500px;
	transition: opacity 0.5s;
}
.quiz .container .questions.opacity {
	opacity: 0.4;
}
.quiz .container .questions .question {
	padding: 50px 20px 10px 20px;
	visibility: hidden;
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	transition: all 1s;
	opacity: 0;
	overflow: auto;
}
.quiz .container .questions .question .scroll {
	position: relative;
}
.quiz .container .questions .question.show {
	visibility: visible;
	opacity: 1;
}
.quiz .container .questions .question.show .answering .answer .container {
	visibility: visible;
	opacity: 1;
	top: 0;
}
.quiz .container .questions .question.answered:not(.show) .answering .answer .container {
	top: 200px;
}
.quiz .container .questions .question .scroll .number {
	perspective: 500px;
	position: absolute;
	top: 0;
	right: 0;
}
.quiz .container .questions .question .scroll .number span {
	display: block;
    transform: rotateX(90deg);
	line-height: 100px;
	height: 100px;
	font-size: 140px;
    font-weight: 700;
	transition: transform 0.5s;
	transform-origin: top;
}
.quiz .container .questions .question.show .scroll .number span {
    transform: rotateX(0deg);
}
.quiz .container .questions .question.answered .scroll .number span {
	transform-origin: bottom;
}
.quiz .container .questions .question .scroll .number span:before {
	content: counter(question);
    counter-increment: question;
    color: rgba(255,255,255,0.5);
}
.quiz .container .asking {
	margin-bottom: 40px;
	min-height: 160px;
}
.quiz .container .asking h2 {
	color: white;
	font-size: 40px;
	padding-right: 420px;
	line-height: 55px;
	letter-spacing: 3px;
}
.quiz .container .asking img {
	max-width: 200px;
	width: 100%;
	background: #fff;
	padding: 20px;
	border-radius: 10px;
	right: 200px;
	top: 0;
	position: absolute;
}
.quiz .container .answering {
	margin-top: 40px;
	counter-reset: answer;
	position: relative;
	perspective: 600px;
}
.quiz .container .answering .answers {
	width: calc(100% + 40px);
	position: relative;
	left: -20px;
	display: flex;
}
.quiz .container .answering .answer {
	flex: 1;
	padding: 20px;
	transition: all 0.5s;
	position: relative;
}
.quiz .container .answering .answer.correct {
	transform: rotateX(0deg);
	transform-style: preserve-3d;
	position: relative;
	z-index: 10;
}
.quiz .container .questions .question.show-result .answering .answer.correct {
	transform: rotateX(180deg);
}
.ie11 .quiz .container .questions .question.show-result .answering .answer.correct {
	transform: none;
}
.quiz .container .questions .question:not(.answered) .answering .answer:active {
	transform: scale(0.95);
}
.quiz .container .questions .question:not(.answered) .answering .answer:active .container {
	box-shadow: 0 20px 40px rgba(0,0,0,0.5);
	transition: all 0.5s !important;
}
.quiz .container .answering .answer .container {
	background: #fff;
	position: relative;
	padding: 20px 20px 20px 80px;
	cursor: pointer;
	border-radius: 10px;
	opacity: 0;
	visibility: hidden;
	top: -100px;
	backface-visibility: hidden;
	-webkit-backface-visibility: hidden;
	box-shadow: 0 40px 60px rgba(0,0,0,0.3);
}
.quiz .container .questions .question:not(.answered) .answering .answer:nth-child(1) .container {
	transition: all 0.5s 0.3s;
}
.quiz .container .questions .question:not(.answered) .answering .answer:nth-child(2) .container {
	transition: all 0.5s 0.6s;
}
.quiz .container .questions .question:not(.answered) .answering .answer:nth-child(3) .container {
	transition: all 0.5s 0.9s;
}
.quiz .container .answering .answer:nth-child(1) .container {
	transition: all 0.5s 0.0s;
}
.quiz .container .answering .answer:nth-child(2) .container {
	transition: all 0.5s 0.1s;
}
.quiz .container .answering .answer:nth-child(3) .container {
	transition: all 0.5s 0.2s;
}
.quiz .container .answering .answer:hover .container {
	background: #eee;
}
.quiz .container .answering .answer .container:before {
	content: counter(answer, upper-alpha);
    counter-increment: answer;
	position: absolute;
	color: grey;
	left: 20px;
	top: 20px;
	font-weight: bold;
	font-size: 40px;
	width: 40px;
	height: 32px;
	line-height: 32px;
	text-align: center;
	backface-visibility: hidden;
	-webkit-backface-visibility: hidden;
}
.quiz .container .questions .question.answered .answering .answer .container:before {
	color: #ccc;
}
.quiz .container .questions .question.answered .answering .answer.correct .container:before {
	color: #92D048;
}
.quiz .container .questions .question.incorrect .answering .answer.selected .container:before {
	color: #BF2828;
	content: '';
	display: block;
	background-image: url("../img/wrong.svg");
	background-size: contain;
	background-position: center;
	background-repeat: no-repeat;
}
.quiz .container .questions .question.correct .answering .answer.correct p.text:after {
	content: '';
	width: 22px;
	height: 22px;
	display: inline-block;
	margin-left: 10px;
	background-image: url("../img/correct.svg");
	background-size: contain;
	background-position: center;
	vertical-align: text-bottom;
}
.quiz .container .answering .answer p.text {
	margin: 0;
	font-weight: 600;
	line-height: 30px;
}
.quiz .container .answering .answer p.info {
	display: none;
	font-size: 14px;
	text-transform: uppercase;
	color: #0E2C6D;
}
.quiz .container .answering .answer p.info:after {
	content: '';
	width: 14px;
	height: 14px;
	display: inline-block;
	margin-left: 10px;
	background-image: url("../img/arrow_blue.svg");
	background-size: contain;
	background-position: center;
	vertical-align: middle;
}
.quiz .container .questions .question.answered.incorrect .answering .answer p.info {
	display: block;
}
.quiz .container .questions .question.answered .answering .answer p.text {
	color: #ccc;
}
.quiz .container .questions .question.answered .answering .answer.correct p.text {
	color: #000;
}
.quiz .container .answering > .controls {
	display: none;
	text-align: center;
	margin: 20px 0;
}
.quiz .container .questions .question.answered .answering > .controls {
	display: block;
}
.quiz .container .questions .question.show-result .answering > .controls {
	display: none;
}
.quiz .container .answering .result {
	background: #fff;
	border-radius: 10px;
	position: absolute;
	padding: 20px;
	min-height: 100%;
	margin-bottom: 20px;
	transform: rotateX(180deg);
	transform-origin: top;
	width: calc(300% - 40px);
	backface-visibility: hidden;
	-webkit-backface-visibility: hidden;
	overflow: hidden;
}
.ie11 .quiz .container .answering .result {
	backface-visibility: visible;
	display: none;
	transform: none;
	top: 0;
}
.ie11 .quiz .container .questions .question.show-result .answering .result {
	display: block;
}
.quiz .container .questions .question .answering .answer:nth-child(2) .result {
	left: calc(-100% + 20px);
}
.quiz .container .questions .question .answering .answer:nth-child(3) .result {
	left: calc(-200% + 20px);
}
.quiz .container .answering .result .controls:after {
	content: '.';
	display: block;
	clear: both;
	visibility: hidden;
	height: 0;
}
.quiz .container .answering .result .controls a {
	cursor: pointer;
}
.quiz .container .answering .result .controls .back img {
	height: 30px;
	padding: 5px 0;
}
.quiz .container .answering .result .controls .next {
	float: right;
	margin: 0;
}
.quiz .container .answering .result .letter {
	position: absolute;
	left: 0;
	top: 0;
}
.quiz .container .answering .result .letter span {
	color: #92D048;
	text-transform: uppercase;
	font-weight: bold;
	width: 40px;
	height: 40px;
	line-height: 40px;
	text-align: center;
	font-size: 40px;
}
.quiz .container .answering .result .text {
	padding-left: 60px;
	position: relative;
	line-height: 28px;
}
.quiz .container .answering .result .image {
	position: absolute;
	width: calc(50% - 20px);
	right: 0;
	top: 0;
	height: 100%;
	background-size: cover;
	background-position: center;
}
.quiz .container .answering .result .image + .text {
	padding-right: 50%;
}
.quiz .container .answering .result .image + .text + .controls {
	padding-right: 50%;
}
.quiz .container .answering .result .text .headline {
	margin-top: 0;
	font-weight: bold;
}
.quiz .container .answering .result .text .description {
	min-height: 100px;
}
.quiz .container .questions .question.correct .answering .result .text .headline:after {
	content: '';
	width: 22px;
	height: 22px;
	display: inline-block;
	margin-left: 10px;
	background-image: url("../img/correct.svg");
	background-size: contain;
	background-position: center;
}
.quiz .container .statistics {
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	padding: 0 20px 20px 20px;
}
.quiz .container .statistics > div,
.quiz .container .statistics .status-container {
	border-radius: 10px;
}
.quiz .container .statistics > div {
	background: #fff;
	position: relative;
}
.quiz .container .statistics .status-container {
	position: absolute;
	width: 100%;
	height: 100%;
	overflow: hidden;
}
.quiz .container .statistics .status {
	width: 100%;
	height: 3px;
	background: #ccc;
	position: relative;
}
.quiz .container .statistics .status .bar {
	position: absolute;
	top: 0;
	left: 0;
	height: 100%;
	width: 0;
	background: #024698;
	transition: width 0.5s;
}
.quiz .container .statistics .overview,
.quiz .container .statistics .answers,
.quiz .container .statistics .index {
	display: inline-block;
	padding: 10px;
}
.quiz .container .statistics .overview p {
	margin: 0;
	line-height: 30px;
	padding: 0 20px 0 10px;
	border-right: 1px solid #ccc;
	position: relative;
	font-weight: 600;
}
.quiz .container .statistics .index {
	float: right;
	position: relative;
}
.quiz .container .statistics .index .icon {
	background-image: url("../img/list.svg");
	background-size: contain;
	background-position: center;
	vertical-align: middle;
	width: 22px;
	height: 22px;
	display: block;
	margin: 4px;
	cursor: pointer;
}
.quiz .container .statistics .index .container {
	position: absolute;
	bottom: 150%;
	right: 0;
	padding-bottom: 20px;
	width: 300px;
	min-height: 400px;
	visibility: hidden;
	opacity: 0;
	transition: all 0.5s;
	overflow: hidden;
}
.quiz .container .statistics .index.show .container {
	visibility: visible;
	opacity: 1;
	bottom: 100%;
}
.quiz .container .statistics .index .container:after {
	content: "";
	position: absolute;
	border-left: 10px solid transparent;
	border-right: 10px solid transparent;
	border-top: 10px solid #eee;
	right: 20px;
	bottom: 10px;
}
.quiz .container .statistics .index .pages {
	position: relative;
	width: 200%;
	height: 100%;
	left: 0;
	transition: left 0.5s;
}
.quiz .container .statistics .index .pages.show-page-2 {
	left: -100%;
}
.quiz .container .statistics .index .pages [class^='page'] {
	position: absolute;
	width: 50%;
	height: 100%;
	background: #eee;
}
.quiz .container .statistics .index .pages [class^='page'] + [class^='page'] {
	margin-left: 50%;
}
.quiz .container .statistics .index .pages [class^='page'] .head {
	padding: 20px;
	position: relative;
	background: #fff;
	z-index: 10;
}
.quiz .container .statistics .index .pages [class^='page'] .head .option {
	background-size: contain;
	background-position: center;
	vertical-align: middle;
	width: 22px;
	height: 22px;
	display: block;
	margin: 4px;
	position: absolute;
	right: 20px;
	top: 20px;
	cursor: pointer;
}
.quiz .container .statistics .index .pages [class^='page'] .head h2 {
	margin: 0;
}
.quiz .container .statistics .index .pages [class^='page'] .head .option.close {
	background-image: url("../img/close.svg");
}
.quiz .container .statistics .index .pages [class^='page'] .head .option.back {
	background-image: url("../img/back.svg");
}
.quiz .container .statistics .index .pages [class^='page'] .body {
	overflow: auto;
	position: absolute;
	top: 69px;
	height: calc(100% - 69px);
	width: 100%;
}
.quiz .container .statistics .index .pages [class^='page'] .body .scroll {
	padding: 20px;
}
.quiz .container .statistics .index .pages .page-2 .body .question {
	text-transform: uppercase;
	font-weight: bold;
}
.quiz .container .statistics .index .pages .page-2 .body .question img {
	display: block;
	width: 100%;
	border: 10px solid #fff;
	box-sizing: border-box;
	margin-top: 10px;
}
.quiz .container .statistics .index .pages .page-2 .body .answer {
	position: relative;
	padding: 20px 0;
	border-top: 1px solid #ccc;
	border-bottom: 1px solid #ccc;
	min-height: 80px;
}
.quiz .container .statistics .index .pages .page-2 .body .answer .letter {
	color: #92D048;
	text-transform: uppercase;
	font-weight: bold;
	width: 30px;
	height: 40px;
	line-height: 40px;
	text-align: center;
	font-size: 40px;
	position: absolute;
	left: 0;
	margin: 0;
}
.quiz .container .statistics .index .pages .page-2 .body .answer .text {
	margin: 0;
	padding-left: 50px;
	font-weight: bold;
}
.quiz .container .statistics .index .pages ul {
	margin: 0;
	padding: 0;
	list-style: none;
	position: relative;
}
.quiz .container .statistics .index .pages ul li {
	width: 100%;
	line-height: 30px;
	padding-top: 10px;
	margin-top: 10px;
	border-top: 1px solid #ccc;
	position: relative;
}
.quiz .container .statistics .index .pages ul li:first-child {
	padding-top: 0;
	margin-top: 0;
	border-top: none;
}
.quiz .container .statistics .index .pages ul li.show {
	font-weight: bold;
}
.quiz .container .statistics .index .pages ul li .show-question {
	float: right;
	width: 22px;
	height: 22px;
	margin: 4px;
	background-image: url("../img/arrow_blue.svg");
	background-size: contain;
	background-position: center;
	vertical-align: middle;
	cursor: pointer;
	display: none;
}
.quiz .container .statistics .index .pages ul li.answered .show-question {
	display: inline-block;
}
.quiz .container .statistics .index .pages ul li.answered:after {
	content: '';
	position: absolute;
	right: 50px;
	bottom: 0;
	width: 22px;
	height: 22px;
	display: inline-block;
	background-size: contain;
	background-position: center;
	vertical-align: bottom;
	margin: 4px;
}
.quiz .container .statistics .index .pages ul li.correct:after {
	background-image: url("../img/correct.svg");
}
.quiz .container .statistics .index .pages ul li.incorrect:after {
	background-image: url("../img/wrong.svg");
}
.quiz .container .statistics .answers p {
	display: inline-block;
	margin: 0;
	line-height: 30px;
	font-weight: 600;
}
.quiz .container .statistics .answers .correct:before {
	content: '';
	width: 22px;
	height: 22px;
	display: inline-block;
	margin-right: 10px;
	background-image: url("../img/correct.svg");
	background-size: contain;
	background-position: center;
	vertical-align: text-bottom;
}
.quiz .container .statistics .answers .wrong:before {
	content: '';
	width: 22px;
	height: 22px;
	display: inline-block;
	margin-right: 10px;
	background-image: url("../img/wrong.svg");
	background-size: contain;
	background-position: center;
	vertical-align: middle;
}
.quiz .container .statistics .answers .wrong {
	margin-left: 10px;
}

/* Links */
.links {
	position: absolute;
	right: 50px;
	bottom: 20px;
	font-size: 14px;
}
.links a {
	color: #fff;
	text-decoration: none;
}


/* Laptop */
@media screen and (max-width: 1200px) {
	
	.quiz .container {
		max-width: 1200px;
	}
	.quiz .container .statistics {
		padding: 0 10px 20px 10px;
	}
	.quiz .container .asking h2 {
		font-size: 30px;
		line-height: 46px;
		padding-right: 350px;
		letter-spacing: 2px;
	}
	.quiz .container .asking img {
		right: 150px;
	}
	.quiz .container .questions .question {
		padding: 50px 10px 10px 10px;
	}
	.quiz .container .questions .question .scroll .number span {
		line-height: 80px;
		height: 80px;
		font-size: 100px;
	}
}

/* Tablet landscape */
@media screen and (max-width: 1024px) {

	.video {
		display: none;
	}

	.quiz .container .questions .question {
	    overflow-y: scroll; /* has to be scroll, not auto */
	    -webkit-overflow-scrolling: touch;
	}
}

/* Tablet portrait */
@media screen and (max-width: 980px) {
	
	.quiz .container {
		max-width: 1000px;
	}
	.quiz .container .asking h2 {
		font-size: 24px;
		line-height: 40px;
		padding-right: 200px;
	}
	.quiz .container .answering .answer .container:before {
		width: 22px;
		height: 22px;
		line-height: 22px;
		font-size: 20px;
	}
	.quiz .container .answering .answer .container {
		padding: 20px 20px 20px 60px;
	}
	.quiz .container .answering .answer p.text {
		line-height: 26px;
	}
	.quiz .container .answering .answers {
		display: block;
		width: 100%;
		left: 0;
	}
	.quiz .container .answering .answer {
		padding: 20px 0;
	}
	.quiz .container .answering .result {
		width: 100%;
		left: 0 !important;
	}
	.quiz .container .answering .result .image {
		position: static;
		width: 100%;
		height: 250px;
		background-size: cover;
		background-position: center;
		margin-bottom: 20px;
	}
	.quiz .container .answering .result .image + .text,
	.quiz .container .answering .result .image + .text + .controls {
		padding-right: 0;
	}
	.quiz .container .answering > .controls {
		margin-top: 0;
	}
	.quiz .container .asking img {
		margin-top: 20px;
		position: static;
	}
}

/* Mobile */
@media screen and (max-width: 812px) {

	body {
		padding: 10px;
		font-size: 14px;
	}
	.game .splash:before {
		background-size: 500px;
	}
	.game > .controls.hide {
		top: -340px;
	}
	.game > .controls {
		height: 340px;
		margin-top: -170px;
	}
	.game .splash .logo {
		bottom: 10px;
	}
	.game .splash .text {
		padding: 10px;
	}
	.game .splash .text h1 {
		margin-bottom: 20px;
	}
	.game .splash .text .button {
		margin-top: 10px;
	}

	.quiz .container .statistics {
		padding: 0;
	}
	.quiz .container .statistics .overview p {
		padding: 0 15px 0 5px;
	}
	.quiz .container .statistics > div,
	.quiz .container .statistics .status-container {
		border-radius: 0;
	}
	.quiz .container .statistics .index {
		padding: 10px 10px 10px 0;
	}
	.quiz .container .statistics .answers {
		padding: 10px 0;
	}
	.quiz .container .statistics .index .container {
		width: calc(100vw - 20px);
	}
	.quiz .container .statistics .index .pages [class^='page'] .body {
	    overflow-y: scroll; /* has to be scroll, not auto */
	    -webkit-overflow-scrolling: touch;
	}
	.quiz .container .asking h2 {
		padding-right: 80px;
		line-height: 35px;
		font-weight: 600;
	}
	.quiz .container .asking img {
		max-width: none;
	}
	.quiz .container .questions .question .scroll .number span {
		line-height: 55px;
		height: 55px;
		font-size: 60px;
	}
	.not_mobile {
		display: none;
	}
	.links {
		display: none;
	}
}

@media screen and (max-width: 414px) and (orientation: portrait) {
	
}

/* iPhone 5/5S/SE */
@media only screen 
and (min-device-width : 320px) 
and (max-device-width : 568px) 
and (orientation : landscape) {
	
	
}
