/* width */
::-webkit-scrollbar {
	width: 12px;
}

/* Track */
::-webkit-scrollbar-track {
	/*box-shadow: inset 0 0 5px #4B4B4B; */
	background-color: #FFFFFF;
	/*border-radius: 5px;*/
	/*margin-top: 4px;
	margin-bottom: 4px;*/
}
 
/* Handle */
::-webkit-scrollbar-thumb {
	background-color: #ACACAC; 
	/*border-radius: 5px;*/
	transition: .6s;
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
	background-color: #8C8C8C; 
}