/* Styled Scrollbars (Chrome only) */
.scrollbars::-webkit-scrollbar {
	height: 6px;
	width: 6px;
	background-color: transparent;
}
.scrollbars::-webkit-scrollbar-track {
	-webkit-box-shadow: inset 0 0 6px rgba(0,0,0,0.3);
	border-radius: 10px;
	background-color: transparent;
}
.scrollbars::-webkit-scrollbar-thumb {
	border-radius: 10px;
	background-color: #666;
	width: 10px;
}
.scrollbars::-webkit-scrollbar-thumb:hover {
	background-color: #5ab7d2;
} 
