/* Slideshow */
.slideshow {
}
.slideshow .slides > li {
    opacity: 1 !important;
}
.slideshow.loading .slides > li {
    opacity: 0 !important;
}
.slideshow,
.slideshow .slides,
.slideshow .slides li {
    width: 100%;
    overflow: hidden;
    position: relative;
}
.slideshow .slides li img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.slideshow .slides .caption {
    display: none;
}
.slideshow_bar {
    margin-top: 5px;
    /*display: flex;
    flex-direction: column-reverse;*/
}
.slideshow_bar .caption {
    /*flex-grow: 2;*/
    margin-bottom: 10px;
}
.slideshow_pager {
    text-align: left;
    white-space: nowrap;
    
}
.slideshow_pager li {
    display: inline-block;
    font-family: 'MediaSans-Black';
    color: var(--grey2);
    text-decoration: underline;
    cursor: pointer;
    margin-right: 10px;
}
.slideshow_pager li.selected {
    color: black;
}
@media only screen and (min-width: 768px) {
    /*.slideshow_bar {
        margin-top: 5px;
        column-gap: 20px;
        flex-direction: row;
    }
    .slideshow .slides li .ratio {
        position: relative;
        padding-top: 100%;
    }
    .slideshow .slides li .wrapper {
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
    }
    .slideshow .slides li .wrapper img {
        position: absolute;
        width: 100%;
        height: 100%;
        object-fit: contain;
    }
    */
    .slideshow .slides li img {
        max-height: 600px;
        display: block;
        margin: auto;
        object-fit: contain;
        object-position: left;
    }
}
@media only screen and (min-width: 1024px) {
    /*.slideshow_bar {
        margin-top: 5px;
        column-gap: 20px;
        flex-direction: row;
    }*/
}

/* Nav */
.slideshow_pager ul {}
.slideshow_pager ul li {
    background: url('../img/pager.png') no-repeat;
    background-size: 100%;
    width: 6px;
    height: 6px;
    display: inline-block;
    cursor: pointer;
    margin: 0 10px;
    font-size: 0;
}
.slideshow_pager ul li.selected,
.slideshow_pager ul li:hover {
    background: url('../img/pager_active.png') no-repeat;
    background-size: 100%;
}
