:root {
	--font-family: "Wonder",Helvetica,Arial,sans-serif;
	--color-red: rgb(210, 0, 15);
	--color-white: rgb(255,255,255);
	--color-black: rgb(51, 51, 51);
	--color-blue: rgb(126,193,235);
	--color-middlegrey: rgb(226,219,210);
	--color-lightergrey: rgb(244,241,237);
}


/* GENERALS */
html, body {
	background-color: var(--color-red);
	color: var(--color-white);
	padding: 0px;
	margin: 0px;
	font-weight: 300;
	line-height: 1.4;
	font-family: var(--font-family);
	font-size: 16px;
}



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

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

a img {
	border: none;
}


h1, h2, h3 {
	font-weight: 700;
}

h2 {
	margin-top: 0px;
	margin-bottom: 20px;
}

.smaller {
	font-size: x-small;
	line-height: 1.4;
}

.bold {
	font-weight: 700;
}



/* TITLE */
.title {
	background-color: var(--color-lightergrey);
	border-bottom: 1px solid var(--color-middlegrey);
	text-align: center;
	padding-top: 10px;
	padding-bottom: 10px;
}

.title img {
	height: 50px;
}



/* VISUAL */
.visual {
	background-color: var(--color-lightergrey);
	text-align: center;
	padding-top: 40px;
	padding-bottom: 40px;
}

.visual .visual-container {
	width: 100%;
	max-width: 700px;
	aspect-ratio: 1/1.21;
	margin-left: auto;
	margin-right: auto;
	background-image: url("/assets/gfx/visual-background.png");
	background-repeat: no-repeat;
	background-position: center top;
	background-size: 100% auto;
	position: relative;
}

.visual .visual-container img {
	position: absolute;
}

.visual .visual-container img.slogan {
	width: 80%;
	left: 10%;
	bottom: 0px;
}

.visual .visual-container img.toniebox {
	width: 84%;
	top: 5%;
	left: 8%;
	transform: scale(0.95);
}






/* HOWTO */
.howto {
	padding-top: 60px;
	padding-bottom: 60px;
	text-align: center;
	position: relative;
	overflow: hidden;
}

.howto h2 {
	color: var(--color-red);
	background-color: var(--color-white);
	border-radius: 30px;
	box-sizing: border-box;
	padding: 6px 80px;
	display: inline-block;
}

.howto ul {
	list-style: none;
	display: grid;
	grid-template-columns: 1fr 1fr 1fr;
	column-gap: 40px;
	padding: 0px;
	margin: 0px;
	font-size: 22px;
	margin-top: 40px;
	margin-bottom: 40px;
	margin-left: auto;
	margin-right: auto;
	max-width: 600px;
}

.howto ul li img {
	height: 120px;
}

.howto p.subline {
	max-width: 540px;
	margin-left: auto;
	margin-right: auto;
	font-weight: 500;
}

.howto p.subline.smaller {
	font-weight: 300;
}

.howto img.p1 {
	position: absolute;
	left: 50%;
	bottom: -94px;
	width: 200px;
	margin-left: 300px;
}






/* PARTICIPARTE */
.participate {
	position: relative;
	padding-top: 60px;
	padding-bottom: 60px;
	background-color: var(--color-lightergrey);
	border-top-left-radius: 40px;
	border-top-right-radius: 40px;
	color: var(--color-black);
	text-align: center;
	overflow: hidden;
}

.participate .content-wrapper {
	max-width: 600px;
}

.participate p {
}

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

.participate img.p2 {
	position: absolute;
	width: 320px;
	left: 50%;
	margin-left: -900px;
	bottom: -240px;
}

.participate .form-wrapper {
	max-width: 460px;
	margin-left: auto;
	margin-right: auto;
}

.participate input[type="text"],
.participate input[type="email"] {
	width: 100%;
	box-sizing: border-box;
	padding: 10px 20px;
	border-radius: 2px;
	font-family: var(--font-family);
	border: 1px solid var(--color-middlegrey);
	margin-bottom: 4px;
	font-size: 16px;
}

.participate input[type="email"] {
	margin-top: 10px;
}

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

.participate .p3 {
	max-width: 400px;
	margin-top: 80px;
	width: 100%;
}





/* RECEIPT */
.receipt-wrapper {
	padding-bottom: 20px;
	padding-top: 20px;
	max-width: 460px;
	margin-left: auto;
	margin-right: auto;
}

.receipt-wrapper ul {
	cursor: pointer;
	list-style: none;
	display: grid;
	grid-template-columns: 1fr 3fr;
	column-gap: 20px;
	padding: 0px;
	margin: 0px;
	text-align: left;
	font-size: smaller;
}

.receipt-wrapper ul li img {
	width: 100%;
}

.receipt-wrapper .upload-information {
	margin-top: 10px;
	margin-bottom: 0px;
}

input[type="file"] {
	display: none;
}



/* FINAL */
#final {
	display: none;
}




/* CHECKBOX */
.labelgroup {
	position: relative;
	text-align: left;
	width: 100%;
	max-width: 600px;
	margin-left: auto;
	margin-right: auto;
	margin-top: 20px;
	margin-bottom: 30px;
	padding-left: 38px;
	box-sizing: border-box;
}

label {
	line-height: 1.2;
}

input[type="checkbox"],
input[type="radio"] {
	display: none;
}

input[type="checkbox"]:checked + label:before,
input[type="radio"]:checked + label:before {
	content: "\2713";
	color: var(--color-black);
	text-align: center;
	line-height: 20px;
	top: 2px;
	font-size: 26px;
}

label:before {
	content: "";
	display: inline-block;
	width: 24px;
	height: 24px;
	margin-right: 14px;
	position: relative;
	left: 0;
	top: 2px;
	background-color: var(--color-white);
	border: 1px solid var(--color-middlegrey);
	border-radius: 3px;
	position: absolute;
	left: 0px;
}

label a {
	color: inherit;
	text-decoration: underline;
}



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

.button.disabled,
button.disabled {
	color: rgba(255,255,255,0.3);
	cursor: default;
}



/* FOOTER */
.footer {
	position: relative;
	padding-top: 60px;
	padding-bottom: 60px;
}

.footer p.col {
	font-size: x-small;
	text-align: justify;
	hyphens: none;
	margin-top: 0px;
	margin-bottom: 30px;
	column-count: 2;
	column-gap: 2em;
	column-width: 270px;
	-webkit-column-count: 2;
	-webkit-column-gap: 2em;
	-webkit-column-width: 270px;
	-moz-column-count: 2;
	-moz-column-gap: 2em;
	-moz-column-width: 270px;
	margin-bottom: 40px;
}

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

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

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

.footer p.legalline {
	position: absolute;
	right: 0px;
	top: 0px;
	margin: 0px;
	padding-right: inherit;
}






/* POPUP */
.mfp-bg {
	opacity: 0.3;
}

.white-popup-block {
	background-image: none;
	background-color: var(--color-middlegrey);
	border: none;
}

.white-popup-block h3 {
	margin: 0px;
	font-size: 20px;
}

.white-popup-block p {
	color: var(--color-black);
	font-size: 16px;
}





/* RESPONSIVES */
@media  (max-width: 1800px) {

	.participate img.p2 {
		margin-left: 0px;
		left: 20px;
	}

}


@media  (max-width: 1400px) {

	.participate img.p2 {
		width: 190px;
		bottom: -140px;
	}

}

@media  (max-width: 1050px) {

	.howto img.p1 {
		width: 120px;
		bottom: -56px;
	}

}

@media  (max-width: 1000px) {

	.participate {
		padding-bottom: 80px;
	}

	.participate img.p2 {
		width: 150px;
		bottom: -110px;
		left: 50%;
		transform: translateX(-50%);
	}

}

@media  (max-width: 900px) {

	.howto img.p1 {
		display: none;
	}

}

@media  (max-width: 800px) {

	.footer ul {
		margin-bottom: 40px;
	}

	.footer ul li {
		display: inherit;
		text-align: center;
		padding-right: 0px;
	}

	.footer p.legalline {
		position: relative;
		text-align: center;
		margin-bottom: 40px;
	}

}

@media  (max-width: 600px) {

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

}
