.slideshow {
    position: relative;
    width: 100%;
    height: var(--slideshow-height, 100%);
    overflow: hidden;
}

.slideshow.cover {
    height: 100%;
}

.slideshow-slide {
    display: none;
    opacity: 0;
    transition: opacity 0.3s ease-in-out;
    width: 100%;
    height: fit-content;
    position: absolute;
    top: 0;
    left: 0;
    border-radius: 2px;
    overflow: hidden;
}

.slideshow-slide.before {
    display: block;
    opacity: 0;
    transition-delay: 0.15s;
}

.slideshow-slide.after {
    display: block;
    opacity: 0;
}

.slideshow-slide.active {
    display: block;
    opacity: 1;
    z-index: 1;
}

.slideshow-slide-picture,
.slideshow-slide-picture-image {
    width: 100%;
    height: auto;
    object-fit: cover;
}

.slideshow-slide-picture.contain,
.slideshow-slide-picture-image.contain {
    object-fit: contain;
}

/* Actions */
.slideshow-arrow {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    width: 33%;
    opacity: 0;
    z-index: 2;
    cursor: none;
}

.slideshow-arrow.next {
    right: 0;
    left: auto;
}

/* Counter */
.slideshow-counter {
    position: absolute;
    bottom: 0;
    right: 0;
    text-align: right;
    padding: 0.15rem 0.4rem;
    z-index: 4;
    color: white;
}
