﻿@import url(fonts.css);
@import url(animation.css);
@import url(aggregation.css);
@import url(odometer.css);

:root {
	--grey:rgb(62,62,62);
	--grey-light:rgb(62,62,62,.5);
	--blue:rgb(0,40,200); /* hex -> #0028c8 */
	--blue-light:rgb(0,40,200,.5);
	--black:#000000;
	--white:#ffffff;
	--primary:var(--blue);
	--primary-light:var(--blue-light);
	--font-primary:'The Sans', 'Open Sans', sans-serif;
	--font-bold:'The Sans Bold', 'Open Sans', sans-serif;
	
	--turquoise:rgba(0,157,177,1); /* hex -> #009db1 */
	--beige:rgba(223,216,203,1); /* hex -> #dfd8cb */
	--blue-muted:rgba(0,60,101,1); /* hex -> #003c65 */
	--yellow:rgba(243,210,0,1); /* hex -> #f3d200 */
	--yellow-light:rgba(243,210,0,.5);
}

/* 

Farben alt
rot: rgb(236,49,90), #d91d4b
beige: rgb(235, 233, 224), #ebe9e0
dunkelblau: rgb(10, 41, 98), #0A2962
dunkelgrau: rgb(74, 74, 74), #4a4a4a

WDR Colors:
blau: rgb(0,40,200), #0028c8
grau: rgb(62,62,62), #3e3e3e
weiß, schwarz

*/

/* Base */

:root {
    font-size: 10px;
}

*, *:before, *::before, :after, ::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--grey);
    color: #fff;
    position: relative;
    line-height: 1.4;
    font-family: var(--font-primary);
    font-size: calc(14px + (28 - 14) * ((100vw - 320px) / (1600 - 320)));
    font-weight: normal;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
    min-height: 100vh;
    height: 100%;
    scroll-behavior: smooth;
}

dl, dd {
    margin: 0;
}

.wrapper {
    background-color: #000;
    margin: 0 auto;
    position: relative;
}

.translate .de {
    display: none;
}

.translate .en {
    display: inline-block;
}

body:not(.translate) .en {
    display: none;
}

/* Language Toggle */

.langToggle {
    width: auto;
}

.langToggle {
    color: #fff;
    display: inline-block;
}

.langToggle .toggle.german, .langToggle .toggle.english {
    display: inline-block;
}

body:not(.translate) .toggle.german {
    display: none;
}

body.translate .toggle.english {
    display: none;
}

section>.container, .emailentry>.container {
    display: flex;
    max-width: 1250px;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

h1, h2, h3, h4, h5, h6, p, ul, li {
    margin-top: 0;
}

figure {
    margin: 0;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-bold);
    text-transform: uppercase;
    line-height: 1.2;
}

h1 {
    font-size: clamp(2.7rem, calc(3vw + 1rem), 3.4rem);
}

@media (max-width: 480px) {
    h1 {
        font-size: clamp(2.2rem, calc(3vw + 1rem), 3.4rem);
    }
}

a {
    color: darkblue;
    text-decoration: none;
}

a:hover, .footer-item a:hover {
    color: darkblue;
    text-decoration: underline;
}

.inverseLink {
    color: #fff;
    text-decoration: underline;
}

.inverseLink:hover, .inverseLink:focus {
    color: rgba(255, 255, 255, .5);
    text-decoration: none;
}

input {
    border-radius: 0;
    -webkit-appearance: none;
}

input:focus {
    background: #ededed;
    outline: none;
}


.line {
    width: 50%;
    height: 1px;
    background: #aaa;
    border: none;
    margin-bottom: 3rem;
}

/* Utility Classes */

.block {
    display: block;
}

.inline-block {
    display: inline-block;
}

.flex {
    display: flex;
}

.flex-column {
    flex-direction: column;
}

.space-between {
    justify-content: space-between;
}

.space-around {
    justify-content: space-around;
}

.justify-center {
    justify-content: center;
}

.align-center {
    align-items: center;
}

.center {
    justify-content: center;
    align-items: center;
}

.flexCenter {
    display: flex;
    align-items: center;
    justify-content: center;
}

.clrAccent {
    color: var(--primary);
}

em.clrAccent {
    font-style: normal;
    font-weight: 400;
}

.mw79ch {
    /* for too long text lines */
    max-width: 79ch;
    margin-left: auto;
    margin-right: auto;
}

.smallType {
    font-size: 1.6rem;
}

.erratio {
    color: red;
    margin: 0;
}

.modal {
    padding: 0;
    margin: 0;
    position: fixed;
    width: 100vw;
    min-height: 100vh;
    height: 100%;
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
    background: rgba(0, 0, 0, .65);
    z-index: 1000;
    overflow-y: auto;
}

.disabled {
    pointer-events: none;
    opacity: .2;
}

/* Buttons */

.btn {
    text-decoration: none;
    text-transform: uppercase;
    font-family: var(--font-bold);
    font-size: 1.8rem;
    display: inline-block;
    padding: .8rem 3rem;
    background: var(--grey);
    color: #fff;
    border: 2px solid var(--grey);
    transition: all .2s ease-in-out;
    cursor: pointer;
}

.btn:hover, .btn:focus {
    text-decoration: none;
    color: var(--grey);
    background: #fff;
    border-color: #fff;
    outline: none;
}

.btn__primary, .btnRegister {
    background-color: var(--primary);
    border: 2px solid var(--primary);
    color: #fff;
}

.btn__primary:hover, .btn__primary:focus, .btnRegister:hover, .btnRegister:focus {
    background-color: #fff;
    border: 2px solid var(--primary);
    color: var(--primary);
}

.modal .btnSend {
    margin: 2rem auto;
}

@media (max-width: 365px) {
    .btn {
        font-size: 1.6rem;
        padding: .8rem 1.5rem;
    }
}

figcaption, .caption {
    font-size: 1.4rem;
    line-height: 1.2;
}

/* Header */

header {
    padding: 2rem 3rem;
}

.pageHeader.noNavi .exit {
    /* Close button in header */
    display: block;
    text-indent: -999999px;
    width: 30px;
    height: 30px;
    background: url(/images/exit-white.svg) no-repeat center;
    background-size: contain;
    cursor: pointer;
    position: absolute;
    top: 75px;
    right: 15px;
    z-index: 1;
    align-self: end;
}

.noNavi .exit:hover {
    background: url(/images/exit.svg) no-repeat center;
}

@media (min-width: 600px) {
    .pageHeader.noNavi .exit {
        top: 22px;
        right: 15px;
    }
    .pageHeader, .pageHeader.noNavi {
        display: grid;
        grid-template-columns: 1fr 2fr 1fr;
        grid-template-rows: 1fr;
        width: 100%;
    }
    .pageHeader.noNavi .exit {
        position: static;
        margin-left: auto;
    }
}

.brand {
    /* Logo */
    margin: 0 0 0 0;
}

.brand a {
    color: currentColor;
    text-decoration: none;
    transition: all .4s ease-in-out;
    display: block;
}

.appBrand {
    font-family: var(--font-bold);
    text-transform: uppercase;
    font-size: 3.4rem;
    letter-spacing: 1px;
    line-height: 1;
    text-align:center;
	align-self:end;
}

.appBrand .redDot {
    color: var(--primary);
}

.appBrand span:last-child {
    text-transform: none;
}

.appBrand a {
    color: #fff;
}

.userLogin {
    letter-spacing: 1px;
    line-height: 1;
	align-self:center;
}

.userLogin a {
	color: #fff;
	background: transparent url(/images/iconUserWhite.svg) no-repeat center left;
    background-size: 1.5rem;
    font-size: 2rem;
	padding-left: 2.5rem;
	height: 2rem;
	line-height: 1;

}

@media (max-width: 600px) {
    header {
        display: flex;
        align-items: flex-end;
        padding: 1rem;
    }
    .brand {
        max-width: 35vw;
        margin: 0 1rem 0 0;
    }
    .brand a {
        margin: 0;
    }
    .notranslate .noNavi .brand .logoLink, .noNavi .brand a {
        margin-right: 1rem;
    }
    .noNavi .appBrand {
        align-self: flex-end;
    }
    .appBrand {
        display: inline-block;
        font-size: 2rem;
        margin-bottom: 0;
        margin-right: unset;
    }
    .noNavi .brand {
        max-width: unset;
    }
    .userLogin {
        margin-left: auto;
        align-self: flex-end;
    }
    .userLogin a {
        display: block;
        text-indent: -999999rem;
        background-position: top right;
    }
}

@media (max-width: 400px) {
    .brand a img {
        max-width: 80%;
    }
    .appBrand {
        align-self: unset;
    }
    .userLogin {
        align-self: flex-end;
    }
}

@media (min-width: 480px) and (max-width: 600px) {
    .appBrand {
        font-size: 2.6rem;
        line-height: 1;
		margin-left:2rem;
    }
}

@media (min-width: 601px) and (max-width: 900px) {
    .brand {
        margin: 0;
    }
    .appBrand {
        font-size: 3rem;
        line-height: 1;
    }
}

@media (min-width: 601px) {
	.userLogin {
        text-align:right;
    }
}

/* Share Sidebar / was planned navi */

nav {
    background: var(--grey);
    color: #fff;
    width: 0;
    height: 100%;
    position: fixed;
    top: 0;
    right: -20rem;
    z-index: 1001;
    padding: 15vh 1rem 0;
    transition: width .4s ease-in-out;
}

.navInner {
    min-height: 100vh;
    height: 100%;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
}

.noNavi + nav {
    display: none;
}
.notranslate .noNavi + nav {
    display: block;
}

.notranslate .noNavi + nav .menu {
    /* Dashboard */
    top: 20%;
}

#menuChk:checked ~ nav .menu {
    top: 4rem;
  }

nav h3 {
    font-family: var(--font-primary);
    font-size: 2rem;
    font-weight: 400;
    text-align: center;
    text-transform: none;
    margin-top: 0;
}

nav p {
    font-size: 1.6rem;
    text-align: center;
}

/* Social Share Icons in Nav Sidebar */

.socItems {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    padding: 0;
    margin-top: .5rem;
    margin-bottom: 0;
    position: relative;
}

nav hr {
    height: .2rem;
    margin: 2.5rem auto;
    border-top: 2px solid rgba(255, 255, 255, .35);
    border-right: none;
    border-bottom: none;
    border-left: none;
    width: 80%;
}

.socItems li {
    list-style-type: none;
}

.socItems li > * {
    margin-right: .5rem;
}

.socItems a {
    color: #fff;
}

.socItems .twitter, .socItems .facebook, .socItems .whatsapp, .socItems .telegram {
    text-indent: -99999px;
    display: inline-block;
    background: transparent url('/images/iconTwitterWhite.svg') no-repeat center/100%;
    width: 40px;
    height: 40px;
}

.socItems .facebook {
    background: transparent url('/images/iconFacebookWhite.svg') no-repeat center/100%;
}

.socItems .whatsapp {
    background: transparent url('/images/iconWhatsappWhite.svg') no-repeat center/100%;
}

.socItems .telegram {
    background: transparent url('/images/iconTelegramWhite.svg') no-repeat center/100%;
}

/* Embed Code Feld + Button */

.embedCode {
    display: flex;
    flex-direction: column;
    width: calc(100% - 2rem);
    margin: auto;
    max-width: 265px;
}

.embedCode code {
    font-size: 1.8rem;
    background: #fff;
    display: block;
    color: var(--grey);
    padding: .5rem 1rem;
    overflow: hidden;
    height: auto;
}

.embedCode span {
    text-transform: none;
    font-family: var(--font-primary);
    font-size: 2rem;
    font-weight: normal;
}

.embedCode .btn span {
    text-transform: uppercase;
    font-family: var(--font-primary);
    font-size: 1.6rem;
}

.xyz {
    margin: 0;
}

.embedInput{
    border: 1px solid var(--grey);
    padding: .5em;
    pointer-events: none;
}

.done .embedInput {
    width: 100%;
    max-width: 300px;
    margin: 0 auto;
}

.embedCode .btn {
    font-size: 1.4rem;
    padding: .5rem .8rem;
    margin-top: 2rem;
    text-align: center;
}

.translate .embedCode a .en .copyDone,
.embedCode a .de .copyDone {
    display: none;
}
.translate .embedCode a.isCopied .en .copyDone,
.embedCode a.isCopied .de .copyDone {
    display: inline-block;
}
.translate .embedCode a.isCopied .en .origin,
body:not(.translate) .embedCode a.isCopied .de .origin {
    display: none;
}

.embedCode .btn.btn__secondary::before {
	content: "▲";
	position: absolute;
	top: -2rem;
	left: 0;
	width: 100%;
	display: block;
	color: var(--grey);
	font-size: 2rem;
	transition: all .2s ease-in-out;
}

.embedCode .btn.btn__secondary:hover::before,
.embedCode .btn.btn__secondary:focus::before {
	color: #fff;
}

@media (max-width: 400px) {
    nav .navInner h3,
    .embedCode span {
        font-size: 1.6rem;
    }
}

/* Hamburger */

#menuChk {
    /* Hiding the checkbox */
    display: none;
}

.menu {
    /* Label for hamburger */
    background: #fff url(/images/_iconShare.svg) no-repeat center/60%;
    position: fixed;
    top: 11vh;
    right: 0;
    z-index: 1;
    width: 40px;
    height: 40px;
    display: block;
    cursor: pointer;
    transition: all .4s ease;
}

/* Toggle nav sidebar */

#menuChk:checked~nav {
    width: 100vw;
    right: 0;
    box-shadow: 0 0 20px 0 rgba(0, 0, 0, .4);
}

@media (min-width: 600px) {
    #menuChk:checked~nav {
        width: 30rem;
        right: 0;
    }
}

/* Hamburger white when navi open*/

#menuChk:checked~nav .menu {
    background: #fff url('/images/exit.svg') no-repeat center/60%;
    margin: 0;
    right: 1rem;
}

/* Hamburger transform to cross for close */

#menuChk:checked~nav .menu div:nth-child(1) {
    transform: rotate(45deg);
}

/* Hamburger transform 3. Div to cross for close */

#menuChk:checked~nav .menu div:nth-child(3) {
    transform: rotate(-45deg);
}

/* Hamburger hides 2. div */

#menuChk:checked~nav .menu div:nth-child(2) {
    opacity: 0;
}

#menuChk~nav .main-navi {
    display: none;
}

#menuChk:checked~nav .main-navi {
    display: flex;
}

#menuChk:checked~nav .main-navi a {
    display: flex;
    opacity: 1;
}

@media (max-height: 600px) {
    nav {
        padding-top: 6rem;
        height: calc(100% + 10px);
    }
    #menuChk:checked~nav .menu {
        top: 1rem;
    }
}

/* Fixed Header */

.pageHeader {
    background: var(--grey);
    position: fixed;
    top: 0;
    width: 100vw;
    height: auto;
    z-index: 1000;
    box-shadow: 0 2px 20px rgba(0, 0, 0, .5);
}

/* Static Header For Questionare + Aggregation */

.pageHeader.noNavi, .notranslate .pageHeader.noNavi {
    position: static;
    margin-top: 0;
    box-shadow: none;
}

/* Fixed header space compensation */

.page.body-content {
    padding-top: 10vh;
}

/* CTA Form fixed for intro */

.formCode:not(.modal) .emailentry.sticky .container .col__rgt {
    background: #000;
    position: fixed;
    z-index: 100;
    /* important for mobile */
    top: 60vh;
    right: 0;
    height: 40vh;
    /* hides content that flashes when scrolling up quickly */
    width: 100vw;
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    padding: 6rem 0 0 0;
}

@media (max-width: 999px) {
    .formCode:not(.modal) .emailentry.sticky .container .col__rgt {
        left: 0;
        padding: 3rem 0 0 0;
    }
}

@media (max-width: 500px) and (max-height: 670px) {
    section>.container, .emailentry>.container {
        margin-left: unset;
        margin-right: unset;
    }
    .formCode.modal {
        background: #fff;
    }
    .formCode:not(.modal) .emailentry.sticky .container .col__rgt {
        top: 50vh;
        height: 45vh;
        padding: 0;
    }
}

@media (max-width: 360px) and (max-height: 480px) {
    .formCode:not(.modal) .emailentry.sticky .container .col__rgt {
        top: 45vh;
        height: 55vh;
        padding: 0;
    }
}

.formCode:not(.modal) .emailentry.sticky .container .col__rgt .formwrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    width: 100vw;
}

.doIt h2 {
    margin-bottom: 0;
}

@media (min-width: 1000px) {
    .formCode:not(.modal) .emailentry.sticky .container .col__rgt {
        background: #000;
        top: 10vh;
        right: 0;
        z-index: 99;
        height: 90vh;
        align-items: flex-end;
        justify-content: center;
        padding: 0;
        text-align: left;
    }
    .formCode:not(.modal) .emailentry.sticky .container .col__rgt .formwrapper {
        padding: 0 1rem;
        margin-left: auto;
        width: 40vw;
    }
    .doIt h2 {
        margin-bottom: auto;
    }
}

/* Intro + Intro-Animations */

.intro {
    background-color: #000;
    width: 100%;
    position: relative;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    margin-top: -10vh;
}


.intro .col__lft {
    flex: 0 0 100%;
    width: 100%;
}

.introAnimInner {
    background: linear-gradient(to right, rgba(0,0,0,.5), rgba(0,0,0,.5)), url('/images/iconTapete.svg') repeat top center;
    background-size: contain;
    height: 100vh;
    width: 100vw;
    display: flex;
    align-items: center;
}
.introAnimInner h2 {
    position: absolute;
    top: 0;
    height: 90vh;
    width: 100vw;
    margin: 10vh 0 0;
}

.introAnimInner h2 span {
    padding-left:20%;
	padding-right:20%;
}


.introAnim h2 span i {
	position:relative;
	top:-2vh;
    color: var(--primary);
}

@media (max-width: 799px) {

	.introAnim h2 span i {
		top:-1vh;
	}
}

.introAnim h2 span i {
    font-family:var(--font-bold);
}

.introAnim h2 span i.clrAccent {
    color: var(--black);
	font-family:var(--font-primary);
}
/*
.introAnimInner h2:nth-child(4) span {
    background: url('/images/iconGraphFlashCloudFront.svg') no-repeat top 60% center;
    background-size: 50%;
}
@media (max-width: 990px) {
    .introAnimInner h2:nth-child(4) span {
        background: url('/images/iconGraphFlashCloudFront.svg') no-repeat top 55% center;
        background-size: 50%;
    }
}
*/

.introAnim h2:nth-child(1) span { 
    background: url('/images/ww_iconMessage.svg') no-repeat center;
    background-size: 70%;
}
.introAnim h2:nth-child(2) span { 
    background: url('/images/ww_iconMessage.svg') no-repeat center;
    background-size: 87%;
}
.introAnim h2:nth-child(3) span { 
    background: url('/images/ww_iconMessage.svg') no-repeat center;
    background-size: 85%;
}
.intro .col_rgt {
    flex: 0 0 100%;
    height: 50vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin-top: 10vh;
    position: relative;
}

.intro .col__rgt .formwrapper {
    display: flex;
}

.intro .formwrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    margin-top: -10vh;
}

.intro .formwrapper .btn.btnChk {
    opacity: 1;
	background: #fff;
	color: var(--primary);
	border: 2px solid var(--primary);
 }

.intro .formwrapper .btn.btnChk.disabled {
    opacity: 1;
    background: var(--primary);
    color: #fff;
    border: 2px solid var(--primary);
 }

 .intro .formwrapper input {
     font-size: 2rem;
     margin: 1rem 0 1.6rem;
     padding: 1rem 2rem;
     width: 29rem;
	 border:1px solid #fff;
 }

@media (max-width: 800px) {
    .intro .col_rgt {
        height: 50vh;
    }
}

/* Intro Desktop/Tablet */
@media (min-width: 800px) {
    .intro {
        flex-wrap: nowrap;
    }
    .intro .col__lft {
        flex: 0 0 50%;
    }
    .introAnim h2 span {
        width: 50vw;
        font-size: 5vw;
    }
    .introAnimInner,
    .introAnimInner h2 {
        width: 50vw;
    }

    .intro .col_rgt {
        flex: 0 0 50%;
        height: 90vh;
    }
}

.translate .introAnim h2 span.en {
    display: flex;
}

/* Skip link to next section */

.skip {
    cursor: pointer;
    width: 40px;
    height: 40px;
    position: absolute;
    z-index: 500;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    text-indent: -999999px;
    background: url("/images/chevron-down.svg") no-repeat center;
}

@media (max-width: 500px) and (max-height: 680px) {
    .skip {
        bottom: 20px;
    }
}

/* Registrierung */

.formCode {
    padding: 0;
}

.formCode .exit {
    width: 40px;
    height: 40px;
    display: block;
    position: fixed;
    top: 10px;
    right: 10px;
    background: url('/images/exit-white.svg') no-repeat center;
    background-size: 50%;
    text-indent: -10000px;
    cursor: pointer;
    z-index: 1;
}

.formCode .exit:hover, .formCode .exit:focus {
    opacity: .5;
}

@media (max-width: 600px) and (max-height: 700px) {
    .formCode .exit {
        right: 2rem;
        background-image: url('/images/exit.svg');
    }
}

.loginBox, .legalConsent {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 4rem 1.4rem;
    font-size: 2rem;
    text-align: center;
}

.legalConsent {
    align-items: start;
    color: var(--grey);
    font-size: 2rem;
    text-align: left;
}

.legalConsent h2, .legalConsent p {
    text-align: left;
    width: 100%;
}

.legalConsent label {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 20px 10px auto;
    -ms-grid-rows: 1fr;
    grid-template: 1fr / 20px auto;
    grid-gap: 1rem;
    align-self: left;
    width: 100%;
    max-width: 300px;
    margin-bottom: 1rem;
}

.legalConsent label a {
    text-align: left;
	position:relative;
	top:-3px;
}

.legalConsent .btn {
    margin: 2rem auto;
}

.legalConsent label a::after {
    content: "";
    display: inline-block;
    background-image: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiIHN0YW5kYWxvbmU9Im5vIj8+PCEtLSBHZW5lcmF0b3I6IEdyYXZpdC5pbyAtLT48c3ZnIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgeG1sbnM6eGxpbms9Imh0dHA6Ly93d3cudzMub3JnLzE5OTkveGxpbmsiIHN0eWxlPSJpc29sYXRpb246aXNvbGF0ZSIgdmlld0JveD0iMCAwIDExLjI1IDExLjI1IiB3aWR0aD0iMTEuMjVwdCIgaGVpZ2h0PSIxMS4yNXB0Ij48ZGVmcz48Y2xpcFBhdGggaWQ9Il9jbGlwUGF0aF9TanBCU0NFbDIyd1hBeG9BVTZXOGowMnptRVZiWDNaZyI+PHJlY3Qgd2lkdGg9IjExLjI1IiBoZWlnaHQ9IjExLjI1Ii8+PC9jbGlwUGF0aD48L2RlZnM+PGcgY2xpcC1wYXRoPSJ1cmwoI19jbGlwUGF0aF9TanBCU0NFbDIyd1hBeG9BVTZXOGowMnptRVZiWDNaZykiPjxnPjxwYXRoIGQ9IiBNIDEwIDEwIEwgMS4yNSAxMCBMIDEuMjUgMS4yNSBMIDUuNjI1IDEuMjUgTCA1LjYyNSAwIEwgMCAwIEwgMCAxMS4yNSBMIDExLjI1IDExLjI1IEwgMTEuMjUgNS42MjUgTCAxMCA1LjYyNSBMIDEwIDEwIFogIE0gNi44NzUgMCBMIDYuODc1IDEuMjUgTCA5LjExOSAxLjI1IEwgMi45NzUgNy4zOTQgTCAzLjg1NiA4LjI3NSBMIDEwIDIuMTMxIEwgMTAgNC4zNzUgTCAxMS4yNSA0LjM3NSBMIDExLjI1IDAgTCA2Ljg3NSAwIFogIiBmaWxsPSJyZ2IoMjU1LDI1NSwyNTUpIi8+PC9nPjwvZz48L3N2Zz4=);
    background-repeat: no-repeat;
    background-position: top center;
    background-size: 10px;
    margin: 0 3px 0 5px;
    width: 10px;
    height: 10px;
}

.legalConsent .btn {
    margin: 2rem auto;
}

.legalConsent .eingabe {
    align-self: start;
    -ms-grid-column: 1;
    grid-column: 1;
    background: #ffffff;
    transform: scale(2);
    margin-right: 10px;
    -webkit-appearance: none;
    appearance: none;
    border: 1px solid var(--primary);
    width: 1rem;
    height: 1rem;
    -webkit-transition: all 0.2s ease;
    transition: all 0.2s ease;
}

.legalConsent .eingabe:checked {
    background: var(--primary);
}

@media (max-width: 700px) and (max-height: 800px) {
    .modal .legalConsent {
        margin-top: 90px;
        position: static;
        transform: translate(0, 0);
        overflow-y: scroll;
        width: 100%;
    }
}

.emailentry .eingabe {
    padding: 1rem;
    margin: 2rem 0;
    width: calc(100% - 1rem);
    border: 1px solid var(--primary);
}

.formCode:not(.modal) .emailentry .eingabe {
    border: none;
    display: block;
    margin-top: 6rem;
}

.formCode:not(.modal) .exit, .formCode:not(.modal) .legalConsent, .formCode:not(.modal) .loginBox {
    display: none;
}

/* Radio Button Styles */

[type="radio"]:checked, [type="radio"]:not(:checked) {
    position: absolute;
    left: -9999px;
}

[type="radio"]:checked+label, [type="radio"]:not(:checked)+label {
    position: relative;
    padding-left: 24px;
    cursor: pointer;
    line-height: 20px;
    display: inline-block;
    color: #666;
    margin-left: 10px;
}

label[for=male] {
    margin-left: 0px !important;
}

[type="radio"]:checked+label:before, [type="radio"]:not(:checked)+label:before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 18px;
    height: 18px;
    border: 2px solid var(--primary);
    border-radius: 100%;
    background: #fff;
    -webkit-appearance: none;
}

[type="radio"]:checked+label:after, [type="radio"]:not(:checked)+label:after {
    content: '';
    width: 14px;
    height: 14px;
    background: var(--primary);
    position: absolute;
    top: 2px;
    left: 2px;
    border-radius: 100%;
    -webkit-transition: all 0.2s ease;
    transition: all 0.2s ease;
}

[type="radio"]:not(:checked)+label:after {
    opacity: 0;
    -webkit-transform: scale(0);
    transform: scale(0);
}

[type="radio"]:checked+label:after {
    opacity: 1;
    -webkit-transform: scale(1);
    transform: scale(1);
}

/* End Radio Button Styles */

#dialog {
    display: none;
    position: absolute;
    z-index: 1000000;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: #0ff;
    padding: 50px;
}

/* Login section */

.loginCode {
    padding: 0;
}

.modal .emailentry, .modal .loginBox, .modal .legalConsent {
    width: 95%;
    max-width: 600px;
    background: #fff;
    color: var(--grey);
    padding: 4rem 3rem;
    margin-top: 0;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

@media (max-width: 400px) {
    .modal .emailentry, .modal .loginBox, .modal .legalConsent {
        padding: 3rem 1rem 1rem;
    }
}

.modal .legalConsent {
    align-items: flex-start;
}

#Code {
    background-image: url(/images/sqX6.png);
	background-size: contain;
	background-repeat: no-repeat;
	width: 174px;
	height: 44px;
    border: 1px solid white;
    border-left: var(--grey);
	font-family: monospace;
	font-size: 30px;
	padding-left: 5px;
	padding-right: 6px;
	letter-spacing: 11px;
	font-weight: bold;
}

#Code:focus {
	background-color: transparent;
}

.loginBox input, .loginBox a {
    margin: 0 auto 15px auto;
}

.emailentry .eingabe {
    display: block;
    font-size: 2rem;
    margin: 1rem 0 1.6rem;
    padding: 1rem 2rem;
    width: 29rem;
}

@media (min-width: 700px) {
    .loginBox, .legalConsent {
        width: calc(70% - 6rem);
        max-width: 70ch;
        margin: -5rem auto auto;
        padding: 5rem 2rem;
        border: none;
        -webkit-appearance: none;
    }
    .modal .emailentry, .modal .legalConsent {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        margin-top: 0;
    }
}

@media (max-width: 360px) and (max-height: 480px) {
    .page.body-content {
        overflow-x: hidden;
    }
    .emailentry .eingabe, .emailentry.sticky .eingabe {
        width: 28rem;
        padding: .5rem 1rem;
    }
}

.loginBox {
    margin-top: 5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.loginLabel {
    display: block;
    font-size: 2rem;
}

.legalConsent, .modal .legalConsent {
    align-items: start;
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr 2fr 1fr;
    -ms-grid-rows: auto auto auto;
    grid-template: repeat(3, auto) / 1fr 2fr 1fr;
}

.legalConsent h2 {
    -ms-grid-row: 1;
    -ms-grid-column: 1;
    -ms-grid-column-span: 3;
    grid-row: 1;
    grid-column: 1/-1;
    text-align: center;
}

.userInfo {
    -ms-grid-row: 2;
    grid-row: 2;
    -ms-grid-column: 2;
    grid-column: 2;
}

.userLegalCheck {
    -ms-grid-row: 3;
    grid-row: 3;
    -ms-grid-column: 2;
    grid-column: 2;
    font-size: 1.6rem;
}

.legalConsent h2, .legalConsent p {
    width: 100%;
}

/* Legal Consent User Info */

.userInfo>p {
    display: flex;
    min-width: 300px;
    margin-bottom: .75rem;
    line-height: 1;
}

.userAge {
    margin-top: 1.5rem;
    font-size: 2rem;
}

.userGender span, .userAge span {
    display: inline-flex;
    align-items: center;
}

.userGender span label {
    margin-bottom: 0;
}

.userAge+select, .userName+input {
    /*Select Box Alter*/
    border: 1px solid var(--primary);
    border-width: 2px;
    padding: .5em 1em;
    margin-bottom: 2em;
    width: 300px;
}

.legalDisclaimer {
    line-height: 1;
    margin-bottom: 1rem;
}

@media (max-width: 480px) and (max-height: 680px) {
    .modal .legalConsent {
        width: 100vw;
        min-height: 100vh;
        padding: 0;
        display: block;
        position: static;
        transform: none;
        grid-template-columns: 1fr;
        overflow-x: hidden;
    }
    .modal .legalConsent h2 {
        font-size: 1.8rem;
        margin: 2.5em 2rem 1em;
        text-align: left;
    }
    .modal .userInfo, .modal .userLegalCheck {
        -ms-grid-column: 1;
        grid-column: 1;
    }
    .modal .userAge+select {
        width: 250px;
        margin-left: 2rem;
        font-size: 2rem;
    }
    .modal .userInfo>p {
        padding-left: 2rem;
    }
    .modal .userLegalCheck {
        margin-left: 2rem;
    }
    .modal .legalConsent .btn {
        margin: 0;
    }
    .formCode .exit {
        top: .5rem;
        right: 1rem;
    }
}

/* Email Entry Extra */

.emailentry {
    color: #fff;
    display: flex;
    flex-direction: column;
    padding: 6rem 2rem;
}

.formCode:not(.modal) .emailentry .col__lft {
    padding: 0 2rem;
    position: relative;
    flex: 0 1 60%;
}

.formCode:not(.modal) .emailentry.sticky .col__lft {
    display: none;
}

.formCode:not(.modal) .emailentry:not(.sticky) .col__lft {
    flex: 0 0 100%;
    order: 1;
    padding: 6vw 6vw 0;
}

.formCode:not(.modal) .emailentry:not(.sticky) .col__rgt {
    flex: 0 0 100%;
    /* text-align: center; */
}

@media (min-width: 1000px) {
    .formCode:not(.modal) .emailentry:not(.sticky) .col__lft {
        flex: 0 0 50%;
        order: 1;
        padding: 0 0 0 3rem;
    }
    .formCode:not(.modal) .emailentry:not(.sticky) .col__rgt {
        flex: 0 0 50%;
        order: 0;
    }
}

.formCode:not(.modal) .emailentry .col__rgt {
    flex-direction: column;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    position: relative;
    flex: 0 0 40%;
}

.formCode:not(.modal) .emailentry:not(.sticky) {
    justify-content: center;
}

.emailentry .btn.btnChk {
    opacity: 1;
	background: #fff;
	color: var(--primary);
	border: 2px solid var(--primary);
 }

.emailentry .btn.btnChk.disabled {
    opacity: 1;
    background: var(--primary);
    color: #fff;
    border: 2px solid var(--primary);
 }

.modal .emailentry .btn__primary.btnChk.disabled {
    border: 2px solid rgba(47, 47, 47, .5);
}

@media (min-width: 1000px) {
    .formCode:not(.modal) .emailentry {
        padding: 0;
    }
    .formCode:not(.modal) .emailentry .container {
        display: flex;
        flex-direction: row;
        align-items: flex-start;
        padding: 10vh 3rem;
    }
}

.modal .emailentry .col__rgt {
    flex: 0 1 100%;
    background: #fff;
}

.modal .emailentry {
    background-color: #fff;
    color: var(--grey);
}

.modal .sticky .formwrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.modal .emailentry .eingabe {
    border: 2px solid var(--grey);
}

@media (max-width: 999px) {
    .formCode:not(.modal) .emailentry:not(.sticky) {
        text-align: center;
        min-height: unset;
        padding: 10vh 0;
    }
    .formCode:not(.modal) .emailentry:not(.sticky) .formwrapper {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        width: 100vw;
    }
    .formCode:not(.modal) .emailentry:not(.sticky) .col__rgt .btn.btn__primary.btnChk, .formCode:not(.modal) .emailentry:not(.sticky) .col__rgt .btn.btn__primary.btnChk.disabled {
        margin-top: 2rem;
    }
    .coop {
        padding: 10vh 0;
    }
}

/* Project Infos Section */

.project__info {
    background-color: var(--grey);
    display: flex;
    align-items: center;
    padding-top: 10vh;
}

/* Exhibition Section */

.exhibition {
    background-color: #000;
    display: flex;
    align-items: center;
}

/* Teaser Embed Snippet Section*/

.teaser {
    background-color: var(--grey);
    display: flex;
    align-items: center;
}

.teaser .col__rgt {
    padding-top: 6vh;
}

@media (min-width: 1000px) {
    .teaser .col__rgt {
        padding-top: 0;
    }
}

.project__info, .exhibition, .teaser {
    height: auto;
    padding: 4vh;
    text-align: center;
}

@media (max-width: 999px) and (max-height: 1000px) {
    .project__info, .exhibition, .teaser {
        padding: 10vh 4vh;
    }
}

@media (min-width: 1000px) {
    .project__info, .exhibition, .teaser {
        height: auto;
        padding: 10vh 6vh 10vh;
        /* min-height: 100vh; */
        text-align: left;
    }
    .project__info {
        padding-top: 10vh;
    }
}

.project__info .container.flex .col__lft, .exhibition .container.flex .col__lft, .teaser .col__lft {
    flex: 0 0 100%;
}

.project__info .container.flex .col__rgt, .exhibition .container.flex .col__rgt, .teaser .col__rgt {
    flex: 0 0 100%;
}

section>.container, .emailentry>.container {
    flex-wrap: wrap;
}

@media (min-width: 1000px) {
    .project__info .col__lft, .project__info .col__rgt, .exhibition .col__lft, .exhibition .col__rgt, .teaser .col__lft, .teaser .col__rgt {
        padding: 6vh 3vh;
    }
    .project__info .container.flex .col__lft, .exhibition .container.flex .col__lft, .teaser .col__lft {
        flex: 0 0 50%;
    }
    .project__info .container.flex .col__rgt, .exhibition .container.flex .col__rgt {
        flex: 0 0 50%;
    }
    .teaser .col__rgt {
        flex: 0 0 50%;
        display: flex;
        justify-content: center;
        margin-left: auto;
    }
}

@media (max-width: 600px) {
	.teaser .col__lft {
		margin-bottom: 6rem;
	}
}


.teaser {
    background: linear-gradient(to bottom, rgba(0,0,0,.3), rgba(0,0,0,.3)), url('/images/bgDashboardBlendenEffekte.jpg') no-repeat;
    background-size: cover;
    background-position: bottom left;
}

/* Team Konfliktmonitor */

.team {
    color: #fff;
}

.team .container {
    padding: 6rem 3rem;
}

.team .container .col__lft,
.team .container .col__rgt {
    flex: 0 0 100%;
}

.team dt {
    color: rgba(255,255,255,.6);
    text-transform: uppercase;
    font-size: 1.8rem;
    padding-top: .5rem;
}

.team dd {
    padding-bottom: 1rem;
}


/* Kooperationspartner */

.coop {
    background-color: #fff;
    color: var(--grey);
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
}

.coop .container {
    padding: 4rem 3rem;
    margin: 0 auto;
}

@media (max-width: 999px) {
    .coop .container .col__lft {
        display: block;
        width: 100%;
        text-align: center;
    }
}

.coop h2 {
    flex: 0 0 100%;
}

.brands {
    flex: 0 0 100%;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
}

.brands__item {
    display: block;
    flex: 0 0 100%;
    margin: 4rem 0;
}

/* Temporary display none for Coop items */
.brands__item:nth-child(1), .brands__item:nth-child(2) {
    /*display: none;*/
}

.brands__item a {
    display: flex;
    justify-content: center;
    align-items: center;
}

.brands__item img {
    max-width: 60%;
}

@media (min-width: 1000px) {
    .team .container {
        padding: 10vh 6vh;
        margin: 0 auto;
    }
    .team .container .col__lft,
    .team .container .col__rgt {
        flex: 0 0 50%;
    }
    .team,
    .coop {
        min-height: 50vh;
    }
    .coop .container {
        padding: 4rem 3rem;
        margin: 0 auto;
    }
    .coop .container {
        flex-wrap: wrap;
        padding: 6rem 4rem;
    }
    .coop h2 {
        flex: 0 0 100%;
    }
    .brands__item {
        flex: 0 0 25%;
        margin: 0 2rem 0 0;
    }
    .brands__item:last-of-type {
        margin-right: 0;
        outline: none;
    }
    .brands__item a {
        display: block;
    }
    .brand__item img {
        max-width: 100%;
    }

    /* Temporary disabled */
    .brands__item:nth-child(1), .brands__item:nth-child(2) {
        /*display: none;*/
    }
}

/* Hiding items when .modal */

.modal .emailentry .col__lft {
    display: none;
}

/* Additional Content Wrapper for .container */

@media (min-width: 1000px) {
    .contentWrapper {
        width: 100%;
    }
    .contentWrapper .container {
        max-width: 1240px;
        margin: 0 auto;
    }
    .project__info .container.flex .col__lft {
        background-image: url('/images/ww_iconThumb.svg');
		background-repeat:no-repeat;
		background-position:center;
		background-size:contain;
		
    }
    .exhibition .container.flex .col__lft {
        /*background: url('/images/iconGraphExplosionFront.svg') no-repeat top right 50% /50%;*/
    }
}

.container.flex {
    flex-wrap: wrap;
}

/* Footer */

footer {
    background-color: var(--grey);
    color: #fff;
    position: relative;
    left: 0;
    bottom: 0;
    width: 100%;
    padding: 3rem 3rem 1.5rem;
    flex-direction: column;
    align-items: center;
}

.footer-item {
    text-align: center;
    line-height: 2rem;
    margin-top: 2rem;
    display: flex;
    width: 100%;
}

.footer-item:first-child {
    font-size: 1.4rem;
    order: 2;
}

.footer-item a {
    text-decoration: none;
    color: #fff;
    font-size: .8em;
}

.footer-item a:hover, .footer-item a:focus {
    color: rgba(255, 255, 255, .7);
    text-decoration: underline;
}

.footer-item .divider::after {
    content: " | ";
    margin: 0 1rem;
}

.top img {
    width: 20px;
}
  
.top {
    order: 3;
    margin-left: auto;
}
.footer-item.social {
    justify-content: flex-start;
}

@media (min-width: 1000px) {
    footer {
        flex-direction: row;
    }
    .footer-item:first-child {
        order: 0;
    }
    .top {
        margin-left: 2rem;
    }
    .footer-item {
        text-align: left;
        margin-top: 0;
        display: flex;
    }
    .footer-item a:hover, .footer-item a:focus {
        color: rgba(255, 255, 255, .7);
        text-decoration: none;
    }
    .footer-item .divider::after {
        content: " | ";
        margin: 0 1rem;
    }
    .footer-item a[href='#top'] {
        order: 3;
        position: static;
        width: 30px;
        margin-left: 1.4rem;
    }
}

/* Footer link #Top */

.footer-item a[href='#top'] {
    display: inline-block;
    position: absolute;
    bottom: 3rem;
    right: 1rem;
    width: 30px;
}

.footer-item a[href="#top"] img {
    height: 20px;
}

@media (min-width: 1000px) {
	/*
    .hasUnderline::after {
        content: "";
        width: 70%;
        height: 2px;
        background: var(--primary);
        margin: 4px 0 0;
        display: inline-block;
        transition: all .5s ease-in-out;
    }
    .hasUnderline:hover::after {
        width: 100%;
    }
	*/
}

/* Footer Social Share */

.footer-item.social {
    display: flex;
    margin-top: 0;
}

.footer-item.social a {
    display: inline-block;
    padding: 0 1rem;
    margin: 0 1rem;
}

.footer-item.social a:hover {
    opacity: .7;
}

.footer-item.social a::after {
    content: "";
    display: none;
}

.footer-item.social a img {
    width: 40px;
    height: 40px;
}

.footer-item.social a:last-child img {
    width: 20px;
}

@media (max-width: 600px) {
    .footer-item.social {
        justify-content: flex-start;
    }
    .footer-item {
        display:flex;
        width: 100%;
    }
    .footer-item.social a {
        padding: 0;
    }
}

@media (min-width: 801px) {
	/*
    .hasUnderline::after {
        content: "";
        width: 70%;
        height: 2px;
        background: var(--primary);
        margin: 4px 0 0;
        display: inline-block;
        transition: all .5s ease-in-out;
    }
    .hasUnderline:hover::after {
        width: 100%;
    }
	*/
    .footer-item:last-of-type {
        justify-content: flex-end;
    }
    .footer-item.social {
        justify-content: center;
    }

}

/* Language Seite */

.language {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    justify-content: center;
    height: 100vh;
    padding: 5vh 0;
    margin-top: -10vh; /* Compensation for Header Space above */
}

@media (min-width: 480px) {
    .language {
        display: flex;
        padding: 30vh 0 30vh 0;
    }
}

.language .lang {
    flex: 0 0 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-self: center;
    text-align: center;
}

@media (min-width: 640px) {
    .language .lang h1::after {
        content: "/";
        padding: 0 1rem;
    }
}

.btnLang {
    padding-left: 6rem;
}

.de-btn, .en-btn {
    display: inline-block;
    position: relative;
    margin: 2rem auto;
}

.de-btn span, .en-btn span {
    width: 50px;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background-color: var(--grey);
    background-position: center;
    background-repeat: no-repeat;
    background-size: 85%;
    border: .3rem solid var(--grey);
}

.de-btn span {
    background-image: url(/images/icon-germ-flag-circle-bw.svg);
}

.en-btn span {
    background-image: url(/images/icon-union-jack-circle-bw.svg);
}

/* Questionare */

.wrapper.questions {
    max-width: 1250px; height:auto; min-height:100vh;
    padding: 1.5rem 1.5rem;
    margin-top: -10vh/* Intro compensation */
}

@media (min-width: 801px) {
    .wrapper.questions {
         height:auto; min-height:auto;
    }
}

@media (max-width: 800px) {
	.card-header-title h1 {
		font-size:3.9rem !important;
	}
	
	.question header h2.hideOnSeparator,
	.question-info .answers {
		font-size:3.4rem !important;
	}
}

.questionare .question {
    background-color: #000;
    padding: 0;
}

.questionare .question header {
    border: none;
    display: flex;
    flex-direction: column;
    align-items: center;
    line-height: 1;
    padding: 1rem 0;
}

.progress {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 2rem 0 3rem;
    margin-right: 2rem;
    align-self: flex-end;
}

@media (max-width: 999px) {
    .progress {
        padding: 0 0 4rem;
        margin-right: 0;
        align-self: center;
    }
}

.progress .breadcrump {
    display: inline-block;
    font-size: 1.6rem;
    padding: 1rem;
}

.progressWrap {
    background: #ddd;
    display: inline-block;
    padding: 0;
    border-radius: 50px;
    line-height: 0;
    height: 11px;
    border: none transparent;
	position:relative;
}

progress {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background: transparent;
    border: none transparent;
    position: relative;
}

progress[value]::-webkit-progress-bar {
    background-color: transparent;
    border-radius: 50px;
    height: 11px;
    border: none transparent;
}

progress[value]::-webkit-progress-value {
    background-color: var(--grey);
	border-radius: 50px;

}

progress[value]::-moz-progress-bar {
    background-color: var(--grey);
    border-radius: 50px;
    height: 9px;
    margin-top: 1px;
}

.card-header-title {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    text-align: center;
    line-height: 1;
}

.card-header-title h1 {
	line-height: 1.3;
	color: var(--white);
	font-size: 4.5rem;
	letter-spacing: .5px;
	padding:0 1.5rem;
	margin-bottom:1rem;
}

.card-header-title span {
    display: block;
    margin-bottom: 1rem;
}

.question header h2.hideOnSeparator {
    text-align: center;
    text-transform: inherit;
    font-family: var(--font-primary);
    font-size: 4rem;
	margin-bottom:0;
}

.question header h2.hideOnSeparator span {
	font-size: .6em;
	display: block;
	font-weight: normal;
	padding-bottom: 20px;
}

@media (min-width: 600px) {
    .question header h2.hideOnSeparator {
        margin-bottom: 5rem;
    }
    .card-header-title {
        flex-wrap: wrap;
        line-height: 1;
        justify-content: center;
        padding-bottom: 3rem;
    }
    .card-header-title h1 {
        color:var(--white);
        line-height: 1;
        padding: 0;
        margin: 0;
    }
    .card-header-title span {
        align-self: stretch;
        display: inline-block;
        margin-bottom: 0;
    }
}

.question-info {
	display: flex;
	padding: 3rem 0 3rem;
	line-height: 1.3;
	gap: 40px;
	justify-content: center;
	flex-wrap: wrap;
}

.question-info .quote {
	position:absolute;
    display: none;
    padding: 4rem 1.5rem 3rem;
    font-size: 2.4rem;
    text-align: center;
}

@media (min-width: 750px) {
    .question-info .quote {
        padding: 0 3rem 3rem;
    }
}

@media (min-width: 900px) {
    .question-info .quote {
        padding: 0 6rem 3rem;
    }
}

.quote b {
    font-weight: normal;
}

.question-info .top1,
.question-info .top2 {
    -ms-grid-row: 1;
    grid-row: 1;
    -ms-grid-column: 1;
    grid-column: 1;
    margin-left: 6rem;
    width: 5rem;
}

.question-info .top2 {
    -ms-grid-column: 2;
    grid-column: 2;
    grid-row: 1;
}

.question a.answers.btn.btn__primary {
	/*
    width: 100%;
    margin-left: auto;
    margin-right: auto;
	*/
}

.question-info .answers {
	text-align: center;
	font-size: 4rem;
	flex: 1 0 auto;
	min-width: calc(50% - 20px);
}

@media (max-width: 800px) {
    .question-info .answers {
		flex: 1 0 100%;
	}
}

/*
.question-info .quote:nth-of-type(1) {
    -ms-grid-row: 2;
    grid-row: 2;
}

.question-info .quote:nth-of-type(2) {
    -ms-grid-row: 2;
    grid-row: 2;
}
*/

.question-info h3 {
    display: none;
}

.question-info .bottom1,
.question-info .bottom2 {
    -ms-grid-row: 4;
    grid-row: 3;
    -ms-grid-column: 1;
    grid-column: 1;
    margin-left: auto;
    margin-right: 6rem;
}

.question-info .bottom2 {
    -ms-grid-column: 2;
    grid-column: 2;
    grid-row: 3;
}

/*
.question-info .answers.btn:nth-of-type(1) {
    -ms-grid-row: 5;
    grid-row: 4;
}

.question-info .answers.btn:nth-of-type(2) {
    -ms-grid-row: 5;
    grid-row: 4;
}
*/

@media screen and (-ms-high-contrast: active), screen and (-ms-high-contrast: none) {  
    /* IE10+ specific styles go here */
	/*
    .question-info .answers.btn:nth-of-type(1),
    .question-info .answers.btn:nth-of-type(2) {
        width: 70%
    }
    .teaser .container.flex,
    section > .container, .emailentry > .container,
    .container.flex {
        flex-wrap: nowrap;
    }
    .coop .container.flex {
        flex-wrap: wrap;
    }
    .userLegalCheck label span {
        -ms-grid-column: 3;
        grid-column: 3;
        margin-left: 3rem;
        display: inline-block;
    }
    label[for*='NL'] span {
        margin-left: 0px;
    } 
    .teaser .col__rgt .tsrCard {
        margin-left: 0px;
    }
    .project__info .container.flex .col__rgt,
    .exhibition .container.flex .col__rgt {
        flex: 0 0 40%;
    }  
		*/
 }

@media (min-width: 850px) {
	
	/*
    .question-info {
        -ms-grid-columns: 1fr 1fr;
        -ms-grid-rows: auto auto auto auto auto;
        grid-template: repeat(4, auto) / repeat(2, 1fr);
        grid-column-gap: 4rem;
    }
    .question-info h2 {
        display: block;
        -ms-grid-column-span: 2;
        grid-column: 1/-1;
        font-size: 2rem;
        margin: auto;
        padding: 2rem 0 2rem 0;
    }
    .question-info .quote:nth-of-type(1) {
        -ms-grid-row: 2;
        -ms-grid-column: 1;
        grid-row: 2;
        grid-column: 1;
    }
    .question-info .quote:nth-of-type(2) {
        -ms-grid-row: 2;
        grid-row: 2;
        -ms-grid-column: 2;
        grid-column: 2;
    }
    .question-info h2 {
        display: block;
        grid-row: 2;
        grid-column: 1/-1;
    }
    .question-info .answers.btn:nth-of-type(1) {
        -ms-grid-row: 5;
        -ms-grid-column: 1;
        grid-row: 4;
        grid-column: 1;
    }
    .question-info .answers.btn:nth-of-type(2) {
        -ms-grid-row: 5;
        -ms-grid-column: 2;
        grid-row: 4;
        grid-column: 2;
    }
	*/
}

@media (max-width: 900px) {
	/*
    .question-info .top1, .question-info .top2 {
        justify-self: center;
        margin-left: 0;
        margin-bottom: 1rem;
    }
    .question-info .answers {
        justify-self: center;
        align-self: center;
      }
	  */
}

@media (max-width: 767px) {
	/*
    .questions .pageHeader.noNavi .exit {
        right: 24px;
    }

	.question-info {
		display: -ms-grid;
		display: grid;
		-ms-grid-columns: 1fr;
		grid-template-columns: 1fr;
		-ms-grid-rows: 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr;
		grid-template-rows: repeat(8,auto);
	  }
	  
	  .question-info .top1 {
		-ms-grid-column: 1;
		grid-column: 1;
		-ms-grid-row: 1;
		grid-row: 1;
	  }
	  
	  .question-info .answers {
		margin-bottom: 6rem;
	  }
	  
	  .question-info .quote:nth-of-type(1) {
		-ms-grid-column: 1;
		grid-column: 1;
		-ms-grid-row: 2;
		grid-row: 2;
		padding-top: 0;
	  }

	  .question-info .answers.btn:nth-of-type(1) {
		-ms-grid-column: 1;
		grid-column: 1;
		-ms-grid-row: 4;
		grid-row: 4;
	  }
	  
	  .question-info .top2 {
		-ms-grid-column: 1;
		grid-column: 1;
		grid-row: 5;
		-ms-grid-row: 5;
		margin-top: 3rem;
		transform: scaleX(-1);
	  }

	  .question-info .quote:nth-of-type(2) {
		-ms-grid-column: 1;
		grid-column: 1;
		-ms-grid-row: 6;
		grid-row: 6;
		padding-top: 0;
	  }
	  
	  .question-info .answers.btn:nth-of-type(2) {
		-ms-grid-column: 1;
		grid-column: 1;
		-ms-grid-row: 7;
		grid-row: 7;
	  }  
	  */
}

/* Seperator intersection between questions */

.seperator.reaction {
    display: none;
}

.seperator.reaction.show {
    display: flex;
}

.seperator.reaction {
    width: 100%;
    height: 100vh;
    position: fixed;
    top: 0;
    right: 0;
    z-index: 99;
    background: #000;
    border-radius: 0;
    animation: none;
    opacity: 1;
}

.seperator.reaction .inner {
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    width: 100%;
    font-family: var(--font-primary);
    font-size: 2.6rem;
    position: absolute;
    top: 30%;
    left: 50%;
    transform: translate(-50%, -25%);
}

.seperator.reaction .inner #perc {
    color: var(--primary);
    font-family: var(--font-bold);
    font-size: 15rem;
    line-height: 1;
}

.seperator.reaction .inner .de {
    flex: 0 0 100%;
    text-align: center;
    text-transform: uppercase;
}

.seperator.reaction .inner #perc .de, .seperator.reaction .inner #perc .en {
    flex: 0 0 100%;
}

.seperator.reaction .inner #perc::after {
    content: "%";
    font-size: 10rem;
}

/* Gears */

.seperator.reaction .animated.loader {
    height: auto;
    display: block;
    font-family: var(--font-primary);
}

.seperator.reaction .animated.loader .container {
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* Question Separator Reaction Animtion */

.machine {
    width: 150px;
    fill: #ffffff;
}

.small {
    -webkit-animation: counter-rotation 2.5s infinite linear;
    -moz-animation: counter-rotation 2.5s infinite linear;
    -o-animation: counter-rotation 2.5s infinite linear;
    animation: counter-rotation 2.5s infinite linear;
    -webkit-transform-origin: 100.136px 225.345px;
    -ms-transform-origin: 100.136px 225.345px;
    transform-origin: 100.136px 225.345px;
}

.medium {
    -webkit-animation: rotation 3.75s infinite linear;
    -moz-animation: rotation 3.75s infinite linear;
    -o-animation: rotation 3.75s infinite linear;
    animation: rotation 3.75s infinite linear;
    -webkit-transform-origin: 254.675px 379.447px;
    -ms-transform-origin: 254.675px 379.447px;
    transform-origin: 254.675px 379.447px;
}

.large {
    -webkit-animation: counter-rotation 5s infinite linear;
    -moz-animation: counter-rotation 5s infinite linear;
    -o-animation: counter-rotation 5s infinite linear;
    animation: counter-rotation 5s infinite linear;
    -webkit-transform-origin: 461.37px 173.694px;
    -ms-transform-origin: 461.37px 173.694px;
    transform-origin: 461.37px 173.694px;
}

@-webkit-keyframes rotation {
    from {
        -webkit-transform: rotate(0deg);
    }
    to {
        -webkit-transform: rotate(359deg);
    }
}

@-moz-keyframes rotation {
    from {
        -moz-transform: rotate(0deg);
    }
    to {
        -moz-transform: rotate(359deg);
    }
}

@-o-keyframes rotation {
    from {
        -o-transform: rotate(0deg);
    }
    to {
        -o-transform: rotate(359deg);
    }
}

@keyframes rotation {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(359deg);
    }
}

@-webkit-keyframes counter-rotation {
    from {
        -webkit-transform: rotate(359deg);
    }
    to {
        -webkit-transform: rotate(0deg);
    }
}

@-moz-keyframes counter-rotation {
    from {
        -moz-transform: rotate(359deg);
    }
    to {
        -moz-transform: rotate(0deg);
    }
}

@-o-keyframes counter-rotation {
    from {
        -o-transform: rotate(359deg);
    }
    to {
        -o-transform: rotate(0deg);
    }
}

@keyframes counter-rotation {
    from {
        transform: rotate(359deg);
    }
    to {
        transform: rotate(0deg);
    }
}

.seperator.reaction.show .inner .animated.loader {
    animation-name: anim1FadeOut;
    animation-duration: 1500ms;
    animation-delay: 200ms;
    animation-fill-mode: forwards;
}

.seperator.reaction .inner .poll {
    opacity: 0;
    position: absolute;
    top: 25%;
    left: 50%;
    transform: translate(-50%, -25%);
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.seperator.reaction.show .inner .poll {
    animation-name: anim2FadeIn;
    animation-duration: 2500ms;
    animation-delay: 200ms;
    animation-fill-mode: forwards;
}

@keyframes anim1FadeOut {
    from {
        opacity: 1;
    }
    to {
        opacity: 0;
    }
}

@keyframes anim2FadeIn {
    0% {
        opacity: 0;
    }
    50% {
        opacity: 1;
    }
	90% {
        opacity: 1;
    }
    100% {
        opacity: 0;
    }
}

/* Error page */

.container.errorPage .errorInner {
    width: 100vw;
    min-height: 500px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 80vh;
    padding-top: 5vh;
}

.errorInner .btn.btn__primary {
    margin-bottom: auto;
}

/* Shared Card in Dashboard Teaser Home */

.tsrCard {
    color: #fff;
}

.tsrCard:hover {
    color: #fff;
    text-decoration: none;
}

body:not(.translate) .tsrCard .en {
    display: block;
}

.tsrCard {
    display: inline-block;
    margin: 0 auto;
}

.tsrCard .question {
    padding: .8rem 2rem 2rem 2rem;
    position: relative;
    opacity: 1;
    background-color: #000;
    display: block;
    margin-bottom: 0;
    width: 300px;
    max-width: 300px;
    font-size: 2.4rem;
    line-height: 1.1;
    border: none;
    text-align: left;
    box-shadow: none;
}

@media (min-width: 800px) {
    .tsrCard .question {
        box-shadow: -20px 20px 0 0 #11111190, -40px 40px 0 0 #11111190;
    }
}

.tsrCard .question .en {
    font-size: .8em;
}

.tsrCard .question:last-of-type {
    margin-bottom: 0;
}

.tsrCard .question .title .en, .tsrCard .question .en {
    display: block;
    opacity: .65;
}

.tsrCard .question .title {
    color: #5BCCEC;
    margin: 2rem 0;
    line-height: 1;
    overflow-wrap: break-word;
}

.tsrCard .question .title .en {
    margin-top: 10px;
}

.tsrCard .result-group {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr 1fr;
    -ms-grid-rows: auto 1fr auto;
    grid-template: auto 1fr auto / 1fr 1fr;
    position: relative;
    height: 100%;
}

/* position items within */

.tsrCard .question .total-votes {
    height: auto;
    min-width: 50px;
    background: rgb(236, 49, 90);
    color: rgba(255, 255, 255, 1);
    font-size: 1.2rem;
    font-weight: 700;
    text-align: right;
    border-top: 1px solid rgb(236, 49, 90);
    border-right: 1px solid rgb(236, 49, 90);
    padding: .5em;
    position: absolute;
    top: 0px;
    right: 0px;
}

/* All Done Page after Questionare */

.questionare.card.card--done.station {
    min-height: 90vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    /* width: 100vw; */
}

.wrapper.questions.done {
    width: 100vw;
    background: black;
    margin-left: 0;
    margin-right: 0;
    max-width: 100vw;
}

.done.all-stations {
    text-align: center;
}

.doneContent {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 3rem;
}

.card--done header {
    margin-top: 3rem;
}

.card--done h1 {
    text-align: center;
}

.card--done a.btn.btn__secondary,
nav a.btn.btn__secondary {
    display: inline-block;
    width: auto;
    margin-left: auto;
    margin-right: auto;
    margin-top: 1rem;
    margin-bottom: 1rem;
    position: relative;
}

.shareBox {
    background: #A694AD;
    padding: 3rem 3rem 1rem;
    margin-bottom: 3rem;
    width: 70vw;
}

.done .shareBox .menu {
	display: none;
}

.shareBox .embedCode {
    max-width: 70vw;
    text-align: center;
}

.shareBox .socItems {
    justify-content: center;
}

.shareBox > p {
    font-size: 2.2rem;
    font-weight: bold;
    text-align: center;
    letter-spacing: 1px;
}

.shareBox .socItems li {
    margin-left: 1rem;
    margin-right: 1rem;
}

.shareBox hr {
    border: none;
    background-color: rgba(255,255,255,.3);
    height: 2px;
    width: 50vw;
    margin: 3rem auto 1rem;
}

.shareBox h3 {
    font-family: var(--font-primary);
    font-size: calc(14px + (28 - 14) * ((100vw - 320px) / (1600 - 320)));
    text-align: center;
    text-transform: none;
    margin-top: 2rem;
    margin-bottom: 2rem;
}

.shareBox .socItems {
    margin-top: 3rem 0 0;
}

@media (max-width: 400px) {
    .shareBox {
        width: 100vw;
    }
}

@media (max-width: 600px) {
    .introAnim {
        height: 60vh;
    }

    .introAnimInner {
        height: 60vh;
    }

    .introAnimInner h2 {
        height: 60vh;
    }

    .introAnim h2 span {
        height: 50vh;
    }
    .intro .col_rgt {
		height:40vh;
        margin-top: 0;
    }
}

/* Mobile Overrite Intro */
@media (max-width: 400px) {
    .introAnim {
        height: 50vh;
    }

    .introAnimInner {
        height: 50vh;
    }

    .introAnimInner h2 {
        height: 50vh;
    }

    .introAnim h2 span {
        height: 40vh;
    }
    .intro .col_rgt {
		height:50vh;
    }
}

/* NEW FOR WONDERWALL 10/25 */
.freetext p {
	font-size:18px;
}

.freetext textarea {
	width:100%; min-height:200px;
	margin-bottom:20px;
}

.freetext .button-row {
	text-align:center;
}

.freetext p.freetext-skip {
	font-size: 16px;
	margin-top: 40px;
	margin-bottom: 20px;
}

@media (max-width: 600px) {
	.wrapper.questions.freetext {
		padding-top:35px;
	}
}