Scrollbar css custom
/*SCROLL BAR*/
/* width */
::-webkit-scrollbar {
width: 7px !important;
height: 7px !important;
cursor:all-scroll
}
/* Track */
::-webkit-scrollbar-track {
background: #f8f8f8;
}
/* Handle */
::-webkit-scrollbar-thumb {
background: #747474;
}
/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
background: red;
}