:root {
    --bgColor: #009688;
    --borderColor: #10a698;
    --hoverColor: #008678;
	--activeColor: #007668;
}
::-webkit-scrollbar {
	width: 10px!important;
	height: 10px!important;
}
::-webkit-scrollbar-thumb {
	background-color: var(--bgColor)!important;
	border: 2px solid var(--borderColor)!important;
	border-radius: 10px!important;
}
::-webkit-scrollbar-track {
	background-color: transparent!important;
}
::-webkit-scrollbar-thumb:hover {
	background: var(--hoverColor)!important;
}
::-webkit-scrollbar-thumb:active {
	background: var(--activeColor)!important;
}
::-webkit-scrollbar-corner {
	background: -var(--bgColor)!important;
}
