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

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

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

/* handle on hover */
::-webkit-scrollbar-thumb:hover{
    background:grey;
}