:root {
	--color-light: #FFF3DF;
	--color-bright: #ffffff;
	--color-red-dark: rgb(182,28,33);
	--color-red-light: rgb(217,29,36);
	--color-dark: rgb(0,0,0);

	--font-family-default: "Korolev-Regular";
	--font-family-title: "RocknRoll One";

	--section-padding: 60px;
}




/* GLOBALS */
html, body {
	background-color: var(--color-red-light);
	background: linear-gradient(137deg,var(--color-red-dark) 1%, var(--color-red-light) 54%, var(--color-red-dark) 100%);
	color: var(--color-light);
	padding: 0px;
	margin: 0px;
	line-height: 1.5;
	font-family: var(--font-family-default);
	font-weight: 300;
	font-style: normal;
	font-size: 18px;
}

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

.uppercase {
	text-transform: uppercase;
}

.bold {
	font-weight: bold;
}

p {
	margin-bottom: 0px;
	margin-top: 0px;
}

a img {
	border: none;
}

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

h1, h2, h3 {
	padding: 0px;
	margin: 0px;
	text-transform: uppercase;
	font-weight: normal;
	font-family: var(--font-family-title);
}

h1 {
	font-size: 62px;
}

h2 {
	font-size: 32px;	
}

h3 {
	font-size: 24px;
}


/* SEPARATOR */
.separator {
	width: 100%;
	background-color: var(--color-light);
	color: var(--color-red-dark);
	text-align: center;
	padding-top: 10px;
	padding-bottom: 10px;
}

.separator p {
	margin: 0px;
	font-size: 20px;
}



/* HOWTO */
.howto {
	text-align: center;
	padding-top: var(--section-padding);
	padding-bottom: var(--section-padding);
}

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

.hwoto ul li {
	text-align: center;
}

.howto ul li div.icon {
	width: 160px;
	aspect-ratio: 1/1;
	background-size: 60% auto;
	background-repeat: no-repeat;
	background-position: center center;
	margin-left: auto;
	margin-right: auto;
	background-color: var(--color-light);
	border-radius: 50%;
	margin-bottom: 20px;
}


/* VISUAL */
.visual {
	text-align: center;
	padding-top: var(--section-padding);
	padding-bottom: 20px;
	background-image: 	url("/assets/gfx/title-swing.png"), 
						url("/assets/gfx/fw.png"),
						url("/assets/gfx/fw.png"),
						url("/assets/gfx/fw.png");						
	background-position: center top, calc(50% - 500px) calc(100% + 30px), calc(50% - 700px) 10px, calc(50% + 600px) -50px;
	background-repeat: no-repeat;
	background-size: auto 200px, auto 350px, auto 290px, auto 390px;
}

.visual img.visual-image {
	width: 100%;
	margin-top: -60px;
}

.visual img.logo-image {
	width: 230px;
	margin-bottom: 40px;
}

.visual h1 {
	max-width: 900px;
	margin-right: auto;
	margin-left: auto;
}



/* BUTTON */
.button,
button {
	background-color: var(--color-light);
	color: var(--color-red-dark);
	box-sizing: border-box;
	padding: 12px 30px;
	text-transform: uppercase;
	font-size: 18px;
	border: none;
	border-radius: 6px;
	font-weight: bold;
	cursor: pointer;
}



/* PARTICIPATE */
.participate {
	padding-top: var(--section-padding);
	padding-bottom: var(--section-padding);
	text-align: center;
}

.participate h2 {
	margin-bottom: 20px;
	max-width: 800px;
	margin-right: auto;
	margin-left: auto;
}

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

.participate .form-wrapper.wide {
	max-width: 640px;
}

.participate .form-wrapper input[type="text"],
.participate .form-wrapper input[type="email"] {
	width: 100%;
	border: none;
	border-radius: 4px;
	box-sizing: border-box;
	margin-bottom: 6px;
	padding: 8px 20px;
	font-size: 18px;
	color: var(--color-dark);
}

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

/* RECEIPT CONTAINER */
.receipt-button-container {
	height: 230px;
	width: 230px;
	border-radius: 50%;
	background-color: transparent;
	margin-left: auto;
	margin-right: auto;
	cursor: pointer;
	position: relative;
	background-color: var(--color-light);
}

.inner-receipt-button-container {
	position: absolute;
	display: table-cell;
	vertical-align: middle;
	height: 94%;
	width: 94%;
	top: 2%;
	left: 2%;
	border-radius: 50%;
	border: 2px solid var(--color-red-dark);
	display: table;
}

.inner-receipt-button-container:active {
	box-shadow: 5px 5px 20px rgba(0, 0, 0, 0.2) inset;
	-webkit-box-shadow: 5px 5px 20px rgba(0, 0, 0, 0.2) inset;
	-moz-box-shadow: 5px 5px 20px rgba(0, 0, 0, 0.2) inset;
}

.inner-receipt-button-container p {
	margin: 0px;
	width: 100%;
	padding-left: 20px;
	padding-right: 20px;
	vertical-align: middle;
	display: table-cell;
	box-sizing: border-box;
	color: var(--color-red-dark);
	font-size: 24px;
	font-family: var(--font-family-default);
	text-transform: uppercase;
	line-height: 1.3;
	font-weight: bold;
}

.receipt-container ul {
	list-style: none;
	display: grid;
	grid-template-columns: 230px 1fr;
	padding: 0px;
	margin: 0px;
	column-gap: 40px;
	width: 100%;
	max-width: 550px;
	margin-left: auto;
	margin-right: auto;
}

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

.upload-information {
	text-align: left;
	font-size: smaller;
	position: absolute;
	left: 0px;
	width: 100%;
	top: 50%;
	transform: translateY(-50%);
}

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



/* FINAL */
.participate.final {
	display: none;
}

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



/* POPUP */
.white-popup-block {
	background-color: var(--color-red-dark);
	color: var(--color-light);
}



/* CHECKBOX */
.labelgroup {
	position: relative;
	text-align: left;
	width: 100%;
	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-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;;
}



/* SELECT2 */
.select2 {
	width: 100% !important;
}

.select2-container--default .select2-results__option--highlighted.select2-results__option--selectable {
	background-color: var(--color-red-light);
}

.select2-results__option {
	color: var(--color-red-dark);
}

.select2-container--default .select2-selection--single .select2-selection__rendered {
	text-align: left;
}

.select2-container .select2-selection--single {
	height: 38px;
}

.select2-container--default .select2-selection--single .select2-selection__rendered {
	line-height: 38px;
}

.select2-container .select2-selection--single .select2-selection__rendered {
	height: 38px;
}

.select2-container--default .select2-selection--single .select2-selection__arrow {
	height: 38px;
}

/* MAFO */
.mafo {
	margin-top: 40px;
}

.mafo .question {
	margin-top: 20px;
	max-width: 500px;
	margin-left: auto;
	margin-right: auto;
}

.mafo .labelgroup {
	margin-bottom: 10px;
	margin-top: 10px;
}

.mafo .question-multiple-container {
	max-width: 300px;
	margin-left: auto;
	margin-right: auto;
}

.mafo button {
	margin-top: 20px;
}


/* FOOTER */
.footer {
	padding-top: var(--section-padding);
	padding-bottom: var(--section-padding);
}

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

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

.footer h3 {
	text-transform: uppercase;
	margin-top: 30px;
}

.footer div.col {
	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;
}

.footer div.col p {
	text-align: justify;
	hyphens: none;
	font-size: small;
}

.social-wrapper {
	text-align: center;
	margin-bottom: 40px;
	position: relative;
	padding-bottom: 135px;
}

.social-wrapper img.social-icon {
	width: 80px;
}

.social-wrapper img.socials {
	width: 100%;
	margin-top: 20px;
}

.social-wrapper img.cta {
	width: 250px;
	position: absolute;
	right: 5%;
	bottom: 0px;
}




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

	h1 {
		font-size: 52px;
	}

	.visual img.visual-image {
		margin-top: -20px;
	}

}

@media (max-width: 700px) {

	.social-wrapper img.cta {
		display: none;
	}

	.social-wrapper {
		padding-bottom: 60px;
	}

	.visual img.visual-image {
		margin-top: 20px;
	}

	.visual img.logo-image {
		width: 180px;
		margin-bottom: 20px;
	}

	.footer ul li {
		display: inherit;
		padding-right: 0px;
		margin-bottom: 10px;
	}

}

@media (max-width: 600px) {

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

}

@media (max-width: 500px) {

	h1 {
		font-size: 38px;
	}

	h2 {
		font-size: 24px;
	}

	h3 {
		font-size: 18px;
	}

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

	.upload-information {
		position: relative;
		text-align: center;
		margin-top: 10px;
		margin-bottom: 10px;
	}

}