:root {
	--color-light: rgb(255,255,255);
	--color-dark: rgb(64,22,18);
	--font-family-default: "Arsenal";
	--font-family-highlight: "Arsenal";
}

html, body {
	padding: 0;
	margin: 0;
	color: var(--color-light);
	font-size: 16px;
	margin-bottom: -20px;
	font-family: var(--font-family-default);
	font-weight: lighter;
}

a {
	text-decoration: underline;
}

body {
}

*:focus {
	outline: none;
}

.content {
	overflow: hidden;
	background: rgb(169,201,67);
}

img.partner {
	max-width: 750px;
	width: 90%;
}

#title {
	background: rgb(255,255,255);
	text-align: center;
	position: relative;
	z-index: 2;
}

#title img {
	margin-top: 20px;
	margin-bottom: 20px;
	border: none;
	height: 80px;
}

#content-container,
.content-container {
	width: 100%;
	max-width: 1100px;
	margin-left: auto;
	margin-right: auto;
}

.button,
button {
	-webkit-box-shadow: 0px 0px 13px 0px rgba(0,0,0,0.35);
	-moz-box-shadow: 0px 0px 13px 0px rgba(0,0,0,0.35);
	box-shadow: 0px 0px 13px 0px rgba(0,0,0,0.35);
}

/* BOX */
.box {
	display: table;
	width: 100%;
	background-color: rgb(255,255,255);
}

.box .half {
	width: 50%;
	display: table-cell;
	vertical-align: middle;
	box-sizing: border-box;
	padding: 40px 30px;
}

.box .half img {
	width: 100%;
}

.box .half.mobile {
	display: none;
}

.box.left img {
	margin-left: -60px;
}

.box.right img {
	margin-left: -20px;
}

.box p {
	margin: 0px 0px 10px 0px;
	font-size: 16px;
	color: rgb(90,90,90);
}

.box h3 {
	color: rgb(90,90,90);
	margin: 0px 0px 20px 0px;
}

.box a.button {
	margin-top: 20px;
	background-color: var(--color-dark);
	color: var(--color-light);
	padding: 10px 20px;
	text-decoration: none;
	text-transform: uppercase;
	box-sizing: border-box;
	display: inherit;
}

/* VISUAL */
#visual {
	width: 100%;
	height: 600px;
	position: relative;
	text-align: center;
	box-sizing: border-box;
	background-image: url("/assets/gfx/visual.png"), url("/assets/gfx/visual-background.jpg");
	background-repeat: no-repeat;
	background-position: center bottom, center center;
	background-size: auto 95%, auto 100%;
	-webkit-box-shadow: 0px 0px 13px 0px rgba(0,0,0,0.35);
	-moz-box-shadow: 0px 0px 13px 0px rgba(0,0,0,0.35);
	box-shadow: 0px 0px 13px 0px rgba(0,0,0,0.35);
}

#visual .separator {
	height: 5px;
	width: 100%;
	position: absolute;
	bottom: 0px;
	left: 0px;
	background: rgb(253,235,164);
	background: -moz-linear-gradient(90deg, rgba(195,166,90,1) 0%, rgba(253,235,164,1) 50%, rgba(195,166,90,1) 100%);
	background: -webkit-linear-gradient(90deg, rgba(195,166,90,1) 0%, rgba(253,235,164,1) 50%,rgba(195,166,90,1) 100%);
	background: linear-gradient(90deg, rgba(195,166,90,1) 0%, rgba(253,235,164,1) 50%,rgba(195,166,90,1) 100%);
}

/* SUBVISUAL */
.subvisual {
	background-color: rgb(1,19,157);
	box-sizing: border-box;
	padding: 20px 40px;
	margin-top: -5px;
	position: relative;
	z-index: 3;
}

.subvisual img {
	position: absolute;
	width: 26%;
	right: 2%;
	top: 50%;
	transform: translateY(-50%);
}

.subvisual p {
	padding: 0px;
	margin: 0px;
	line-height: 1.4;
	color: rgb(255,255,255);
	font-family: var(--font-family-default);
	font-size: 20px;
	width: 70%;
}

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

.howto ul {
	display: grid;
	grid-template-columns: 3fr 4fr;
	list-style: none;
	width: 100%;
	max-width: 1000px;
	box-sizing: border-box;
	padding: 0px;
	margin: 0px;
	margin-left: auto;
	margin-right: auto;
}

.howto ul li {
	padding: 40px 30px;
	box-sizing: border-box;
	order: 1;
}

.howto ul li:first-child {
	text-align: center;
	order: 2;
}

.howto .box {
	background: rgb(192,165,96);
	background: linear-gradient(90deg, rgba(192,165,96,1) 0%, rgba(244,226,169,1) 50%, rgba(192,165,96,1) 100%);
	filter: drop-shadow(2px 2px 4px rgba(0,0,0,0.4));
}

.howto ul img {
	width: 100%;
}

.howto .button {
	display: inline-block !important;
}

.howto h3 {
	text-align: left;
}

/* PARTICIPATE */
#participate {
	width: 100%;
	margin-bottom: 0px;
	margin-top: 0px;
	padding-top: 60px;
	padding-bottom: 60px;
}

.receipt-container {
	display: grid;
	list-style: none;
	padding: 0px;
	margin: 0px;
	column-gap: 20px;
	grid-template-columns: 70px 1fr;
	margin-bottom: 30px;
	margin-top: 20px;
	background: rgb(192,165,96);
	background: linear-gradient(90deg, rgba(192,165,96,1) 0%, rgba(244,226,169,1) 50%, rgba(192,165,96,1) 100%);
	box-sizing: border-box;
	padding: 20px;
	color: var(--color-dark);
	filter: drop-shadow(2px 2px 4px rgba(0,0,0,0.4));
	text-align: left;
}

.receipt-container img {
	width: 100%;
}

.iinput-container.file {
	margin-left: 0px;
	margin-right: 0px;
}

.receipt-container h3 {
	text-align: left;
}

.receipt-container p {
	font-size: 14px !important;
	line-height: 1.3 !important;
	text-align: left;
}

.receipt-container input {
	display: none;
}

.receipt-container button {
	width: auto;
}

#participate p.subinfo {
	margin-top: 0px;
	text-align: center;
}

#participate-container {
	width: 100%;
	margin-left: auto;
	margin-right: auto;
}

#participate #iban {
	text-transform: uppercase;
}

p.subline {
	font-size: small !important;
	line-height: 1.3 !important;
	margin-top: 20px;
	margin-bottom: 0px;
}

.inner-participate-container {
	width: calc(50% - 10px);
	position: relative;
	float: left;
	z-index: 3;
}

.inner-participate-container.right {
	float: right;
}

.inner-participate-container-group {
	position: relative;
}

.inner-participate-container.right.bottom {
	padding-top: 41px;
}

.inner-participate-container p {
	text-align: left;
}

.outer-participate-container {
	text-align: center;
	padding-top: 15px;
}

#participate div.inner-container {
	width: 90%;
	max-width: 600px;
	margin-left: auto;
	margin-right: auto;
}

label,
#participate p {
	font-size: 18px;
	line-height: 24px;
}

h2, h3 {
	font-size: 40px;
	margin: 0px;
	font-weight: 400;
	font-family: var(--font-family-highlight);
	text-align: center;
	text-shadow: 2px 2px 2px rgba(0,0,0,0.2);
}

h3 {
	font-size: 28px;
}

ul.howto {
	width: 90%;
	padding: 0;
	margin-top: 40px;
	margin-bottom: 20px;
	margin-left: auto;
	margin-right: auto;
}

ul.howto li {
	width: 30%;
	list-style: none;
	font-size: 22px;
	display: table-cell;
}

ul.howto li.sign {
	width: 5%;
}

ul.howto li:not(:last-child) {
	margin-right: 5%;
}

ul.howto li img {
	width: 100%;
	max-width: 200px;
}

ul.howto li.sign img {
	margin-bottom: 70px;
}

#participate h2 {
	text-align: center;
	max-width: 90%;
	margin-left: auto;
	margin-right: auto;
}

#receipt-wrapper {
	margin-top: -15px;
}

.iinput-container.file div.placeholder {
}

.selectboxit,
.selectboxit-option-anchor,
.iinput-container input,
.iinput-container div.placeholder {
	font-family: "Open Sans Condensed";
}

label {
	display: block;
	margin-bottom: 14px;
	cursor: pointer;
	text-align: left;
}

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

input[type="checkbox"]:checked + label:before {
    content: "\2713";
    color: rgb(0,0,0);
    font-size: 24px;
    text-align: center;
    line-height: 18px;
	top: 2px;
}

label:before {
	content: "";
	display: inline-block;
	width: 15px;
	height: 15px;
	margin-right: 10px;
	position: relative;
	left: 0;
	top: 2px;
	background-color: rgb(255,255,255);
	font-weight: 800;
	-webkit-box-shadow: 0px 0px 13px 0px rgba(0,0,0,0.35);
	-moz-box-shadow: 0px 0px 13px 0px rgba(0,0,0,0.35);
	box-shadow: 0px 0px 13px 0px rgba(0,0,0,0.35);
}

label a {
	color: inherit;
	font-size: 20px;
}

button.default {
	cursor: pointer;
	padding-top: 10px;
	padding-bottom: 10px;
	padding-right: 30px;
	padding-left: 30px;
	font-size: 20px;
	color: rgba(255, 255, 255);
	background-color: var(--color-dark);
	border: none;
	margin-bottom: 0px;
	margin-top: 10px;
	width: 90%;
	max-width: 620px;
	font-family: "Optima";
}

.iinput-container.file {
	-webkit-box-shadow: none;
	-moz-box-shadow: none;
	box-shadow: none;
	background-color: var(--color-dark);
}

.footer {
	width: 100%;
	padding-bottom: 20px;
	padding-top: 15px;
	background-color: rgb(255,255,255);
	color: rgba(0,0,0,1);
	text-align: center;
	font-size: 18px;
	box-sizing: border-box;
	padding-left: 20px;
	padding-right: 20px;
}

.footer a {
	font-weight: 300;
	color: rgb(0,0,0);
	text-decoration: none;
}

.footer ul {
	width: 90%;
	padding: 0px;
	margin-left: auto;
	margin-right: auto;
	margin-top: 0px;
	margin-bottom: 60px;
	font-size: 22px;
}

.footer ul li {
	list-style: none;
	display: inline;
}

.footer ul li:not(:last-child) {
	margin-right: 10px;
}

.footer h3 {
	text-align: left;
	margin-top: 0px;
	margin-bottom: 30px;
	text-transform: uppercase;
	font-weight: 300;
	font-size: 24px;
}

.footer p {
	font-size: 18px;
	line-height: 16px;
	font-weight: 400;
}

.footer .col {
	width: 100%;
	max-width: 1100px;
	margin-left: auto;
	margin-right: auto;
	margin-top: 40px;
	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 .col p {
	line-height: 16px;
	margin: 0 0 2.7ex 0;
	text-align: justify;
	hyphens: auto;
	font-family: "Optima";
	font-weight: 100;
	font-size: 12px;
}

.footer p a {
	font-weight: 700;
	text-decoration: none;
	font-family: "Optima";
	color: var(--color-dark);
}

/* POPUP */
.mfp-content {
	width: 100%;
	max-width: 500px;
	text-align: center;
	background: rgb(192,165,96);
	background: linear-gradient(90deg, rgba(192,165,96,1) 0%, rgba(244,226,169,1) 50%, rgba(192,165,96,1) 100%);
	box-sizing: border-box;
	padding: 30px;
	color: var(--color-dark);
}

.mfp-content p {
	margin-top: 10px;
	margin-bottom: 10px;
}

/* PARTICIPATE */
.step {
	width: 100%;
	max-width: 700px;
	margin-left: auto;
	margin-right: auto;
	text-align: center;
	margin-bottom: 40px;
}

#participate .recipient ul,
#participate .customize ul {
	list-style: none;
	margin: 0px;
	padding: 0px;
	display: grid;
	grid-template-columns: 1fr 1fr;
	column-gap: 20px;
	width: 100%;
	max-width: 300px;
	margin-left: auto;
	margin-right: auto;
	margin-top: 20px;
}

#participate .recipient ul li {
	display: inline-block;
	text-align: center;
}

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

.form-wrapper p.subline {
	margin-top: 5px;
	text-align: left;
}

input[type="text"],
input[type="email"] {
	width: 100%;
	margin-block: 4px;
	box-sizing: border-box;
	padding: 8px 14px;
	border: none;
	font-family: var(--font-family-default);
	font-size: 18px;
}

.recipient-other {
	display: none;
}

/* CUSTOMIZER */
.customizer {
	position: relative;
	margin-top: 20px;
	width: 100%;
	filter: drop-shadow(2px 2px 4px rgba(0,0,0,0.4));
}

.customizer img {
	width: 100%;
}

.customizer input {
	position: absolute;
	left: 65%;
	width: 27%;
	padding: 4px 10px;
	background-color: transparent;
}

.customizer input#recipient-from {
	top: 36%;
}

.customizer input#recipient-to {
	top: 46%;
}

/* RADIO */
.radio {
	width: 25px;
	height: 25px;
	border-radius: 50%;
	background-color: rgba(255,255,255);
	margin-left: auto;
	margin-right: auto;
	margin-bottom: 10px;
	border: 1px solid rgba(192,165,96,1);
	cursor: pointer;
	position: relative;
}

.radio .inner {
	position: absolute;
	width: 80%;
	height: 80%;
	border-radius: 50%;
	top: 10%;
	left: 10%;
	background-color: rgba(192,165,96,1);
	display: none;
}

.radio.selected .inner {
	display: inherit;
}
