:root {
    --page-sm-width: 540px;
    --page-md-width: 720px;
    --page-lg-width: 960px;
    --page-x-lg-width: 1160px;
}


.container {
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    grid-template-rows: auto auto ;
    grid-gap: 16px;
    //border: 1px skyblue solid;
}


header, main, footer {
    //border: 1px solid darkblue;
}


header, .content-header {
    Text-align: center;
    align-content: center;
    grid-column: 2 / 12;
    font-size: large;
}


main, .content-main {
    grid-column: 1 / -1;
    margin-top: 3%;
}

.content-footer{
    height: 100px;
}

footer{
    height: 70px;
}

footer, .content-footer {
    grid-column: 1 / -1;

}


/******
++ Slider
++  Styles
 */

.fnt-normal {
    font-family: var(--pbc-font-regular);
}

.slider-wrapper-container {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin: 0 50px;
}

.slide-wrapper  {
    display: flex;
    align-items: center;
    border-radius: 15px;
    padding: 10px;
    justify-content: center;
    flex:1 0 100%;
    box-shadow:  rgba(60, 64, 67, 0.15) 0 1px 2px 0, rgba(60, 64, 67, 0.075) 0 2px 6px 2px;
    /*rgba(0, 0, 0, 0.1) 0 3px 5px*/
    transition: box-shadow 0.3s;
    position: relative;
    aspect-ratio: 1/1;
    width: 33.33%;
}

.disappear-slide-content {
    opacity: 0;
    visibility: hidden;
    position: absolute;
    transition: opacity 300ms ease-in-out,visibility 300ms ease-in-out;
}

.slide-wrapper:hover .disappear-slide-content{
    opacity: 1;
    visibility: visible;
    /*width: 100%;*/
    /*height: 100%;*/
    transition: opacity 300ms ease-in-out,visibility 300ms ease-in-out;
}


.slide-wrapper:hover .disappear-svg-wrapper {
    opacity: 0;
    visibility: visible;
}


.slide-wrapper:hover {
    box-shadow: rgba(60, 64, 67, 0.3) 0 1px 2px 0, rgba(60, 64, 67, 0.15) 0 2px 6px 2px;
}

.svg-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    aspect-ratio: 1 / 1;
    border-radius: 15px;
    background-color: var(--pbc-sky-blue);
    transition: opacity 300ms ease-in-out, visibility 300ms ease-in-out;
    left: 0;
    right: 0;
    bottom: 0;
    top: 0;
}

.disappear-svg-wrapper {
    display: flex;
}



#ebene_2{
    height: 50%;
    width: 100%;
    position: absolute;
}

.slide-content {
    display: flex;
    flex-direction: column;
    align-items: self-start;
    justify-content: center;
    padding: 20px;
}

.slide-header {
    font-size: 2.2rem;
    line-height: 1.1;
    margin: 2rem 0 2rem;
}
.slide-body {
    margin: 30px 0 0 0;
    font-size: 1.4rem;
    letter-spacing: -0.022rem;
    line-height: 1.2353641176;
}
header .slide-header{
    font-size: 2.85rem;
}
header .slide-body{
    font-size: 1.55rem;
}


@media screen and (min-width: 576px) {
    .container {
        max-width: var(--page-sm-width);
    }
    .slide-header {
        font-size: 3.5rem;
    }
    .slide-body {
        font-size: 2.0rem;
    }
    header .slide-header{
        font-size: 3.4rem;
    }
    header .slide-body{
        font-size: 2.1rem;
    }
}

@media screen and (min-width: 768px) {
    header, .content-header {
        grid-column: 3 / 11;
    }
    .container {
        max-width: var(--page-md-width);
    }
    .slider-wrapper-container {
        flex-wrap: nowrap;
        margin: 0 10px;
    }
    .slide-wrapper {
        flex: calc(100% / 2 - 20px);
    }
    .slide-header {
        font-size: 2.1rem;
    }
    .slide-body {
        font-size: 1.3rem;
        margin-top: 0;
    }
    header .slide-header{
        font-size: 2.9rem;
    }
    header .slide-body{
        font-size: 1.6rem;
    }


}

@media screen and (min-width: 992px) {
    .container {
        max-width: var(--page-lg-width);
    }

    .slide-wrapper {
        border-radius: 15px;
        padding: 20px;
        flex-basis:  calc(100% / 3);
    }
    .slide-header {
        font-size: 2.3rem;
    }
    .slide-body {
        font-size: 1.5rem;
    }
    header .slide-header{
        font-size: 3rem;
    }
    header .slide-body{
        font-size: 1.6rem;
    }

}

@media screen and (min-width: 1200px) {
    .container {
        max-width: var(--page-x-lg-width);
    }
    .slide-header {
        font-size: 2.6rem;
    }
    .slide-body {
        font-size: 1.8rem;
    }
    header .slide-header{
        font-size: 3.3rem;
    }
    header .slide-body{
        font-size: 1.9rem;
    }
}

.footertest{
    background-color: black;
}


/*Checkbox*/
#checkbox{
    position: absolute;
    width: 8%;
    height: 8%;
    bottom: 3%;
    right: 3%;
}


.checkbox-wrapper-31:hover .check {
     stroke-dashoffset: 0;
}
.checkbox-wrapper-31:hover .plus {
    display: none;
}

.checkbox-wrapper-31 {
    position: absolute;
    display: inline-block;
    width: 100%;
    height: 100%;
    bottom: 0;
    right: 0;
}

.checkbox-wrapper-31 .background {
     fill: #ccc;
     transition: ease all 0.6s;
     -webkit-transition: ease all 0.6s;
}

.checkbox-wrapper-31 .stroke {
    fill: none;
     stroke: #fff;
     stroke-miterlimit: 10;
     stroke-width: 2px;
     stroke-dashoffset: 100;
     stroke-dasharray: 100;
     transition: ease all 0.6s;
     -webkit-transition: ease all 0.6s;
}

.checkbox-wrapper-31 .plus {
  fill: none;
  stroke: #fff;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2px;
  transition: ease all 1.6s;
}

.checkbox-wrapper-31 .check {
    fill: none;
    stroke: #fff;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 2px;
    stroke-dashoffset: 22;
    stroke-dasharray: 22;
    transition: ease all 0.6s;
    -webkit-transition: ease all 0.6s;
}

.checkbox-wrapper-31 input[type=checkbox] {
    position: absolute;
    width: 100%;
    height: 100%;
    bottom: 0;
    right: 0;
    margin: 0;
    opacity: 0;
    -appearance: none;
    -webkit-appearance: none;
    z-index: 999;
}

.checkbox-wrapper-31 input[type=checkbox]:hover {
  cursor: pointer;
}

.checkbox-wrapper-31 input[type=checkbox]:checked + svg .background {
  fill: #6cbe45;
}

.checkbox-wrapper-31 input[type=checkbox]:checked + svg .stroke {
  stroke-dashoffset: 0;
}

.checkbox-wrapper-31 input[type=checkbox]:checked + svg .check {
  stroke-dashoffset: 0;
}



/*button*/
.button{
    display: flex;
    justify-content: center;
    align-items: flex-end;
    height: 100%;
}

#startbutton{
    cursor: pointer;
    font-weight: 500;
    font-family: 'Graphik-Medium';
    color: black;
    transition: all .2s;
    padding: 8px 15px;
    border-radius: 100px;
    background-color: var(--pbc-sky-blue);
    box-shadow:  rgba(60, 64, 67, 0.15) 0 1px 2px 0, rgba(60, 64, 67, 0.075) 0 2px 6px 2px;
    border: 1px solid transparent;
    display: flex;
    align-items: center;
    font-size: 15px;
}
#startbutton[disabled]{
    cursor: not-allowed;
    opacity: 0.5;
}


button:hover[] {
    background: var(--pbc-sky-blue);

}

button > svg {
     width: 34px;
     margin-left: 10px;
     transition: transform .3s ease-in-out;
}

#startbutton:not([disabled]):hover svg {
     transform: translateX(5px);
}

#startbutton:not([disabled]):active {
     transform: scale(0.95);
}

#tooltip {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #808080;
    padding: 2px;
    border-radius: 5px;
}