.slideout {
    display:none;
    position:fixed;
    right:-35px;
    top:10rem;
    z-index:100;
}

.slideout li{
    list-style: none;
    transition: transform 0.3s ease
}

.slideout li:hover {
    transform: translateX(-5px); /* Move the item a bit to the left */
}


@media screen and (min-width:1024px) {
    .slideout {
        display:block;
    }
}