* {box-sizing: border-box}

/* Slideshow container */
/* .slideshow-container {
    max-width: 1000px;
    position: relative;
    margin: auto;
} */

/* Hide the images by default */
/* .slideshow-container .mySlides {
    display: none;
} */

/* Next & previous buttons */
.slideshow-container .prev, .slideshow-container .next {
    cursor: pointer;
    position: absolute;
    top: 50%;
    /* width: auto; */
    margin-top: -22px; /* Move buttons upwards a bit, accounting for element height */
    padding: 16px;
    border-radius: 0 3px 3px 0;
    /* Text */
    color: white;
    font-weight: bold;
    font-size: 18px;
    user-select: none;
    /* Animation */
    transition: 0.6s ease;
}

.slideshow-container .prev {
    left: 2%;
}

.slideshow-container .next {
    right: 2%; /* Position the "next button" to the right */
    border-radius: 3px 0 0 3px;
}

.slideshow-container .prev:hover, .slideshow-container .next:hover {
    background-color: rgba(0,0,0,0.8);
}

/* The dots/bullets/indicators */
.slideshow-container .dot {
    cursor: pointer;
    height: 20px;
    width: 20px;
    margin-left: 3px;
    margin-right: 3px;
    opacity: 0.5;
    border-radius: 5px;
    border: 2px solid var(--blue-primary);
    display: inline-block;
    transition: background-color 0.6s ease, opacity 0.6s ease;
}

.slideshow-container .active, .slideshow-container .dot:hover {
    background-color: var(--blue-primary);
    opacity: 1;
}

/* Fading animation */
.slideshow-container .slide-fade {
    -webkit-animation-name: slide-fade;
    -webkit-animation-duration: 0.5s;
    animation-name: slide-fade;
    animation-duration: 0.5s;
}

@-webkit-keyframes slide-fade {
    from {opacity: 0}
    to {opacity: 1}
}

@keyframes slide-fade {
    from {opacity: 0}
    to {opacity: 1}
}