/* width */
::-webkit-scrollbar 
{
width: 10px;
}
/* Track */
::-webkit-scrollbar-track 
{
background: black;
}
/* Handle */
::-webkit-scrollbar-thumb 
{
background: #d9d9d9;
}
/* Custom Track */
::-webkit-scrollbar-track 
{
box-shadow: inset 0 0 0px #d9d9d9;
border-radius: 10px;
background: #d9d9d9;     //#f1f120;
}
/* Handle */
::-webkit-scrollbar-thumb 
{
background: darkgray;
border-radius: 10px;
}
/* Handle on hover */
::-webkit-scrollbar-thumb:hover 
{
	background: blue;
}
