/* width */
::-webkit-scrollbar {
    width: 4px;
    height: 4px;
  }
  
  /* Track */
  ::-webkit-scrollbar-track {
    background: #fff;
  }
  
  /* Handle */
  ::-webkit-scrollbar-thumb {
    background: #adadad;
  }
  
  /* Handle on hover */
  ::-webkit-scrollbar-thumb:hover {
    background: #818181;
  }