.slideshow {
    width: 100%;
    height: 100%;
    flex-grow: 1;
    position: relative;
}

.slideshow.url {
    cursor: pointer;
}

.slideshow__button {
    position: absolute;
    top: 0;
    bottom: 0;
    width: 25%;
    z-index: 10;
}

.slideshow__button.next {
    right: 0;
    cursor: url("../../icons/arrow-next.svg") 0 0, auto;
    z-index: 1000;
}

.slideshow__button.prev {
    left: 0;
    cursor: url("../../icons/arrow-prev.svg") 0 0, auto;
    z-index: 1000;
}

.slide {
    display: none;
    opacity: 0;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    flex-direction: column;
}

.slide__image {
    object-fit: cover;
    width: 100%;
    height: 100%;
    background-color: rgb(230, 230, 230);
}

.slide.pre-active {
    display: flex;
    opacity: 0;
}

.slide.active {
    display: flex;
    opacity: 1;
    z-index: 10;
}

/*
    DESKTOP
*/
@media only screen and (min-width: 768px) {
    .slide {
        flex-direction: column;
    }

    .slide__image {
        width: 100%;
        height: 100%;
        object-position: center center;
        object-fit: cover
    }

    .slideshow__button {
        width: 25%;
    }
}