
/* ---------------------------- */
/* Slideshow-Header             */
/* ---------------------------- */

main.slideshow-page {
    padding: 20px;
}







/* ---------------------------- */
/* Slideshow                    */
/* ---------------------------- */

.slideshow-container {
    width: 100%;
    height: 0;
    padding-bottom: 66.66%;
    position: relative;

    border: solid 1px lightgrey;
    box-sizing: border-box;
}

.slideshow-container:hover .slider-button {
    background-color: rgba(255, 255, 255, 0.1);
    color: rgba(150, 150, 150, .5);
}

.slideshow-image {
    width: inherit;
    height: inherit;
    padding-bottom: inherit;
    position: absolute;
    top: 0;
    left: 0;
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
    transition: opacity 600ms linear;
}





/* ---------------------------- */
/* Slideshow-Buttons            */
/* ---------------------------- */

.slider-button {
    color: rgba(150, 150, 150, 0);
    background-color: rgba(255, 255, 255, 0);
    z-index: 1;
    display: inline-block;
    height: 30%;
    width: 60px;
    display: grid;
    justify-content: center;
    align-items: center;
    position: absolute;
    cursor: pointer;
    transition: color 400ms linear 200ms, background-color 400ms linear;
}

.prev {
    top: 35%;
    left: 0;
    border-radius: 0 10px 10px 0;
;}

.next {
    top: 35%;
    right: 0;
    border-radius: 10px 0 0 10px;
}

.prev::before {
    font-family: "FontAwesome";
    content: "\f060";
    font-size: 2em;
}

.next::before {
    font-family: "FontAwesome";
    content: "\f061";
    font-size: 2em;
}