/* Next & previous buttons */
.prev,
.next
{
    cursor: pointer;
    position: absolute;
    top: 50%;
    width: auto;
    padding: 10px;
    margin-top: -19px;
    color: rgba(255, 255, 255, 0.4);
    font-weight: bold;
    font-size: 12px;
    transition: 0.6s ease;
    border-radius: 0 3px 3px 0;
    user-select: none;
    -webkit-user-select: none;
}

/* Position the "next button" to the right */
.next
{
    right: 0;
    border-radius: 3px 0 0 3px;
    /* hide for timebeing */
    display: none;
}

.prev
{
    display: none;
}

.prev:hover,
.next:hover
{
    background-color: rgba(0, 0, 0, 0.8);
}