/* Slideshow container */
.slideshow-container {
    position: relative;
}

/* Slides */
.mySlides {
    display: none;
    text-align: center;
}

/* Next & previous buttons */
.prev,
.next {
    cursor: pointer;
    position: absolute;
    top: 50%;
    width: auto;
    margin-top: -30px;
    padding: 16px;
    color: #888;
    font-weight: bold;
    font-size: 20px;
    border-radius: 0 3px 3px 0;
    user-select: none;
}


.prev {
    left: 50px;
}

/* Position the "next button" to the right */
.next {
    position: absolute;
    right: 50px;
    border-radius: 3px 0 0 3px;

}

/* On hover, add a black background color with a little bit see-through */
.prev:hover,
.next:hover {
    background-color: rgba(0, 0, 0, 0.08);
    color: #000;
}

/* The dot/bullet/indicator container */
.dot-container {
    text-align: center;
    padding: 5px;
    margin-top: -20px;
}

/* The dots/bullets/indicators */
.dot {
    cursor: pointer;
    height: 5px;
    width: 5px;
    margin: 0 2px;
    border: solid 1px #000;
    display: inline-block;
    transition: background-color 0.6s ease;
}

/* Add a background color to the active dot/circle */

body>div.overall-wrapper>div.site-msg.information>div>div.text>div.dot-container>span.dot.active,
.dot:hover {
    background-color: #000;
}

body>div.overall-wrapper>div.site-msg.information>div>div.text>div.slideshow-container>div:nth-child(1)>p {
    font-weight: 500;
}

@media(max-width: 767px) {

    .prev {
        left: -25px
    }

    .next {
        right: -25px
    }
}