/* slideshow code from w3schools edited */
    * {box-sizing:border-box;}

    /* Slideshow container */
    .slideshow-container {
    max-width: 100%;
    max-height:100%;
    position: relative;
    margin: 5px;
    overflow-y:hidden;
    }

    .slideshow-container img{
    max-height:100%;
    border-radius:12px;
    }

    /* Hide the images by default */
    .mySlides {
    display: none;
    }

    /* Next & previous buttons */
    .prev, .next {
    cursor: pointer;
    position: absolute;
    top: 50%;
    width: auto;
    margin-top: -2px;
    padding: 16px;
    color: white;
    font-weight: bold;
    font-size: 18px;
    transition: 0.6s ease;
    border-radius: 0 3px 3px 0;
    user-select: none;
    }

    /* Position the "next button" to the right */
    .next {
    right: 0;
    border-radius: 3px 0 0 3px;
    }

    .prev{
    left:0;
    }

    /* On hover, add a black background color with a little bit see-through */
    .prev:hover, .next:hover {
    background-color: rgba(0,0,0,0.8);
    }

    /* Caption text */
    .text {
    color: #ffffff;
    font-size: .8em;
    padding: 8px 12px;
    position: absolute;
    border-radius:8px;
    background: #000000;
    background: linear-gradient(90deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 1) 6%, rgba(0, 0, 0, 1) 92%, rgba(0, 0, 0, 0) 100%);
    bottom: 3%;
    margin:5px;
    width: 90%;
    text-align: center;
    }

    .mySlides{
    text-align: center;
    }

    /* Number text (1/3 etc) */
    .numbertext {
    color: #f2f2f2;
    font-size: 12px;
    padding: 8px 12px;
    position: absolute;
    top: 0;
    }

    /* The dots/bullets/indicators */
    .dot {
    cursor: pointer;
    height: 10px;
    width: 20px;
    margin: 0 2px;
    background-color: #c9c9c9;
    border-radius: 20%;
    display: inline-block;
    transition: background-color 0.6s ease;
    }

    .active, .dot:hover {
    background-color: #717171;
    }

    /* Fading animation */
    .fade {
    animation-name: fade;
    animation-duration: 1.5s;
    }

    @keyframes fade {
    from {opacity: .4; transform:translate(-5px);}
    to {opacity: 1; transform:translate(0px);}
    }
