/**
 * WP Tutorials : Gallery-to-Slideshow (WPTGTS)
 *
 * https://wp-tutorials.tech/refine-wordpress/turn-wordpress-gallery-into-a-slideshow/
 */
.wptgts.slideshow {
    position: relative;
}

.wptgts.slideshow figure {
    margin: 0;
    text-align: center;
    transition: 0.6s;
}

.wptgts.slideshow.slideshow-slow figure {
    transition: 1.2s;
}

.wptgts.slideshow.slideshow-fast figure {
    transition: 0.2s;
}

.wptgts.slideshow figure.current-slide {
    opacity: 1.0;
}

.wptgts.slideshow figure:not(.current-slide) {
    opacity: 0.0;
}

.wptgts.slideshow figure:not(:first-of-type) img {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
}