/* used for all scrollbars including dropdowns */
::-webkit-scrollbar {
	width: 18px;
}

/* Handle */
::-webkit-scrollbar-thumb {
	background-color: var(--scrollbar-color);
	border-radius: 30px;
	border: 5px solid transparent;
	background-clip: padding-box;
}

	/* Handle on hover */
	::-webkit-scrollbar-thumb:hover {
		background-color: var(--scrollbar-color);
		border-radius: 30px;
		border: 4px solid transparent;
		background-clip: padding-box;
	}
