/*########################
###### Slider: mobile #####
#########################*/

/* Bilder | Slideshow */
aside>div>img {
    width: 95vw;
    box-shadow: 0px 0px 10px gray;
}

aside {
    width: 95vw;
    height: 42vh;
    position: relative;
    display: flex;
    justify-content: center;
    margin-top: 4em;
    margin-bottom: 4em;
    margin-right: auto;
    margin-left: auto;
}

.slider {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    opacity: 0;
    transition: opacity 2s;
}

/* Pfeile */
aside>a {
    display: none;
}



/* Indikator | Navigationspunkte */
aside>ol {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    list-style-type: none;
    font-size: 40px;
    display: flex;
    justify-content: center;
    margin: 0;
    padding: 0;
    color: rgba(211, 209, 209, 0.8);
}

.indikator {
    padding: 0, 10;
    user-select: none;
    cursor: pointer;
    opacity: 0.5;
    transition: opacity 2s;
}


/* aktiv Klasse: sichtbar machen*/
.aktiv {
    opacity: 1;
}


/*########################
#### Slider: tablett #####
#########################*/


@media all and (min-width:768px) {

    aside{
        margin-bottom: 4em;
        height: 65vh;
    }
    
   

}


/*########################
###### Slider: desk #####
#########################*/

@media all and (min-width:1000px) {

    /* Bilder | Slideshow */
    aside>div>img {
        width: 50vw;
        
    }

    /* Container: Slider*/ 
    aside {
        width: 50vw;
        height: 59vh;
        margin-left: 16em;
        margin-bottom: 1em;
    }


    /* Pfeile */

    aside>a {
        display: block;
        position: absolute;
        top: 0;
        bottom: 0;
        font-size: 50px;
        font-weight: bold;
        display: flex;
        justify-content: center;
        align-items: center;
        width: 15%;
        user-select: none;
        cursor: pointer;
    }

    aside>a>span {
        color: rgba(211, 209, 209, 0.8);
    }

    aside>a>span:hover {
        color: #fff;
    }

    .pfeil-links {
        left: 0;
    }

    .pfeil-rechts {
        right: 0;
    }


}