.styled-scrollbars {
	/* Foreground, Background */
	scrollbar-color: #333333 #eeeeee;
	overflow: overlay !important;
}

.styled-scrollbars::-webkit-scrollbar {
	width: 5px;
	/* Mostly for vertical scrollbars */
	height: 5px;
	/* Mostly for horizontal scrollbars */
}

.styled-scrollbars::-webkit-scrollbar-thumb {
	/* Foreground */
	background: #333333;
}

.styled-scrollbars::-webkit-scrollbar-track {
	/* Background */
	background: #eeeeee;
}