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

/* Hide the images by default */
.mySlides {
    display: none;
    text-align: center;
}

/* Add a pointer when hovering over the thumbnail images */
.cursor {
    cursor: pointer;
}

/* Next & previous buttons */
.prev,
.next {
    cursor: pointer;
    position: absolute;
    top: 40%;
    /* margin-top: -50px; */
    width: 53px;
    height: 53px;
    color: #ffffff;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    font-weight: bold;
    font-size: 20px;
    border-radius: 50%;
    user-select: none;
    border: 2px solid #ffffff;
    background-color: rgba(0, 0, 0, 0.7);
    -webkit-user-select: none;
}

/* On hover, add a black background color with a little bit see-through */
.prev:hover,
.next:hover {
    background-color: #ee1c25;
    color: white;
    border-color: #ee1c25;
}

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

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

/* Six columns side by side */
.column {
    float: left;
    width: 16.66%;
}

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

.active,
.demo:hover {
    opacity: 1;
}
.mySlides img {
    border: 1px solid #C5C5C5;
}

@media (min-width: 320px) {
    .mySlides img {
        width: 100%;
        border-radius: 5px;
    }
    .prev,
    .next {
        width: 49px;
        height: 49px;
    }
    .left-50 {
        left: 15px;
    }

    .right-50 {
        right: 15px;
    }
}
@media (min-width: 1280px) {
    .mySlides img {
        border-radius: 8px;
    }
    .prev,
    .next {
        width: 40px;
        height: 40px;
    }
    .left-50 {
        left: 40px;
    }

    .right-50 {
        right: 40px;
    }
}
@media (min-width: 1920px) {
    .prev,
    .next {
        width: 49px;
        height: 49px;
    }
    .left-50 {
        left: 50px;
    }

    .right-50 {
        right: 50px;
    }
}