/* width */
::-webkit-scrollbar {
  width: 10px;
  height: 8px;
  border-radius: 5px;
}

/* Track */
::-webkit-scrollbar-track {
  background: #f1f1f1; 
}
 
/* Handle */
::-webkit-scrollbar-thumb {
  background: #888; 
  border-radius: 8px;
  background-clip: padding-box;
  margin-left: 10% !important;
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
  background: #555; 
}

