﻿/* width */
::-webkit-scrollbar {
  width: 10px;
  height: 10px;
}

/* Track */
::-webkit-scrollbar-track {
  background: #f1f1f1; 
}
 
/* Handle */
::-webkit-scrollbar-thumb {
  border-radius: 4px;
  background-color: rgba(128,139,156,0.3); 
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
  background-color: rgba(128,139,156,0.4); 
} 
