/*--- navigation bar ---*/

.navbar {
    background: #03ABD3;
    /*#8a403f;*/
}

.navbar-brand {
    color: #fff;
    cursor: pointer;
}

.nav-link {
    margin-right: 1em !important;
    color: #FFFFFF;
}

.nav-link:hover {
    color: #000;
}

.navbar-collapse {
    justify-content: flex-end;
}

/*--- footer ---*/

.page-footer {
    background-color: #03ABD3;
    /*background-color: #222; #027793*/
    color: #FFFFFF;
    padding: 60px 0 30px;
}

.footer-copyright {
    color: #FFFFFF;
    /*#666;*/
    padding: 40px 0;
}

/*--- graph ---*/

.chart {
    display: flex;
    justify-content: space-around;
    align-items: flex-end;
    height: 200px;
    margin-bottom: 20px;
}

.bar {
    width: 25%;
    background-color: #2196f3;
    color: rgb(0, 0, 0);
    font-size: 14px;
    text-align: center;
    padding: 10px;
    box-sizing: border-box;
}

/*--- Results ---*/

.container {
    width: 95%;
    max-width: 1220px;
    margin: 0 auto;
}

.domain {
    display: grid;
    grid-template-columns: 1fr 3fr;
    position: relative;
}

.domain_base {
    position: relative;
}

.title_big {
    font-size: calc(90% + 0.5vw);
    font-weight: 600;
    color: #03a9d3;
    padding: 0px 0;
    position: sticky;
    top: 0;
    text-align: center;
    height: calc(10vw + 20px);
    transition: all 0.2s ease-in;
}

.title_big_2 {
    font-size: calc(70% + 0.3vw);
    font-weight: 600;
    color: #03a9d3;
    padding: 0px 0;
    position: sticky;
    top: 0;
    text-align: center;
    height: calc(10vw + 20px);
    transition: all 0.2s ease-in;
}

.domain__number {
    font-size: 8vw;
    font-weight: 600;
    color: #03a9d3;
    padding: 30px 0;
    position: sticky;
    top: 0;
    text-align: center;
    height: calc(10vw + 20px);
    transition: all 0.2s ease-in;
}

.domain__content {
    border-top: 2px solid #03a9d3;
    display: grid;
    grid-template-columns: 1fr 4fr;
    grid-gap: 10px;
    padding: 15px 0;
}

.domain__content_2 {
    border-top: 2px solid #03a9d3;
    display: grid;
    grid-template-columns: 1fr 4fr;
    grid-gap: 10px;
    padding: 15px 0;
}

.domain__content .title {
    font-weight: 600
}

.domain__content .text {
    line-height: 26px;
}

.domain__content .text_2 {
    
    font-size: calc(50% + 0.2vw);
}

.domain__content_base {
    border-top: 2px solid #03a9d3;
    padding: 15px 0;
}

.domain__content_base .title {
    font-weight: 600
}

.domain__content_base .text {
    line-height: 26px;
}

.domain__content_base .text {
    line-height: 26px;
    font-size: calc(50% + 0.2vw);
}

/*--- Result-Table ---*/
.res_container {
    display: flex;
    flex-direction: row;
}

.res_col1 {
    flex-basis: 30%;
    background-color: lightgray;
    padding: 10px;
}

.res_col2 {
    flex-basis: 70%;
    background-color: darkgray;
    color: white;
    padding: 10px;
}

details {
    background-color: #FFEAD6;
    /* Hintergrundfarbe des Details-Elements */
    /* border: 3px solid #03a9d3; */
    /* Rahmen des Details-Elements */
    padding: 10px;
    /* Innenabstand des Details-Elements */
}

summary {
    background-color: #03a9d3;
    /* Hintergrundfarbe der Zusammenfassung */
    color: #fff;
    /* Textfarbe der Zusammenfassung */
    padding: 10px;
    /* Innenabstand der Zusammenfassung */
    width: 100%;
    /* Breite der Zusammenfassung auf 100% setzen */
    display: block;
    /* Die Zusammenfassung als Block-Element darstellen */
}

summary::-webkit-details-marker {
    display: none;
    /* Die Standard-Details-Markierung im Chrome-Browser ausblenden */
}