::-webkit-scrollbar-thumb {
    border: 2px solid transparent;
    background-clip: padding-box;
    background-color: rgba(31, 35, 41, .3);
    border-radius: 9999px;
    -webkit-transition: background .2s cubic-bezier(.34, .69, .1, 1);
    transition: background .2s cubic-bezier(.34, .69, .1, 1)
}

::-webkit-scrollbar {
    width: 9px;
    height: 9px;
    background-color: transparent
}

::-webkit-scrollbar-button {
    display: none
}

::-webkit-scrollbar-corner,
::-webkit-scrollbar-track {
    background-color: transparent
}

::-webkit-scrollbar-thumb:hover {
    background-color: rgba(31, 35, 41, .6)!important
}

::-webkit-scrollbar:hover {
    width: 9px;
    height: 9px
}