/*
Source - https://stackoverflow.com/a
Posted by PRAFULL PATEL, modified by community. See post 'Timeline' for change history
Retrieved 2026-01-07, License - CC BY-SA 4.0
*/



/* SLIDER */

.slider {
    position: relative;
    float: right;
}

.slider img {
    width: 100%;
    float: right;
}

/* Next & previous buttons */
.prev,
.next {
    cursor: pointer;
    position: absolute;
    top: 40%;
    padding: 0.5em;
    color: white;
    font-weight: bold;
    font-size: 20px;
    transition: 0.6s ease;
    border-radius: 0 3px 3px 0;
    user-select: none;
    -webkit-user-select: none;
    background-color: black;
    border: 0;
}

/* Position the "next button" to the right */
.next {
    right: 0;
    border-radius: 3px 0 0 3px;
}

/* On hover, add a grey background color */
.prev:hover,
.next:hover {
    background-color: #f1f1f1;
    color: black;
}


/*.mySlides {*/
/*    display: none;*/
/*}*/