.slideshow li {
    position: relative;
    margin-bottom: var(--default-spacing);
}
.slideshow li .wrapper  {
    height: auto;
}
.slideshow li video,
.slideshow li img {
    max-width: 100%;
    max-height: 90vh;
    display: block;
    margin: auto;
    
}
@media only screen and (min-width: 768px) {
    .slideshow .slick-arrow {
        display: inline-block !important;
    }
    .slideshow li {
        margin-bottom: 0;
    }
    .slideshow li video,
    .slideshow li img {
        width: 100%;
        position: absolute;
        object-fit: contain;
        left: 0;
        top: 0;
        height: 100%;
        max-height: none;
        max-width: none;
        margin: 0;
    }

    .slideshow li .wrapper  {
        height: 70vh;
        position: relative;
    }
    .slick-slide {
        margin: 0 calc(var(--default-spacing) / 2);;
    }
}





.slideshow .slick-prev {
    left: 0;
    background: url('../img/prev2.svg') no-repeat left center transparent;
    background-size: 16px;
}
.slideshow .slick-next {
    right: 0;
    background: url('../img/next2.svg') no-repeat right center transparent;
    background-size: 16px;
}
.slideshow .slick-arrow:hover {
    opacity: 1;
}
.slideshow .slick-arrow {
    display: none !important;
    font-size: 0;
    border: 0;
    width: 30%;
    z-index: 100000;
    position: absolute;
    top: 0;
    bottom: 0;
    opacity: 0;
    cursor: pointer;
}
.slideshow .caption {
    text-align: center;
    margin-top: var(--default-spacing);
    font-family: 'Georgia', 'serif';
    font-size: 14px;
    line-height: 15px;
    cursor: pointer;
}
.slideshow .button {
    width: 15px;
    height: 8px;
    margin: auto;
    margin-top: 10px;
    padding-bottom: 20px;
    background: url('../img/expand.svg') no-repeat;
    background-size: 100%;
    cursor: pointer;
}
.slideshow .expanded .caption {
    height: auto;
}
.slideshow .expanded .button {
    background: url('../img/retract.svg') no-repeat;
    background-size: 100%;
}

.slick-slider {
    touch-action: auto !important;
}



