
* {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

b, strong {
	font-weight: 700;
}

body {
    display: flex;
    line-height: 1.3;
    font-weight: 400;
    flex-direction: row;
    font-size: 0; /*white spacing fix*/
    align-items: center;
    justify-content: flex-end;
    text-rendering: optimizeLegibility;
}

#app {
    width: 100%;
    max-width: 1400px;
    background-color: #000;
    margin: 0 auto;
}

.popup-opened, .popup-opened body {
    /* overflow: hidden !important; */
    position:relative;
}

img {
    max-width: 100%;
}

strong {
    font-weight: 800;
}

sup {
	font-size: 57%;
	line-height: 1;
	transform: translateY(-57%);
	display: inline-block;
}
sub {
	font-size: 57%;
	line-height: 1;
	transform: translateY(57%);
	display: inline-block;
}


.r, .two, .l, .flex {
    display: flex;
}
.flexcenter {
    display: flex;
    align-items: center;
}


/*.img-row img{*/
/*    width:16.6666666667%;*/
/*}*/
.bg-white {
    background-color: #fff;
}
.bg-black {
    background-color: #000;
}

.my-5 {
    margin: 15px 0;
}

.mt-6 {
    margin-top: 30px;
}

.mb-6 {
    margin-bottom: 30px;
}

.mt-5 {
    margin-top: 15px;
}

.mb-5 {
    margin-bottom: 15px;
}

.mt-4 {
    margin-top: 10px;
}

.mb-3 {
    margin-bottom: 8px;
}


.text-muted {
    color: #a9a9a9;
}

.content {
    flex: 1;
}

.content.center {
    display: flex;
    align-items: center;
    justify-content: center;
}

.content .inner {
    width: 100%;
}

.w-700 {
    width: 700px !important;
    max-width: 100%;
}

.f-column {
    flex-direction: column;
}

.p-20 {
    padding: 20px;
}

.popup {
    /* position: fixed; */
    position: absolute;
    top: 50px;
    width: 960px;
    max-width: 95%;
    overflow-y: auto;
    max-height: 90%;
    left: 0;
    right: 0;
    margin: auto;
    display: none;
    font-size: 14px;
    z-index: 10111;
}

.popup.confirm {
	max-width: 880px;
}

.form-flex {
	width: 100%;
	justify-content: space-between;
	display: flex;
	/* align-items: flex-start; */
	gap: 32px;
	margin-top: 24px;
}

.form-flex .left {
	min-width: 430px;
}
.form-flex .left .input-wrapper:last-child {
	margin-bottom: 0;
}

.form-flex .right {
	display: flex;
	flex-direction: column;
	align-items: stretch;
}
.form-flex .right .btn-wrapper {
	margin-top: auto;
}



.popup-content {
    max-width: 100%;
    margin: 0 auto;
    font-size: 16px;
    padding: 40px;
}

.choose-gender {
	display: flex;
	gap: 24px;
	font-size: 16px;
	padding-left: 16px;
}

.input-wrapper {
    position: relative;
    margin-bottom: 12px;
}

.input-wrapper .label {
    position: absolute;
    left: 16px;
    top: 16px;
    transition: .3s all;
    font-size: 16px;
    font-weight: 500;
    color: #000;
    pointer-events: none;
}
.input-wrapper .label span {
    font-size: 12px;
}

.input-wrapper .label.up {
    transform: translateY(-70%);
    font-size: 12px;
}

input[type="text"], textarea, select {
	border-radius: 4px;
    padding: 23px 16px 9px 16px;
    /*font-weight: 900;*/
    font-size: 16px;
    width: 100%;
    margin-top: 0;
    
    outline: none;
    transition: 0.5s;
}

textarea {
	height: 138px;
}

select{
    -webkit-appearance: none;
    /* for webkit browsers */
    -moz-appearance: none;
    /* for firefox */
    appearance: none;
    /* for modern browsers */
    -webkit-border-radius: 4px !important;
    -moz-border-radius: 4px !important;
    border-radius: 4px !important;
    position: relative;
}

select::-ms-expand {
    display: none;
}

.select-arrow:after {
    content: url(../img/arrow-down.svg);
    position: absolute;
    right: 15px;
    top: 24px;
    z-index: 1;
    text-align: center;
    width: 31px;
    height: 20px;
    font-size: 16px;
    color: #e8e8e9;
    pointer-events: none;
}

input[type="text"].error, textarea.error, select.error {
    border: 1px solid #eb033e;
}

input[type="text"]::-webkit-input-placeholder, select::-webkit-input-placeholder {
    font-weight: lighter;
    color: #a9a9a9;

}

input[type="text"]::-moz-placeholder, select::-moz-placeholder {
    font-weight: lighter;
    color: #a9a9a9;
}

input[type="text"]::-ms-input-placeholder, select::-ms-input-placeholder {
    font-weight: lighter;
    color: #a9a9a9;
}

.checkboxes {
	font-size: 12px;
	line-height: 130%; /* 15.6px */
}
.checkboxes .checkmark {
	margin-top: 4px;
}


select {
    color: #a9a9a9;
    padding: 17px 17px 16px 17px;
}

option:not(:first-of-type) {
    color: #1f2235;
}

#popup-backdrop {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(31, 34, 53, 0.94);
    display: none;
    z-index: 100;
}

.text-error {
    color: #eb033e;
    font-size: 14px;
}


.f-column {
    width: 16.6666666667%;
}

.ct-img {
    -webkit-background-size: cover;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    height: 100%;
    width: 100%;
    position: relative;
    
    border-left: 1px solid #fff;
    border-top: 1px solid #fff;
}
.ct-img.contain {
    -webkit-background-size: contain;
    background-size: contain;
}

.l-3-8 {
    letter-spacing: 3.8px;
}

.two {
    width: 33.3333333334%;
}

.fit-content-2, .fit-content {
    overflow-y: auto;
}

.d-md-none {
    display: none;
}

.justify-content-between {
    justify-content: space-between;
}

button.close-popup {
    position: absolute;
    right: 0;
    top: 0;
    background: transparent;
    border: 0;
    padding: 20px;
    z-index: 2;
}

button.close-popup svg {
    width: 40px;
}


/* Customize the label (the custom-checkbox) */
.custom-checkbox {
    display: block;
    position: relative;
    padding-left: 45px;
    margin-bottom: 12px;
    cursor: pointer;
    font-size: 12px;
	font-weight: 500;
	line-height: 130%; /* 15.6px */
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

/* Hide the browser's default checkbox */
.custom-checkbox input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}

/* Create a custom checkbox */
.checkmark {
    position: absolute;
    top: 0;
    left: 0;
    height: 20px;
    width: 20px;
    background-color: #fff;
    border: 1px solid #000;
    border-radius: 4px;
}

/* On mouse-over, add a grey background color */
.custom-checkbox:hover input ~ .checkmark {
    background-color: #fff;
}

/* When the checkbox is checked, add a blue background */
.custom-checkbox input:checked ~ .checkmark {
    background-color: #fff;
}

/* Create the checkmark/indicator (hidden when not checked) */
.checkmark:after {
    content: "";
    position: absolute;
    display: none;
}

/* Show the checkmark when checked */
.custom-checkbox input:checked ~ .checkmark:after {
    display: block;
}

/* Style the checkmark/indicator */
.custom-checkbox .checkmark:after {
    position: absolute;
    content: "\d7";
    font-size: 43px;
    color: #1f2235;
    text-align: center;
    top: 0;
    left: 0;
    width: 30px;
    height: 28px;
    line-height: 30px;

    transform: none;
}
/* safari hack */
_::-webkit-full-page-media, _:future, :root .custom-checkbox .checkmark:after{
    line-height: 21px;
}

/* Customize the label (the custom-radio) */
.custom-radio {
    display: block;
    position: relative;
    padding-left: 24px;
    margin-left: 0px;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

/* Hide the browser's default radio button */
.custom-radio input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}

/* Create a custom radio button */
.custom-radio .checkmark {
    position: absolute;
    top: 2px;
    left: 0;
    height: 16px;
    width: 16px;
    background-color: #fff;
    border: 1px solid #000;
    border-radius: 50%;
}

.error .custom-radio .checkmark {
	background-color: #ffb5b5;
}

.custom-radio:hover input ~ .checkmark {
    /* background-color: #ccc; */
    opacity: 0.6;
}

.custom-radio input:checked ~ .checkmark {
    background-color: #fff;
}

/* Create the indicator (the dot/circle - hidden when not checked) */
.custom-radio .checkmark:after {
    content: "";
    position: absolute;
    display: none;
}

/* Show the indicator (dot/circle) when checked */
.custom-radio input:checked ~ .checkmark:after {
    display: block;
}

/* Style the indicator (dot/circle) */
.custom-radio .checkmark:after {
    top: 2px;
    left: 2px;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #000;
}

button {
    cursor: pointer;
}

/*
button:hover {
    background-color: #1f2235;
    transition: all 0.3s ease-in-out;
    color: #fff;
}
*/

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

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

.pb-0 {
    padding-bottom: 0;
}

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

.p-60 {
    padding: 60px;
}

.pl-0 {
    padding-left: 0;
}

span.day {
    position: absolute;
    bottom: 20px;
    right: 25px;
    z-index: 2;
    font-size: 28px;
    font-weight: 700;
}

.inner.fit-content-2 {
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.tablet-row{
    display: none !important;
}



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

    .inner.fit-content-2 .my-5 {
        margin: 5px 0;
    }
}



@media screen and (min-width: 940px){
    .content.thank-you{
        max-width: 66.6666666667%;
        padding:30px;
    }
}

@media screen and (min-width: 520px) and (max-width: 940px){
    .tablet-row{
        display: flex !important;
    }
    .table-row-hidden, .d-sm-none{
        display: none !important;
    }
}

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

    body {
        display: block;
    }

    img {
        max-width: 100%;
    }

    .r, .two, .l {
        display: flex;
        width: 100%;
        max-width: 100%;
        flex-wrap: wrap;
    }

    .r.img-row div {
        width: 25%;
    }

    .f-column, .two {
        display: none;
    }

    input[type="text"], textarea, select {
        font-size: 16px;
    }

    .content .inner.w-700 {
        width: 100% !important;
        padding: 50px;
    }

    .content.center {
        flex-wrap: nowrap;
        flex-direction: column;
    }

    .content.center .ct-img {
        height: 400px;
        background-position: top center;
    }

    .content .inner, .fit-content {
        height: auto !important;
    }

    .d-xs-none {
        display: none;
    }

    .d-md-none{
        display: block;
    }

    .choose-gender {
    /*
        flex-wrap: nowrap;
        justify-content: space-between;
    */
        
    }

    .choose-gender .r {
        width: auto;
    }
    
    .text-xs-center {
        text-align: center;
    }

    .my-xs-5 {
        margin: 15px 0;
    }

    .f-xs-12 {
        font-size: 12px;
    }

    .input-wrapper span {
        font-size: 16px;
    }

    span.day {
        font-size: 20px;
        bottom: 3px;
        right: 6px;
    }

    .popup, .popup.confirm {
        width: 640px;
    }
    
    .question {
		font-size:12px;
	}

}


@media screen and (max-width: 640px) {
	
	.popup, .popup.confirm {
        width: 95%;
    }
}



/* addon */

.box {
	width: 100%;
	height: 100%;
	position: relative;
	aspect-ratio: 1 / 1;
	
	display: flex;
	justify-content: center;
	align-items: center;
}
.box.active { }
.box.past img,
.box.past svg,
.box.past span { opacity: 0.16; }

.box img { width: 100%; max-width: 50%; }
.box svg { max-width: 50%; height: 100%; }

.box30 svg, .box30 img {max-width: 30%;}
.box35 svg, .box35 img {max-width: 35%;}
.box40 svg, .box40 img {max-width: 40%;}
.box45 svg, .box45 img {max-width: 45%;}
.box50 svg, .box50 img {max-width: 50%;}
.box55 svg, .box55 img {max-width: 55%;}
.box60 svg, .box60 img {max-width: 60%;}
.box65 svg, .box65 img {max-width: 65%;}
.box70 svg, .box70 img {max-width: 70%;}
.box75 svg, .box75 img {max-width: 75%;}
.box80 svg, .box80 img {max-width: 80%;}
.box85 svg, .box85 img {max-width: 85%;}
.box90 svg, .box90 img {max-width: 90%;}
.box95 svg, .box95 img {max-width: 95%;}
.box100 svg, .box100 img {max-width: 100%;}

.box-noxl {
	display: none;
}

@media screen and (max-width: 940px) {
	
	.box.box-noxs {
		display: none;
	}
	.box.box-noxl {
		display: flex;
	}
}













.calendar-texts {
	min-width: 400px;
}

.calendar-texts > div {
	padding: 36px;
}
	
.calendar-texts h4.title {
	font-size: 20px;
	font-style: normal;
	font-weight: 500;
	line-height: 120%;
	margin-bottom: 32px;
}

.calendar-texts h3.subline {
	font-size: 18px;
	font-style: normal;
	font-weight: 700;
	line-height: 120%; /* 21.6px */
	margin-bottom: 16px;
}

.calendar-texts h1.headline {
	font-size: 40px;
	font-style: normal;
	font-weight: 500;
	line-height: 110%; /* 44px */
}

.calendar-texts div.text {
	font-size: 16px;
	font-style: normal;
	font-weight: 400;
	line-height: 120%; /* 21.6px */
	margin-top: 16px;
}
.calendar-texts div.text a {
	text-decoration: underline;
}

.calendar-texts .btn {
	margin-top: 32px;
}

.calendar-texts .sponsor img {
   max-width: 200px;
   max-height: 100px;
   margin-top: 12px;
}



.btn {
	border-radius: 40px;
	padding: 14px 22px;
	/* width: 150px; */
	width: auto;
	display: inline-block;
	text-align: center;
	cursor: pointer;
	
	font-size: 16px;
	font-style: normal;
	font-weight: 500;
	transition: all 0.3s ease-in-out;
}
/*
.btn-auto {
	width: auto;
}
 */

.calendar-below {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.calendar-below > div {
	color: #000;
	font-size: 20px;
	line-height: 140%;
	padding: 40px;
}



/* POPUP */

.popup-head {
	display: flex;
	align-items: stretch;
}

.popup-img {
    -webkit-background-size: cover;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    max-width: 266px;
    min-width: 266px;
    position: relative;
}
.popup-img.contain {
    -webkit-background-size: contain;
    background-size: contain;
}

.popup-texts {
	min-width: 400px;
}

.popup-texts > div {
	padding: 36px 36px 36px 36px;
}
	
.popup-texts h4.title {
	font-size: 20px;
	font-style: normal;
	font-weight: 500;
	line-height: 110%;
	margin-bottom: 16px;
	
	padding-right: 38px; /* wegen X */
}

.popup-texts h1.headline {
	font-size: 40px;
	font-style: normal;
	font-weight: 500;
	line-height: 100%;
	margin-bottom: 16px;
}

.popup-texts h3.subline {
	font-size: 18px;
	font-style: normal;
	font-weight: 700;
	line-height: 120%; /* 21.6px */
}

.popup-texts div.text {
	font-size: 16px;
	font-style: normal;
	font-weight: 400;
	line-height: 120%; /* 21.6px */
	margin-top: 16px;
}
.popup-texts div.text a {
	text-decoration: underline;
}

.popup-texts .sponsor img {
   max-width: 200px;
   max-height: 100px;
   margin-top: 12px;
}



/* CONFIRM */

.confirm-content {
	padding: 40px;
}
.confirm-content h1 {
	font-size: 40px;
	font-weight: 500;
	line-height: 120%; /* 48px */
	margin-bottom: 32px;
}

.confirm-content .text {
	font-size: 24px;
	font-weight: 400;
	line-height: 150%; /* 36px */
	margin-bottom: 32px;
}

.confirm-content .socials svg,
.confirm-content .socials img {
	height: 32px;
	margin-right: 24px;
}




@media screen and (max-width: 940px) {
	
	span.day {
	    font-size: 11.375px;
	}
	
	.ct-img {
	    border-left: 0 solid #fff;
	    border-top: 0 solid #fff;
	}
	
	.calendar-texts {
		min-width: 0;
	}
	
	.calendar-texts > div {
		padding: 32px 24px;
	}
	
	.calendar-below > div {
		padding: 24px;
	}
	
	.popup-head {
		display: block;
	}
	
	.popup-img {
		display: none;
	}
	
	.popup-texts {
		min-width: 0;
		width: 100%;
	}
	
	.popup-texts > div {
		padding: 24px;
	}
	
	.popup-content {
		width: 100%;
		padding: 24px;
	}
	
	button.close-popup {
		padding: 18px 6px;
	}
	
	.form-flex {
		display: block;
	}
	
	.form-flex .left {
		min-width: 0;
	}
	
	.form-flex .right {
		display: block;
	}
	
	.form-flex .right .checkboxes {
		margin-top: 12px;
	}
	
	.textarea-wrapper {
		margin-top: 12px;
	}
	
	.form-flex .right .btn-wrapper {
		margin-top: 20px;
	}
	
	.confirm-content {
		padding: 16px;
	}
	.confirm-content h1 {
		font-size: 26px;
		line-height: 110%;
		margin-bottom: 18px;
		padding-right: 32px; /* wegen X */
	}
	.confirm-content .text {
		font-size: 16px;
		line-height: 130%;
		margin-bottom: 18px;
		text-align: justify;
	}
}



@media screen and (max-width: 440px) {
	.anrede {
		display: none;
	}
}	

@media screen and (max-width: 360px) {
	.choose-gender {
		padding-left: 0;
		gap: 8px;
	}
}	






