

body::-webkit-scrollbar {
	width: 1em;
}
body::-webkit-scrollbar-track {
	background-color: rgba(20, 20, 20, 0.9);
    -webkit-box-shadow: inset 0 0 10px rgba(0, 0, 0, 0.7);
}
body::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.2);
    border: 5px solid rgba(0, 0, 0, 0);
    background-clip: padding-box;
    border-radius: 9999px;
	outline: none !important;
}
body::-webkit-scrollbar-thumb:hover {
    background: rgba(255, 255, 255, 0.6);
    border: 5px solid rgba(0, 0, 0, 0);
    background-clip: padding-box;
    border-radius: 999px;
	outline: none !important;
}

::-webkit-scrollbar {
	width: 0.7em;
}
::-webkit-scrollbar-track {
}
::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.2);
    border: 2px solid rgba(0, 0, 0, 0);
    background-clip: padding-box;
    border-radius: 9999px;
	outline: none !important;
}
::-webkit-scrollbar-thumb:hover {
    background: rgba(255, 255, 255, 0.6);
    border: 2px solid rgba(0, 0, 0, 0);
    background-clip: padding-box;
    border-radius: 999px;
	outline: none !important;
}