/* Scrollbar */

/* Width */
::-webkit-scrollbar {
    width: 10px;
}

/* Track */
::-webkit-scrollbar-track {
    background: none;
}

/* Handle */
::-webkit-scrollbar-thumb {
    background-color: rgb(160, 160, 160);
    border-radius: 5px;
    min-height: 40px;
}

    /* Handle on Hover */
    ::-webkit-scrollbar-thumb:hover {
        background-color: gray;
    }
