/* width */
::-webkit-scrollbar {
    width: 12px;
    background-color: #ffffff;
    margin-right: auto;
}

/* Track */
::-webkit-scrollbar-track {
  box-shadow: inset 0px 0px 3px grey;
}
 
/* Handle */
::-webkit-scrollbar-thumb {
/*  background: #0de60d; */
  background: #a0a0a0; 
  border-radius: 50px;
  box-shadow: 1px 2px 12px grey; 
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
    opacity: 0.5;
    transition: 0.7s;
}