:root {
	--color-red: #b50d14;
	--color-dark-dark: #565656;
	--color-dark-light: #d3d3d3;
	--color-light-dark: #f7f7f7;
	--color-light-light: #ffffff;
	--color-yellow: #ffe500;
	--color-yellow-light: #FFE600;
	--color-blue-light: #99BCE3;
	--focus-outline: 3px solid rgb(94, 158, 214);
}

/* GLOBALS */
body, html {
	margin: 0px;
	padding: 0px;
	font-family: 'Roboto', sans-serif;
	font-style: normal;
	font-weight: 400;
	letter-spacing: 0.3px;
	background-color: var(--color-light-dark);
	font-size: 16px;
}

::-ms-clear {
	display: none;
}

*:focus {
/*	outline: none;*/
}

* {
	-webkit-locale: auto !important;
	white-space: normal !important;
}

*:focus {
	outline: var(--focus-outline);
}

a {
	text-decoration: none;
	color: inherit;
}

p a {
	text-decoration: underline;
	color: rgb(0,0,0);
	font-weight: bold;
}

h1, h2, h3, h4, p {
	margin-top: 0px;
	margin-bottom: 0px;
}

h2 {
	font-size: 32px;
}

h3 {
	font-size: 24px;
}

.bold {
	font-weight: bold;
}

.red {
	color: var(--color-red);
}

.content-wrapper {
	width: 100%;
	max-width: 1224px;
	padding-left: 40px;
	padding-right: 40px;
	box-sizing: border-box;
	margin-left: auto;
	margin-right: auto;
	position: relative;
}

.content-wrapper.no-padding {
	padding-left: 0px;
	padding-right: 0px;
}

/* CHECKBOX */
[type="checkbox"]:not(:checked),
[type="checkbox"]:checked {
	position: absolute;
	left: 0;
	opacity: 0.01;
}

[type="checkbox"]:not(:checked) + label,
[type="checkbox"]:checked + label {
	position: relative;
	padding-left: 2.3em;
	font-size: 16px;
	cursor: pointer;
	margin-top: 20px;
}

label a {
	font-weight: bold;
	text-decoration: underline;
}

/* checkbox aspect */
[type="checkbox"]:not(:checked) + label:before,
[type="checkbox"]:checked + label:before {
	content: '';
	position: absolute;
	left: 0;
	top: 0;
	width: 1.4em;
	height: 1.4em;
	border: 1px solid #aaa;
	background: #FFF;
	border-radius: .2em;
	box-shadow: inset 0 1px 2px rgba(0,0,0, .1), 0 0 0 rgba(94, 158, 214, .7);
	-webkit-transition: all .275s;
			transition: all .275s;
}

label.focused:before {
	border: var(--focus-outline) !important;
}

/* checked mark aspect */
[type="checkbox"]:not(:checked) + label:after,
[type="checkbox"]:checked + label:after {
	content: '√';
	position: absolute;
	top: .525em;
	left: .18em;
	font-size: 1.375em;
	color: var(--color-dark-dark);
	line-height: 0;
	-webkit-transition: all .2s;
			transition: all .2s;
}

/* checked mark aspect changes */
[type="checkbox"]:not(:checked) + label:after {
	opacity: 0;
	-webkit-transform: scale(0) rotate(45deg);
			transform: scale(0) rotate(45deg);
}

[type="checkbox"]:checked + label:after {
	opacity: 1;
	-webkit-transform: scale(1) rotate(0);
			transform: scale(1) rotate(0);
}

/* Disabled checkbox */
[type="checkbox"]:disabled:not(:checked) + label:before,
[type="checkbox"]:disabled:checked + label:before {
	box-shadow: none;
	border-color: #bbb;
	background-color: #e9e9e9;
}

[type="checkbox"]:disabled:checked + label:after {
	color: #777;
}

[type="checkbox"]:disabled + label {
	color: #aaa;
}

/* Accessibility */
[type="checkbox"]:checked:focus + label:before,
[type="checkbox"]:not(:checked):focus + label:before {
	box-shadow: inset 0 1px 1px rgba(0,0,0, .1), 0 0 0 2px rgba(255, 255, 255, .2);
}


/* TITLE */
.title {
	height: 76px;
}

.title a.logo {
	height: 76px;
	display: inline-block;
}

.title a.logo img {
	background-color: var(--color-yellow);
	height: 76px;
	box-sizing: border-box;
	padding: 6px 3px;
}

.title ul {
	list-style: none;
	padding: 0px;
	margin: 0px;
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	right: 0px;
	padding-right: inherit;
}

.title ul li {
	display: inline;
	padding-right: 20px;
}

.title ul li:last-child {
	padding-right: 0px;
}

.title ul li a {
	color: var(--color-dark-dark);
}

/* TITLE CLAIM */
.title-claim {
	height: 50px;
	background-color: var(--color-red);
	background-image: url("/assets/gfx/banner-top.png");
	background-size: auto 40%;
	background-position: center center;
	background-repeat: repeat-x;
}

/* VISUAL */
.visual {
	padding-top: 10px;
	padding-bottom: 10px;
}

.visual img {
	width: 100%;
	position: relative;
}

.visual h1 {
	position: absolute;
	left: 50%;
	top: 50%;
	max-width: 1224px;
	transform: translate(-50%, -50%);
}

/* HOWTO */
.howto {
	margin-top: 40px;
}

.howto ul.points {
	display: grid;
	list-style: none;
	grid-template-columns: 1fr 1fr 1fr;
	padding: 0px;
	margin: 0px;
	box-sizing: border-box;
	column-gap: 20px;
	row-gap: 30px;
	background-color: var(--color-yellow-light);
	border-radius: 5px;
	padding: 40px 20px;
	margin-top: 10px;
}

.howto ul.points li {
	position: relative;
	text-align: center;
	box-sizing: border-box;
	border: 1px solid var(--color-red);
	border-radius: 5px;
	padding: 30px 10px 10px 10px;
	background-color: var(--color-light-light);
}

.howto ul.points li p {
	color: var(--color-red);
}

.howto ul.points li h3 {
	color: var(--color-light-light);
	background-color: var(--color-red);
	position: absolute;
	left: 50%;
	transform: translateX(-50%);
	width: 40px;
	aspect-ratio: 1/1;
	border-radius: 50%;
	line-height: 1.6;
	top: -20px;
}


/* APP */
.app {
	padding-top: 40px;
	padding-bottom: 20px;
}

.app p {
	text-align: center;
	margin-bottom: 20px;
}

.app h2 {
	text-align: center;
	margin-bottom: 14px;
}

.app ul {
	margin: 0px;
	padding: 0px;
	display: grid;
	grid-template-columns: 1fr;
	column-gap: 20px;
	list-style: none;
	position: relative;
}

.app ul li {
	position: relative;
}

.app ul li:last-child {
	text-align: center;
}

.app ul li:last-child p {
	color: var(--color-red);
	margin-top: 5px;
	font-size: smaller;
}

.app ul a {
	margin-left: 5px;
	margin-right: 5px;
}

.app ul a img {
	height: 40px;
}



/* PRIZES */
.prizes {
	padding-top: 40px;
	padding-bottom: 10px;
}

.prizes ul {
	background-color: var(--color-light-light);
	display: grid;
	grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
	row-gap: 20px;
	column-gap: 20px;
	padding: 0px;
	margin: 0px;
	padding: 20px;
	margin-top: 10px;
	border-radius: 10px;
	list-style: none;
}

.prizes ul li {
	max-width: 100%;
	overflow: hidden;
}

.prizes ul li .prize {
	width: 100%;
	border-radius: 10px;
	position: relative;
	aspect-ratio: 3/5;
	background-image: url("/assets/gfx/prize-background.png");
	background-size: 100% 100%;
	margin-bottom: 20px;
}

.prizes ul li .prize img {
	position: absolute;
	width: 90%;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
}

.prizes ul li p {
	font-weight: 600;
	hyphens: auto;
	word-wrap: break-word;
}

/* FAQ */
.faq {
	padding-top: 40px;
	padding-bottom: 40px;
}

.faq ul {
	background-color: var(--color-light-light);
	padding: 0px;
	margin: 0px;
	padding: 10px 20px 20px 20px;
	margin-top: 10px;
	border-radius: 10px;
	list-style: none;
}

.faq ul li a.question {
	position: relative;
	color: var(--color-red);
	border-bottom: 1px solid var(--color-dark-dark);
	font-size: larger;
	padding-bottom: 7px;
	margin-bottom: 7px;
	margin-top: 10px;
	font-weight: 700;
	display: block;
	padding-right: 25px;
	box-sizing: border-box;
}

.faq ul li a.question img {
	position: absolute;
	right: 0px;
	top: 1px;
	height: 20px;
	animation: rotate 200ms;
	transform: rotate(-90deg);
}

.faq ul li a.question.open img {
	transform: rotate(0deg);
}

.faq ul li p.answer {
	display: none;
	margin-bottom: 25px;
}

/* ERROR */
p.error {
	text-align: left;
	margin-top: 6px;
	margin-bottom: 0px !important;
	display: none;
	color: var(--color-red);
}

p.error.center {
	text-align: center;
}

/* PARTICIPATE */
.participate {
	padding-top: 40px;
	padding-bottom: 40px;
}

.participate .box {
	border-radius: 10px;
	box-sizing: border-box;
	width: 100%;
	max-width: 660px;
	margin-left: auto;
	margin-right: auto;
	position: relative;
	background-color: var(--color-blue-light);
}

.participate .box .notice {
	background-color: var(--color-red);
	box-sizing: inherit;
	padding: 10px 20px;
	color: var(--color-light-light);
	text-align: center;
	font-size: small;
	position: relative;
	border-top-left-radius: 10px;
	border-top-right-radius: 10px;
}

.participate .box .inner-box-container {
	box-sizing: border-box;
	padding: 20px 50px;
	text-align: center;
}

.participate .box .inner-box-container h3 {
	color: var(--color-red);
	margin-bottom: 20px;
}

.participate .box .inner-box-container p {
	font-size: small;
	margin-bottom: 20px;
}

.participate input[type="email"],
.participate input[type="text"] {
	width: 100%;
	border: none;
	box-sizing: border-box;
	padding: 10px 30px;
	font-family: 'Roboto', sans-serif;
	font-style: normal;
	color: var(--color-dark-dark);
	font-size: 20px;
}

.participate .subline {
	margin-top: 40px;
	text-align: center;
}

.participate .button {
	margin-left: auto;
	margin-right: auto;
	display: block;
	margin-top: 40px;
}

.participate input[type="email"].error {
	background-color: var(--color-red);
	color: var(--color-light-light);
}

.participate input[type="email"].error::placeholder {
	color: var(--color-light-light);
}

.participate p.subline {
	font-size: 22px;
}

.participate .inner-box-container label {
	text-align: left;
	width: 100%;
	margin-bottom: 4px;
	padding-left: 30px;
	display: inline-block;
	box-sizing: border-box;
}

/* RECEIPT */
#receipt-container {
	background-color: var(--color-yellow-light);
	margin-top: 40px;
	box-sizing: border-box;
	padding: 20px;
}

#receipt-container ul {
	list-style: none;
	padding: 0px;
	margin: 0px;
	display: grid;
	grid-template-columns: 1fr 3fr;
	column-gap: 20px;
}

#receipt-container ul li {
	position: relative;
}

#receipt-container #btn-receipt {
	border-radius: 50%;
	aspect-ratio: 1/1;
	border: 3px solid var(--color-light-light);
	width: 100%;
	padding: 30px;
}

#receipt-container #btn-receipt div img {
	margin-top: 10px;
	width: 35%;
}

#receipt-container ul li:last-child div {
	background-image: url("/assets/gfx/receiptinfo-background.png");
	background-size: 100% 100%;
	box-sizing: border-box;
	padding: 2% 2% 2% 17%;
	font-size: 12px;
	position: absolute;
	top: 50%;
	left: 0px;
	transform: translateY(-50%);
}

#receipt-container #receipt {
	display: none;
}

/* BUTTON */
.button,
button {
	border-radius: 20px;
	font-size: 22px;
	color: var(--color-light-light);
	background-color: var(--color-red);
	border: none;
	font-weight: bold;
	box-sizing: border-box;
	padding: 10px 30px;
	cursor: pointer;
}

/* TEXT */
.text {
	margin-top: 50px;
}

.text.center {
	text-align: center;
}

.text p {
	margin-top: 10px;
	font-weight: 400;
}

/* TEASER */
.teaser {
	padding-bottom: 40px;
}

.teaser img {
	width: 100%;
	border: none;
	border-radius: 10px;
	margin-top: 10px;
}

.teaser h2,
.teaser p {
}

/* FOOTER */
.footer {
	text-align: center;
	padding-top: 70px;
	padding-bottom: 70px;
	color: var(--color-dark-dark);
	background-color: var(--color-dark-light);
}

.footer ul {
	padding: 0px;
	margin: 0px;
	margin-bottom: 30px;
	list-style: none;
}

.footer ul li {
	display: inline-block;
	padding-right: 10px;
	padding-left: 10px;
}

.footer ul li a {
	color: var(--color-red);
	font-weight: 600;
	line-height: 2;
}

.footer p.subline {
	font-size: 14px;
	line-height: 1.5;
}

/* FINAL */
.final {
	max-width: 800px;
	margin-top: 40px;
	margin-bottom: 4px;
}

.final .wheel-wrapper {
	border: 4px solid var(--color-red);
	border-radius: 10px;
	background-color: var(--color-blue-light);
	text-align: center;
	padding: 20px;
	box-sizing: border-box;
}

.final .wheel-wrapper h2 {
	color: var(--color-red);
}

.final .wheel-wrapper .wheel-container {
	width: 100%;
	margin-top: 20px;
	position: relative;
	width: 100%;
	max-width: 800px;
	margin-left: auto;
	margin-right: auto;
	background-image: url("/assets/gfx/wheel-background.png");
	background-size: 100% 100%;
	background-repeat: no-repeat;
	background-position: center center;
	padding: 3%;
	box-sizing: border-box;
}

.final .wheel-wrapper .wheel-container img {
	width: 100%;
	position: relative;
}

.final .wheel-wrapper .wheel-container img.front {
	position: absolute;
	top: 0px;
	left: 0px;
	width: 100%;
	height: 100%;
}

.final .wheel-wrapper #btn-wheel {
	margin-top: 20px;
	display: inline-block;
}

.final .wheel-wrapper #btn-wheel.disabled {
	opacity: 0.6;
}

.final .wheel-wrapper .wheel-result {
	margin-top: 20px;
	display: none;
	max-width: 500px;
	margin-left: auto;
	margin-right: auto;
}

.final .wheel-wrapper p.text {
	box-sizing: border-box;
	padding: 10px;
	margin-top: 10px;
	margin-bottom: 10px;
	background-color: var(--color-light-light);
	border-radius: 10px;
}

/* RESPONSIVES */
@media screen and (max-width: 1125px) {

	.prizes ul li p {
		-ms-word-break: break-all;
		word-wrap: break-word;
		overflow-wrap: break-word;
		-webkit-hyphens: auto;
		-moz-hyphens: auto;
		hyphens: auto;
	}

	.howto ul.app {
		grid-template-columns: 1fr;
		row-gap: 20px;
	}

	.howto ul.app {
		max-width: 550px;
		margin-left: auto;
		margin-right: auto;
	}

}

@media screen and (max-width: 840px) {

	.title ul li:not(:last-child) {
		display: none;
	}

	.title, 
	.title a.logo img,
	.title a.logo {
		height: 60px;
	}

}

@media screen and (max-width: 740px) {

	.prizes ul {
		grid-template-columns: 1fr 1fr;
	}

	.content-wrapper {
		padding-left: 20px;
		padding-right: 20px;
	}

	.title-claim {
		height: 40px;
	}

}

@media screen and (max-width: 550px) {

	#receipt-container ul {
		grid-template-columns: 1fr;
		row-gap: 20px;
	}

	#receipt-container ul li:last-child div {
		background-image: none;
		position: relative;
		text-align: center;
		padding: 0px;
		background-color: var(--color-light-light);
		box-sizing: border-box;
		padding: 8px;
		border-radius: 10px;
	}

	#receipt-container #btn-receipt {
		max-width: 200px;
	}

	#receipt-container ul li {
		text-align: center;
	}

	.prizes ul li p {
	}

}

@media screen and (max-width: 520px) {

	.content-wrapper {
		padding-left: 10px;
		padding-right: 10px;
	}

	.prizes ul {
		grid-template-columns: 1fr 1fr;
	}

	.footer {
		padding-top: 40px;
		padding-bottom: 40px;
	}

	.howto ul.points {
		grid-template-columns: 1fr;
	}

	.visual .content-wrapper {
		padding-left: 0px;
		padding-right: 0px;
	}

	h2 {
		font-size: 26px;
	}
	
	h3 {
		font-size: 20px;
	}

	.participate .box .inner-box-container {
		padding-left: 10px;
		padding-right: 10px;
	}

	.title-claim {
		height: 32px;
	}

}

@media all and (max-width: 450px) {

	.title-claim {
		height: 24px;
	}

}
