@font-face {
    font-family: Social Regular;
    src: url(../fonts/ABC-Social/ABCSocialEdu-Regular.woff2), format(".woff2");
}

@font-face {
    font-family: Necto;
    src: url(../fonts/Necto/NectoMono-Regular.woff2), format(".woff2");
}

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

*::selection{
    background-color: yellow;
    color: black;
}

body{
    overflow: hidden;
    
}

/* section{
    display: flex;
    width: 100vw;
} */

.interview-header{
    display: flex;
    width: 100vw;
    height: 3vh;
    background-color: rgb(234, 234, 234);
    align-items: center;
    justify-content: space-between;
    padding-left: 15px;
    padding-right: 15px;
}

.interview-header > h3 {
    margin-right: 10px;
    color: black;
}

.interview-header > section{
    width: 33%;
}

.logo {
    font-family: Social Regular;
    font-size: 20px;
    text-decoration: none;
    color: black;
}

.logo:visited{
    color: black;
}

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

.thesen-container > a{
    width: 20px;
    height: 20px;
    text-align: center;
    background-color: rgb(255, 255, 255);
    color: black;
    font-family: Necto;
    text-decoration: none;
    display: flex;
    justify-content: center;
    align-items: center;
    border-top-left-radius: 15px;
    border-top-right-radius: 15px;
    border-radius: 20px;
    margin-right: 5px;
    /* -webkit-box-shadow: 4px 0px 15px 5px rgba(0,0,0,0.2); 
    box-shadow: 4px 0px 15px 5px rgba(0,0,0,0.2); */
    /* z-index: 0; */
}

a:hover{
    background-color: grey;
    color: white;
}

.active-question{
    background: rgb(255, 255, 0) !important;
    color: black;
    /* -webkit-box-shadow: 0px -11px 14px 5px rgba(0,0,0,0.1) !important; 
    box-shadow: 0px -11px 14px 5px rgba(0,0,0,0.1) !important; */
    /* z-index: 100 !important; */
    pointer-events: none;
}

.logo:hover {
    color: white;
    background-color: grey;
}

#frage-container{
    display: flex;
    width: 100vw;
    height: 12vh;
    /* border-bottom: solid black 2px; */
    z-index: 100;
    background-color: rgb(255, 255, 255);
    -webkit-box-shadow: 0px 10px 20px 5px rgba(0,0,0,0.10); 
    box-shadow: 0px 10px 20px 5px rgba(0,0,0,0.10);
    justify-content: space-between;
    align-items: center;
    padding: 1%;
    padding-right: 0;
}

#frage-container > h2 {
    font-size: 20px;
    width: 70%;
    text-align: left;
    font-family: Necto;
}

#antwortenBox{
    display: flex;
    width: 100vw;
    height: 85vh;
    overflow-x: scroll;
    overflow-y: hidden;
}

h3{
    font-family: Necto;
    line-height: 150%;
    font-weight: lighter;
    color: rgb(138, 138, 138);
}

.button-container{
    display: flex;
    align-items: center;
    /* width: 70vw; */
    justify-content: flex-end;
    /* margin-top: 10px; */
}

.button-container > section {
    /* background-color: red; */
    margin-left: 20px;
    /* width: 100%; */
    /* display: flex; */
}

.button-container > section > div {
    display: flex;
    /* flex-direction: row; */
    align-items: center;
    margin-right: 20px;
}

.checkbox-container{
    display: flex;
    align-items: center;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    touch-action: manipulation;
}

.checkbox-container input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}

.custom-checkbox1 {
    display: block;
    height: 15px;
    width: 15px;
    background-color: white;
    border: 3px solid #5d6cdf;
    margin-right: 10px;
    border-radius: 200px;
}

.checkbox-container:hover{
    cursor: pointer;
}

.checkbox-container:hover #checkbox1 ~ .custom-checkbox1 {
    background-color: unset;
}

.checkbox-container #checkbox1:checked ~ .custom-checkbox1 {
    background-color: #5d6cdf;
}

.custom-checkbox2 {
    display: block;
    height: 15px;
    width: 15px;
    background-color: white;
    border: 3px solid #cd0f48;
    margin-right: 10px;
    border-radius: 200px;
}

.checkbox-container:hover #checkbox2 ~ .custom-checkbox2 {
    background-color: unset;
}

.checkbox-container #checkbox2:checked ~ .custom-checkbox2 {
    background-color: #cd0f48;
}

.custom-checkbox3 {
    display: block;
    height: 15px;
    width: 15px;
    background-color: white;
    border: 3px solid #784E2A;
    margin-right: 10px;
    border-radius: 200px;
}

.checkbox-container:hover #checkbox3 ~ .custom-checkbox3 {
    background-color: unset;
}

.checkbox-container #checkbox3:checked ~ .custom-checkbox3 {
    background-color: #784E2A;
}

.custom-checkbox4 {
    display: block;
    height: 15px;
    width: 15px;
    background-color: white;
    border: 3px solid #9c52f2;
    margin-right: 10px;
    border-radius: 200px;
}

.checkbox-container:hover #checkbox4 ~ .custom-checkbox4 {
    background-color: unset;
}

.checkbox-container #checkbox4:checked ~ .custom-checkbox4 {
    background-color: #9c52f2;
}
.custom-checkbox5 {
    display: block;
    height: 15px;
    width: 15px;
    background-color: white;
    border: 3px solid #FFA301;
    margin-right: 10px;
    border-radius: 200px;
}

.checkbox-container:hover #checkbox5 ~ .custom-checkbox5 {
    background-color: unset;
}

.checkbox-container #checkbox5:checked ~ .custom-checkbox5 {
    background-color: #FFA301;
}
.custom-checkbox6 {
    display: block;
    height: 15px;
    width: 15px;
    background-color: white;
    border: 3px solid #2adc6b;
    margin-right: 10px;
    border-radius: 200px;
}

.checkbox-container:hover #checkbox6 ~ .custom-checkbox6 {
    background-color: unset;
}

.checkbox-container #checkbox6:checked ~ .custom-checkbox6 {
    background-color: #2adc6b;
}
.custom-checkbox7 {
    
    display: block;
    height: 15px;
    width: 15px;
    background-color: white;
    border: 3px solid #E62CE3;
    margin-right: 10px;
    border-radius: 200px;
}

.checkbox-container:hover #checkbox7 ~ .custom-checkbox7 {
    background-color: unset;
}

.checkbox-container #checkbox7:checked ~ .custom-checkbox7 {
    background-color: #E62CE3;
    
}
.custom-checkbox8 {
    display: none;
    height: 15px;
    width: 15px;
    background-color: white;
    border: 3px solid black;
    margin-right: 10px;
    border-radius: 200px;
}

.custom-checkbox8 ~ h3{
    background-color:  rgb(234, 234, 234);
    color: black;
    padding-left: 5px;
    padding-right: 5px;
}

.checkbox-container:hover #checkbox8 ~ .custom-checkbox8 {
    background-color: black;
}

.checkbox-container #checkbox8:checked ~ .custom-checkbox8 {
    background-color: black;
}

.checkbox-container:hover #checkbox8 ~ h3{
    background-color: grey;
    color: white;
}

.checkbox-container #checkbox8:checked ~ h3{
    background-color: rgb(255, 255, 0);
    color: black;
    /* border: 1px solid rgb(178, 178, 178); */
}

#schattenRechts{
    position: fixed;
    width: 5vw;
    height: 100vh;
    right: 0;
    pointer-events: none;
    background: rgb(255,255,255);
    background: linear-gradient(90deg, rgba(255,255,255,0) 0%, rgba(0,0,0,0.1) 100%);
    transition: opacity 700ms;
}

#schattenLinks{
    position: fixed;
    width: 5vw;
    height: 100vh;
    left: 0;
    pointer-events: none;
    background: rgb(255,255,255);
    background: linear-gradient(270deg, rgba(255,255,255,0) 0%, rgba(0, 0, 0, 0.1) 100%);
    transition: opacity 700ms;
}

article{
    min-width: 27vw;
    max-width: 27vw;
    overflow-y: scroll;
    height: 84vh;
    padding:1%;
    color: rgb(178, 178, 178);
    background-color: rgba(255, 255, 0, 0);
    font-family: Social Regular;
    
}

article > span {
    color: rgb(178, 178, 178);
}

article:hover{
    color: black;
    /* -webkit-box-shadow: 0px 5px 15px 5px rgba(0, 0, 0, 0.25); 
    box-shadow: 0px 5px 15px 5px rgba(0, 0, 0, 0.25); */
    /* border-left: 2px solid black;
    border-right: 2px solid black; */
}

.experte-container{
    width: 100%;
    /* background-color: #2adc6b; */
    height: auto;
    margin-bottom: 20px;
    /* border-bottom: black solid 2px; */
    background-color: rgb(234, 234, 234);
}

.experte-name{
    font-size: 30px;
    color: black;
    background-color: rgb(234, 234, 234);
    margin-bottom: 5px;
}

article:hover > span {
    color: black;
}

article > p{
    display: inline-block;
    word-break: break-word;
    word-wrap: break-word;
    font-size: 20px;
}

.experte-beruf{
    font-size: 1vw;
    color: black;
    font-family: Necto;
    margin-bottom: 5px;
}

#svg {
    position: absolute;
    width: 100vw; /* Ensure the SVG covers the entire viewport width */
    height: 100vh; /* Ensure the SVG covers the entire viewport height */
    top: 0;
    left: 0;
    z-index: -1; /* Ensure it's on top of other elements */
    pointer-events: none; /* Allow clicking through the SVG */
}



.category1-line{
    stroke: #5d6cdf;
    stroke-width: 2px;
    /* display: none; */
}



.category2-line{
    stroke: #cd0f48;
    stroke-width: 2px;
    /* display: none; */
}



.category3-line{
    stroke: #784E2A;
    stroke-width: 2px;
    /* display: none; */
}


.category4-line {
    stroke-width: 2px;
    stroke: #9c52f2;
    /* display: none; */
}

.category5-line {
    stroke-width: 2px;
    stroke: #FFA301;
    /* display: none; */
}

.category6-line {
    stroke-width: 2px;
    stroke: #2adc6b;
    /* display: none; */
}

.category7-line {
    stroke-width: 2px;
    stroke: #E62CE3;
    /* display: none; */
}

.graph-wrapper{
    display: flex;
}

.spektrum{
    margin-top: 10%;
}

.spektrum-wrapper{
    display: flex;
    width: 73vw;
    /* background-color: red; */
    justify-content: space-between;
    padding-left: 5%;
    padding-right: 5%;
}

.spektrum-object{
    font-size: 2.5vw;
    font-family: Social Regular;
    border: 1px solid;
    text-align: center;
    padding: 10px 20px 10px 20px;
    margin-top: 20px;
    width: 25%;
}

.spektrum-linie{
    background-color: rgb(191, 238, 191);
    width: 50%;
    /* height: 50%; */
    margin-top: 20px;
    /* border-bottom: 1px solid; */
}

#analyse-wrapper{
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100vw;
    min-height: 97vh;
    background-color: rgb(234, 234, 234);
    transition: transform 0.5s ease-in-out;
}

.analyse-wrapper-header{
    display: flex;
    justify-content: space-between;
    width: 100vw;
    padding-left: 1%;
    padding-right: 1%;
    /* padding-top: 10px; */
    cursor: pointer;
    height: 5vh;
    display: flex;
    align-items: center;
}

#analyse-wrapper-header > div{
    width: 20px;
    height: 20px;
}

.analyse-wrapper-header > h2 {
    font-family: Necto;
    font-size: 25px;
    width: 70vw;
    text-align: center;
    /* padding-left: 1%; */
    font-weight: lighter;
    padding-top: 20px;
    
}

.analyse-open-wrapper{
    display: flex;
    justify-content: flex-end;
}

#analyse-open{
    text-align: right;
    font-family: Necto;
    font-weight: lighter;
    font-size: 20px;
    /* max-width: 10px; */
}

#analyse-open:hover{
    color: white;
    background-color: grey;
}

#analyse-close {
    font-size: 25px;
    /* width: 10vw; */
    color: black;
    cursor: pointer;
    opacity: 0;
    transition: opacity 0.5s;
}

.analyse-text{
    width: 70vw;
    overflow-y: scroll;
    height: 90dvh;
    overflow-x: hidden;
    -ms-overflow-style: none;  /* IE and Edge */
    scrollbar-width: none;  /* Firefox */
}

.analyse-text::-webkit-scrollbar {
    display: none;
  }

.analyse-text > p{
    width: 70vw;
    font-size: 1.7vw;
    font-family: Social Regular;
    margin-top: 20px;
    margin-bottom: 20px;
}

.analyse-text > h2 {
    font-size: 1.7vw;
    margin-top: 50px;
    font-family: Social Regular;
}

.analyse-text > h3{
    margin-top: 20px;
    margin-bottom: 20px;
}

#mobil-frage-close-wrapper{
    display: none;
}

.logo-mobil{
    display: none;
}

.graphik-frage{
    padding: 5px;
    margin-bottom: 20px;
}

.graphik-gesamt{
    display: flex;
    justify-content: center;
    margin-bottom: 40px;
}

.graphik-gesamt > img {
    width: 70%;
}

.experte-beruf {
    font-size: 20px;
}

.weiterleitung{
    color: rgb(88, 44, 232); 
    text-decoration: none; 
    font-family: Necto;
    font-size: 22px;
    margin-top: 30px;
    margin-bottom: 60px;
}

.weiterleitung:hover {
    background-color: rgba(0, 0, 0, 0) !important;
    color: rgb(88, 44, 232);
}


@media (max-width: 1000px) {

    html,body{
        height: 100dvh !important;   
        /* padding-bottom: env(safe-area-inset-bottom); */

    }

    .button-container{
        /* display: none; */
        flex-direction: column;
        align-items: flex-start;
        margin-top: 20px;

    }

    .button-container > section {
        margin-left: 0;
    }

    .custom-checkbox8 ~ h3{
        margin-top: 15px;
    }

    .checkbox-container{
        margin-top: 5px;
    }

    .interview-header{
        height: 6dvh;
        position: fixed;
        top: 0;
    }

    #antwortenBox{
        height: 94dvh;
        margin-top: 0.5dvh;
    }

    article{
        min-width: 80vw;
        max-width: 80vw;
        height: 87dvh;
        margin-left: 5px;
        margin-right: 5px;
        padding-top: 5%;
    }

    .graphik-gesamt > img {
        width: 100%;
    }

    article > p {
        font-size: 4.7vw;
    }

    #frage-container {
        display: block;
        top: 6dvh;
        padding: 5%;
        height: auto;
        flex-direction: column;
        align-items: flex-start;
        position: fixed;
        transform: translateY(0);
        transition: transform 0.5s ease-in-out; /* Keep transition for smooth slide */
    }
    
    .is-hidden {
        transform: translateY(-100%) !important;
        /* color: red; */
    }
    

    #frage-container > h2 {
        font-size: 5vw;
        width: 100%;
    }

    #analyse-open{
        /* display: none; */
        position: absolute;
        margin-top: 91dvh;
        background-color: rgb(234, 234, 234);
        padding: 2%;
        width: 100vw;
        right: 0;
        height: 6dvh;
        text-align: center;
    }

    #analyse-open:hover {
        background-color: rgb(234, 234, 234);
        color: unset;
    }

    .logo{
        display: none;
        margin-right: 2vw;
        font-size: 25px;
        /* position: absolute;
        margin-top: 40vh;
        background-color: white;
        width: 50px;
        left: 0;
        text-align: center;
        background-color: rgb(234, 234, 234);
        height: 50px;
        display: flex;
        justify-content: center;
        align-items: center; */
    }

    .logo-mobil{
        font-family: Social Regular;
        position: relative;
        display: block;
        margin-left: 1vw;
        font-size: 5vw;
        color: black;
        width: 10vw;
        text-align: center;
        height: 6dvh;
        line-height: 6dvh;
        z-index: 1000 !important;
        border: none;
        background-color: rgba(0, 0, 0, 0);
        text-decoration: none;

        height: 6dvh;
        text-align: center;
        line-height: 6dvh;
        width: 6dvh;
        font-size: 5vw;
    }

    .interview-header{
        z-index: 10 !important;
        justify-content: space-between;
    }

    .interview-header > section {
        width: 100%;
        
    }

    .thesen-container > h3 {
        display: none;
    }

    .thesen-container{
        width: 100vw;
    }

    #analyse-wrapper{
        z-index: 3;
    }

    .thesen-container > a {
        width: 6vw;
        height: 6vw;
    }

    #mobil-frage-close-wrapper{
        height: 6dvh;
        width: 101vw;
        /* background-color: rgb(195, 195, 195); */
        border-bottom: 1px solid grey;
        background-color: white;
        cursor: pointer;
        display: flex;
        justify-content: center;
        align-items: center;
        display: block;
        margin-left: -6%;
        margin-bottom: -6%;
        margin-top: 20px;
        /* display: flex;
        justify-content: space-between; */
    }

    #mobil-frage-close-wrapper > div {
        width: 75px;
        height: 2px;
    }

    #mobil-frage-close-wrapper > h3 {
        color: black;
        font-size: 5vw;
        text-align: center;
        height: 6dvh;
        line-height: 6dvh;
        
    }

    .analyse-wrapper-header{
        margin-top: 6dvh;
        justify-content: center;
        margin-bottom: 2dvh;
    }

    .analyse-wrapper-header > div{
        width: 20px;
        height: 20px;
        display: none;
    }

    .analyse-text{
        width: 90vw;
        
    }

    .analyse-text > h2 {
        font-size: 5vw;
    }

    .analyse-text > p {
        font-size: 5vw;
        width: 90vw;
    }

    .spacer{
        width: 100%;
        /* background-color: red; */
        height: 13dvh;
    }

    /* .checkbox-container:hover #checkbox7 ~ .custom-checkbox7 {
        background-color: unset ;
    } */

    


    
    
}

@media screen and (min-width: 700px) and (max-width: 1000px) {
    article > p{
        font-size: 3.5vw !important;
    }

    #analyse-open {
        font-size: 3.5vw;
    }

    .checkbox-container > h3 {
        font-size: 3vw;
    }

    .checkbox-container > span {
        width: 20px;
        height: 20px;
    }

    #frage-container > h2{
        font-size: 3vw;
    }

    .thesen-container > a {
        width: 4vw;
        height: 4vw;
    }

    .analyse-text > p {
        font-size: 4vw;
    }

    .analyse-text > h2 {
        font-size: 4vw;
    }
}

/* @media screen and (min-width: 1000px) and (max-width: 1200px) {
    article > p {
        font-size: 2.5vw !important;
    }

    #analyse-open{
        font-size: 2.5vw;
        padding-top: 10px;
    }

    .checkbox-container > h3 {
        font-size: 2vw;
    }

    #frage-container > h2 {
        font-size: 2.5vw;
    }

    .logo-mobil{
        margin-left: 0;
        font-size: 4vw;
        width: 8vw;
    }
} */

@media screen and (min-width: 1000px) and (max-width: 1400px) {
    article{
        min-width: 40vw;
    }
}