* {
    box-sizing: border-box
}

/* Slideshow container */
.slideshow-container {
    max-width: 1000px;
    position: relative;
    margin: auto;
    padding: 15px 15px 5px
}

/* Hide the images by default */
.mySlides {
    display: none;
}

/* The dots/bullets/indicators */
.sl-dot {
    cursor: pointer;
    height: 15px;
    width: 15px;
    margin: 0 2px 10px;
    background-color: #bbb;
    border-radius: 50%;
    display: inline-block;
    transition: background-color 0.6s ease;
}



/* Fading animation */
.sl-fade {
    -webkit-animation-name: fade;
    -webkit-animation-duration: 1.5s;
    animation-name: fade;
    animation-duration: 1.5s;
}

@-webkit-keyframes sl-fade {
    from {
        opacity: .4
    }

    to {
        opacity: 1
    }
}

@keyframes sl-fade {
    from {
        opacity: .4
    }

    to {
        opacity: 1
    }
}