#slideshow-container {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

#slideshow-image-container {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100vmin;
    height: calc(100vmin / 3 * 2);
    margin-bottom: 20px;
    background: rgba(0, 0, 0, .75);
}

.slideshow-image {
    display: none;
    max-height: 100%;
    max-width: 100%;
    cursor: pointer;
}

.slideshow-image.active {
    display: block;
}

#slideshow-left-button,
#slideshow-right-button {
    position: absolute;
    z-index: 1000;
    cursor: pointer;
    opacity: .6;
    height: 64px;
    width: 64px;
}

#slideshow-left-button:hover,
#slideshow-right-button:hover {
    opacity: 1;
}

#slideshow-left-button {
    left: 20px;
}

#slideshow-right-button {
    right: 20px;
}

#dots-container {
    display: flex;
    justify-content: center;
}

.dot {
    height: 15px;
    width: 15px;
    background: #fff;
    opacity: .6;
    border-radius: 50%;
    margin: 0 4px;
    cursor: pointer;
    transition: background-color 0.6s ease;
}

.dot:hover {
    opacity: 1;
}

.dot.active {
    opacity: 1;
    cursor: default;
    background: #6A1B0D;
}

.fade {
    -webkit-animation-name: fade;
    -webkit-animation-duration: 1.5s;
    animation-name: fade;
    animation-duration: 1.5s;
}

@-webkit-keyframes fade {
    from {
        opacity: .4
    }
    to {
        opacity: 1
    }
}

@keyframes fade {
    from {
        opacity: .4
    }
    to {
        opacity: 1
    }
}

@media only screen and (max-width: 992px) {
    #slideshow-left-button,
    #slideshow-right-button {
        height: 56px;
        width: 56px;
    }
    #slideshow-left-button {
        left: 16px;
    }
    #slideshow-right-button {
        right: 16px;
    }
}

@media only screen and (max-width: 768px) {
    #slideshow-left-button,
    #slideshow-right-button {
        height: 42px;
        width: 42px;
    }
    #slideshow-left-button {
        left: 12px;
    }
    #slideshow-right-button {
        right: 12px;
    }
}

@media only screen and (max-width: 576px) {
    #slideshow-left-button,
    #slideshow-right-button {
        height: 36px;
        width: 36px;
    }
    #slideshow-left-button {
        left: 10px;
    }
    #slideshow-right-button {
        right: 10px;
    }
    #dots-container {
        display: none;
    }
}