:root {
    --bgColor: darkgray;
    --borderColor: lightgray;
    --hoverColor: darkgray;
    --activeColor: gray;
}
::-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;
}
