:root {
	--color-pink-dark: #98052B;
	--color-pink-light: #C9163F;
	--color-light: #ffffff;
}

/* GLOBALS */
html, body {
	background-color: var(--color-pink-light);
	color: var(--color-light);
	padding: 0px;
	margin: 0px;
	font-size: 20px;
	font-weight: normal;
	line-height: 1.5;
	font-family: 'Gotham Book';
	font-size: 16px;
}

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

*:focus {
	outline: none;
}

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

p {
	margin: 0px;
}

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

h1, h2, h3, h4, .headline {
	font-family: 'MADE Sunflower';
	margin: 0px;
	padding: 0px;
	line-height: 1.2;
	margin-bottom: 8px;
}

h1 {
	font-size: 50px;
}

h2 {
	font-size: 36px;
	text-transform: uppercase;
}

h3 {
	font-size: 28px;
}

.headline {
	font-size: 20px;
}

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

p span.highlight {
	background-color: var(--color-light);
	color: var(--color-pink-dark);
	box-sizing: border-box;
	padding: 2px 3px;
	font-weight: bold;
}

/* TITLE */
.title {
	height: 80px;
	text-align: center;
	position: relative;
	z-index: 9;
}

.title img {
	height: 120%;
	position: absolute;
	top: 40%;
	left: 50%;
	transform: translateX(-50%);
}

/* VISUAL */
.visual {
	position: relative;
	height: 600px;
	overflow: hidden;
}

.visual h1 {
	text-align: center;
	position: absolute;
	left: 50%;
	transform: translateX(-30%);
	top: 80px;
	width: max-content;
}

.visual .front-layer {
	position: absolute;
	height: 100%;
	width: 100%;
	left: 0px;
	top: 0px;
	background-image: url("/assets/gfx/visual-prize.png"), url("/assets/gfx/visual-bottom-right.png"), url("/assets/gfx/visual-top-left.png");
	background-repeat: no-repeat, no-repeat, no-repeat;
	background-position: bottom 40px right 40px, bottom right, top left;
	background-size: auto 70%, auto 90%, auto 40%;
}

.visual .background-layer {
	position: absolute;
	height: 100%;
	width: 100%;
	left: 0px;
	top: 0px;
	background-image: url("/assets/gfx/visual-background.jpg");
	background-repeat: no-repeat;
	background-position: center center;
	background-size: cover;
}

/* CONTENT */
.content {
	padding-top: 60px;
	padding-bottom: 60px;
	position: relative;
	background-image: url("/assets/gfx/content-top-left.png");
	background-repeat: no-repeat;
	background-position: top left;
	background-size: 300px auto;
	overflow-x: hidden;
}

/* HOWTO */
.howto {
	text-align: center;
}

.howto ul {
	width: 100%;
	max-width: 800px;
	display: grid;
	grid-template-columns: 1fr 1fr 1fr;
	list-style: none;
	padding: 0px;
	margin: 0px;
	margin-top: 40px;
	margin-left: auto;
	margin-right: auto;
	column-gap: 20px;
}

.howto ul li img {
	height: 60px;
	margin-bottom: 10px;
}

.howto ul li .caption {
	position: relative;
}

.howto ul li p {
	position: relative;
	padding-left: 36px;
	text-align: left;
}

.howto ul li .number {
	position: absolute;
	left: 0px;
	top: 0px;
	font-family: 'MADE Sunflower';
	background-color: var(--color-light);
	color: var(--color-pink-dark);
	text-align: center;
	line-height: 1;
	border-radius: 50%;
	aspect-ratio: 1/1;
	width: 28px;
	height: 28px;
}

.howto ul li .number p {
	position: absolute;
	top: 50%;
	left: 50%;
	padding: 0px;
	margin: 0px;
	transform: translate(-50%, -50%);
	font-size: 22px;
}

/* INFO */
.info {
	padding-top: 110px;
	width: 100%;
	padding-bottom: 20px;
	max-width: 450px;
	text-align: center;
}

.info .box {
	background-color: var(--color-pink-dark);
	position: relative;
	box-sizing: border-box;
	padding: 20px 30px;
	width: 100%;
	max-width: 400px;
	border-radius: 10px;
	margin-left: auto;
	margin-right: auto;
	text-align: center;
	margin-bottom: 20px;
}

.info .box img {
	position: absolute;
	width: 80px;
	left: 50%;
	top: -66px;
	transform: translateX(-50%);
}

.info h4 {
	font-family: 'Gotham Book';
	font-weight: 800;
}

.info p {
	font-size: smaller;
}

.info a {
	text-decoration: underline;
}

/* PARTICIPATE */
.participate {
	text-align: center;
	padding-top: 40px;
	position: relative;
	z-index: 9;
}

.participate h2 {
	max-width: 600px;
	margin-left: auto;
	margin-right: auto;
}

.participate .form-wrapper {
	width: 100%;
	max-width: 500px;
	margin-left: auto;
	margin-right: auto;
	margin-top: 20px;
}

input[type="text"],
input[type="mail"] {
	box-sizing: border-box;
	padding: 10px 20px 8px 20px;
	font-family: 'Gotham Book';
	font-size: 18px;
	width: 100%;
	border: none;
	margin-bottom: 8px;
	border-radius: 3px;
}

input[type="text"].error,
input[type="mail"].error {
	background-color: var(--color-pink-dark);
	color: var(--color-light);
}

input::placeholder {
	text-transform: none;
}

.input-wrapper {
	padding-top: 5px;
}

.input-wrapper p {
	text-align: left;
	font-size: 12px;
	margin-bottom: 3px;
	box-sizing: border-box;
	padding-left: 5px;
}

.input-wrapper p.uppercase {
	text-transform: uppercase;
}

.content .filler {
	position: absolute;
	bottom: 0px;
	left: 50%;
}

.content .filler.filler-1 {
	height: 400px;
	margin-left: -750px;
	bottom: 100px;
}

.content .filler.filler-2 {
	height: 600px;
	margin-left: 300px;
	bottom: 240px;
}

/* RECEIPT */
.receipt-wrapper {
	margin-bottom: 20px;
	margin-top: 20px;
}

.receipt-wrapper #receipt {
	display: none;
}

.receipt-wrapper .uploadinfo-receipt {
	margin-top: 10px;
	opacity: 0;
}

/* ADDITIONALS */
#participate h3 {
	margin-top: 20px;
	margin-bottom: 3px;
}

#participate ul {
	margin: 0px;
	padding: 0px;
	text-align: center;
	list-style-position: inside;
	margin-bottom: 40px;
}

#participate ul li {
	padding-bottom: 9px;
}

/* 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-pink-dark);
	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-light);
	border: none;
	border-radius: 3px;
	position: absolute;
	left: 0px;
}

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

/* BUTTON */
button,
.button {
	background-color: var(--color-light);
	box-sizing: border-box;
	padding: 10px 30px;
	border-radius: 10px;
	color: var(--color-pink-dark);
	border: none;
	text-transform: uppercase;
	font-size: 20px;
	font-weight: bold;
	cursor: pointer;
	display: inline-block;
	font-family: 'Gotham Book';
}

button.disabled,
.button.disabled {
	cursor: default;
}

/* POPUP */
.popup-block {
	padding: 20px;
	box-sizing: border-box;
	width: 100%;
	max-width: 620px;
	margin-left: auto;
	margin-right: auto;
	background-color: var(--color-light);
	color: var(--color-pink-dark);
	text-align: center;
	position: relative;
}

.popup-block p {
	margin-top: 20px;
	margin-block: 20px;
}

.popup-block.image {
	background-color: transparent;
}

.mfp-close {
	display: none !important;
}

.popup-block .button {
	margin-top: 4px;
	display: inline-block;
}

.popup-block h3 {
	margin-bottom: 20px;
}

.mfp-bg {
	opacity: 0.8 !important;
}

.popup-block .button {
	background-color: var(--color-pink-dark);
	color: var(--color-light);
}


/* TNB */
.content.tnb {
	background-image: none;
}

/* PRE */
.pre {
	text-align: center;
	padding-bottom: 100px;
}

.pre .content-wrapper {
	max-width: 500px;
}

/* FAQ */
.faq h4 {
	margin-top: 20px;
	margin-bottom: 3px;
}

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

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

.footer ul li {
	display: inline;
	text-transform: uppercase;
}

.footer ul li:not(:last-child)::after {
	content: "|";
	padding-left: 15px;
	padding-right: 15px;
}

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

	.filler {
		display: none;
	}

}

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

	.footer ul li {
		display: inherit;
		line-height: 1.5;
	}

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

	.visual h1 {
		font-size: 40px;
	}


	.visual .front-layer {
		background-size: auto 60%, auto 60%, auto 20%;
	}

}

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

	.visual .background-layer{
		width: calc(100% + 150px);
	}

	.visual h1 {
		font-size: 34px;
	}

}

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

	.visual .background-layer{
		width: calc(100% + 200px);
	}

	.visual h1 {
		font-size: 34px;
	}

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

	h2 {
		font-size: 30px;
	}

}

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

	.visual .front-layer {
		background-size: auto 40%, auto 40%, auto 10%;
	}

	.visual .background-layer{
		width: calc(100% + 280px);
	}

	.visual h1 {
		transform: translateX(-50%);
		top: 60px;
	}

}