.slideshow {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-content: center;
    align-items: center;
    position: relative;
}

.slideshow_slide {
    display: none;
    height: 100%;
    object-fit: contain;
    position: relative;
}

.slideshow_slide img {
    width:100%;
    height:100%;
    object-fit: contain;
}


.slideshow_prev, .slideshow_next {
    display: block;
    cursor: pointer;
    position: absolute;
    top: 0;
    bottom: 0;
    width: auto;
    padding: 0 20px 0 20px;
    color: whitesmoke;
    font-weight: bold;
    font-size: 2em;
    user-select: none;
    align-content: center;
    z-index: 500;
}

.slideshow_next {
    right: 0;
}

.slideshow_prev {
    left: 0;
}

.slideshow_prev:hover, .slideshow_next:hover {
    background-color: #000000B0;
}


.slideshow_caption {
    color: #f2f2f2;
    font-size: 15px;
    padding: 12px 0px 12px 0px;
    position: absolute;
    bottom: 0px;
    width: 100%;
    text-align: center;
    background-color:#000000B0;
}


.slideshow_dots {
    text-align: center;
    margin: 10px 0 10px 0;
}

.slideshow_dot {
    cursor: pointer;
    height: 15px;
    width: 15px;
    margin: 0 2px;
    background-color: #333333;
    border-radius: 50%;
    display: inline-block;
}

.slideshow_dot_active, .slideshow_dot:hover {
    background-color: whitesmoke;
}
