/* width */
::-webkit-scrollbar {
	width: 20px;
}

/* Track */
::-webkit-scrollbar-track {
	/*box-shadow: inset 0 0 5px #4B4B4B; */
	background-color: var(--bg-page);
	/*border-radius: 5px;*/
	/*margin-top: 4px;
	margin-bottom: 4px;*/
}
 
/* Handle */
::-webkit-scrollbar-thumb {
	background-color: var(--bg-medium);
	border: 2px solid  var(--color-light); 
	/*border-radius: 5px;*/
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
	background-color: #515151; 
}