/* width */
::-webkit-scrollbar {
width: 9px;
}
/* Track */
::-webkit-scrollbar-track {
box-shadow: inset 0 0 5px grey;
border-radius: 0px;
}
/* Handle */
::-webkit-scrollbar-thumb {
background: #05FD75;
border-radius: 0px;
}
/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
background: #0B1126;
}