/* width */
::-webkit-scrollbar {
	width: 12px;
}

/* Track */
::-webkit-scrollbar-track {
	/*box-shadow: inset 0 0 5px #4B4B4B; */
	background-color: #E0E0E0;
	/*border-radius: 5px;*/
	margin-top: 4px;
	margin-bottom: 4px;
}
 
/* Handle */
::-webkit-scrollbar-thumb {
	background-color: #989898; 
	border-radius: 5px;
	transition: background-color 0.8s ease;
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
	background-color: #7B7B7B; 
}