@charset "UTF-8";
@font-face {
	font-family: "Foco";
	src: url("fonts/foco_blkit.woff2") format("woff2");
	font-display: swap;
	font-weight: 900;
	font-style: italic;
}
body, body * {
	vertical-align: baseline;
	border: 0 none;
	outline: 0;
	padding: 0px;
	margin: 0px;
	font-family: "Foco";
	box-sizing: border-box;
}

main{
	max-width: 640px;
	width: 100%;
	height: 360px;
	overflow: hidden;
	position: relative;
}

.paper{
	width: 12800px;
	height: 122px;
	position: relative;
	left: 0;
	background-image: url('images/paper.png');
	background-repeat: repeat-x;
	background-position: left top;
}

.image{
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	width: 100%;
	height: 360px;
	background-repeat: no-repeat;
	background-size: 640px auto;
	background-position: center bottom;
}

.image_1{
	background-image: url('images/image_1.jpg')
}

.image_2{
	background-image: url('images/image_2.jpg')
}

.image_3{
	background-image: url('images/image_3.jpg')
}

.image_4{
	background-image: url('images/image_4.jpg')
}

.image_5{
	background-image: url('images/image_5.jpg')
}

.image_6{
	background-image: url('images/image_6.jpg')
}

.image_7{
	background-image: url('images/image_7.jpg')
}

.image_8{
	background-image: url('images/image_8.jpg')
}

.image_9{
	background-image: url('images/image_9.jpg')
}

.image_10{
	background-image: url('images/image_10.jpg')
}

.end{
	background-image: url('images/end.jpg')
}

.question{
	text-align: center;
	font-weight: 900;
	font-style: italic;
	font-family: 'Foco', sans-serif;
	color: #324977;
	font-size: clamp(1.25rem, 0.6364rem + 3.4091vw, 2rem);
	position: absolute;
	top: 19px;
	left: 0;
	right: 0;
	text-transform: uppercase;
}

.question[data-count="4"]{
	font-size: clamp(1.125rem, 0.8182rem + 1.7045vw, 1.5rem);
}

.question[data-count="7"]{
	font-size: clamp(1.1875rem, 0.625rem + 3.125vw, 1.875rem);
}

.answers{
	width: 100%;
	top: 131px;
	left: 0;
	right: 0;
	position: absolute;
}

.answers .answer{
	background-repeat: no-repeat;
	position: absolute;
	cursor: pointer;
	transition: 0.2s all;
}

.answers .answer.true{
	width: 215px;
	height: 91px;
	background-image: url('images/true.png');
	background-size: 215px 91px;
	top: 5px;
	left: 94px;
	cursor: pointer;
}

.answers .answer.false{
	width: 202px;
	height: 94px;
	background-image: url('images/false.png');
	background-size: 202px 94px;
	top: 0;
	left: 324px;
}

.answers .answer.crumble{
	background-image: url('images/crumble.png');
	background-size: 92px 82px;
	background-position: center center;
	background-repeat: no-repeat;
}

.answers .answer:hover{
	transform: scale(1.05);
}

.gradient{
	width: 640px;
	height: 83px;
	background-image: url('images/gradient.png');
	background-repeat: repeat-x;
	background-position: left bottom;
	background-size: auto 100%;
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
}

.logo{
	background-image: url('images/zewa-logo.png');
	background-repeat: no-repeat;
	background-size: 185px 49px;
	position: absolute;
	top: 290px;
	left: 24px;
	width: 185px;
	height: 49px;
	filter: drop-shadow(0px 0px 6px #000000)
}

.tomato{
	background-repeat: no-repeat;
	position: absolute;
	bottom: 0;
	width: 640px;
	height: 360px;
	background-size: 640px 360px;
}

.tomato.true{
	background-image: url('images/tomato-true.png');
}

.tomato.false{
	background-image: url('images/tomato-false.png');
}

.end{
	width: 100%;
	height: 360px;
	background-image: url('images/end.jpg');
	background-size: 640px 360px;
	background-position: center top;
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	display: none;
}

.loader{
	position: absolute;
	display: flex;
	justify-content: center;
	align-items: center;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	background-color: #fff;
}

.disabled{
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	display: none;
}

@media screen and (max-width: 640px){
	.answers{
		display: flex;
		justify-content: center;
		gap: 10px;
	}
	.answers .answer{
		position: static;
	}
	.answers .answer.true{
		width: 150px;
		height: 63px;
		background-size: 150px 63px;
	}
	.answers .answer.false{
		width: 148px;
		height: 69px;
		background-size: 148px 69px;
	}
	.answers .answer.crumble{
		background-size: 65px 60px;
	}
	.tomato{
		width: 120%;
		background-position: center top;
	}
	.tomato.false{
		left: -80px;
	}
}


@media screen and (max-width: 420px){
	.question{
		top: 6px;
	}
	.logo{
		transform: scale(0.8);
    	transform-origin: 0px 100%;
	}
}

@media screen and (max-width: 320px){
	.answers .answer.true{
		width: 125px;
		height: 56px;
		background-size: 125px 56px;
	}
	.answers .answer.false{
		width: 124px;
		height: 62px;
		background-size: 124px 62px;
	}
	.answers .answer.crumble{
		background-size: 40px 40px;
	}
	.logo{
		transform: scale(0.7);
    	transform-origin: 0px 100%;
	}
}