/* Chrome, Edge, Safari */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: rgba(120, 120, 120, 0.12);
    border-radius: 100px;
}

::-webkit-scrollbar-thumb {
    background: rgba(160, 160, 160, 0.65);
    border-radius: 100px;
    border: 2px solid transparent;
    background-clip: padding-box;
}

::-webkit-scrollbar-thumb:hover {
    background: rgba(190, 190, 190, 0.85);
    background-clip: padding-box;
}

/* Firefox */
html {
    scrollbar-width: thin;
    scrollbar-color: rgba(160,160,160,.65) rgba(120,120,120,.12);
}
