/* Position the image container (needed to position the left and right arrows) */
.sl_pr_container {
    position: relative;
}

/* Hide the images by default */
.sl_pr_mySlides {
    display: none;
    text-align: center;
}
.sl_pr_mySlides img{
    max-height: 390px;
    width: auto;
}
/* Add a pointer when hovering over the thumbnail images */
.sl_pr_cursor {
    cursor: pointer;
}

/* Next & previous buttons */
.sl_pr_prev,
.sl_pr_next {
    cursor: pointer;
    position: absolute;
    top: 20%;
    width: auto;
    padding: 16px;
    margin-top: -50px;
    color: white;
    font-weight: bold;
    font-size: 20px;
    border-radius: 0 3px 3px 0;
    user-select: none;
    -webkit-user-select: none;
}

/* Position the "next button" to the right */
.sl_pr_next {
    right: 0;
    border-radius: 3px 0 0 3px;
    color: black;
}
.sl_pr_prev {
    color: black;
}
/* On hover, add a black background color with a little bit see-through */
.sl_pr_prev:hover,
.sl_pr_next:hover {
    background-color: var(--dark-blue);
}

/* Number text (1/3 etc) */
.sl_pr_numbertext {
    color: #f2f2f2;
    font-size: 12px;
    padding: 8px 12px;
    position: absolute;
    top: 0;
}

/* Container for image text */
.sl_pr_caption-container {
    text-align: center;
    background-color: #222;
    padding: 2px 16px;
    color: white;
}

.sl_pr_row:after {
    content: "";
    display: table;
    clear: both;
}

/* Six columns side by side */
.sl_pr_column {
    float: left;
    width: 33.33%;
}

/* Add a transparency effect for thumnbail images */
.sl_pr_demo {
    opacity: 0.6;
}

.sl_pr_active,
.sl_pr_demo:hover {
    opacity: 1;
}