/* width */

::-webkit-scrollbar {
    width: 10px;
    height: 10px;
    overflow: visible;
}


/* Track */

 ::-webkit-scrollbar-track {
    background: #0e0e0e;
}


/* Handle */

 ::-webkit-scrollbar-thumb {
    background: #252525;
    border-radius: 5px;
}


/* Handle on hover */

 ::-webkit-scrollbar-thumb:hover {
    background: #353535;
}