/* width */
::-webkit-scrollbar {
    width: 5px;
  }
  
  /* Track */
  ::-webkit-scrollbar-track {
    background: #7c7c7c;
    border-radius: 10px;
    overflow: hidden;
  }
  
  /* Handle */
  ::-webkit-scrollbar-thumb {
    background: #ace7e7;
    border-radius: 10px;
  }
  
  /* Handle on hover */
  ::-webkit-scrollbar-thumb:hover {
    background: #555;
  }