/* Start custom CSS */::-webkit-scrollbar {
    -webkit-appearance: none;
}
::-webkit-scrollbar {
  width: 10px;
}
 
::-webkit-scrollbar-track {
  background: #d3dedc; 
    border:1px solid #ccc;
}
 
::-webkit-scrollbar-thumb {
  background: #04BFA9; 
    border:1px solid #eee;
    height:100px;
    border-radius:5px;
}
 
::-webkit-scrollbar-thumb:hover {
  background: blue; 
}/* End custom CSS */