
::-webkit-scrollbar {
    height: 12px;
    width: 12px;
    position: absolute;
    right: 2px;
    bottom: 2px;
    z-index: 1;
    border-radius: 4px;
    opacity: 0;
    transition: opacity .12s ease-out;
}
::-webkit-scrollbar-track {
    border-radius: 10px;
    background-color: hsla(220,4%,58%,.1);
}
::-webkit-scrollbar-thumb {
    position: relative;
    display: block;
    width: 0;
    height: 0;
    cursor: pointer;
    border-radius: 10px;
    /* background-color: hsla(220,4%,58%,.3); */
    transition: background-color .3s;
    background: #A9A9A9;
}

::-webkit-scrollbar-thumb:hover {
    background: #696969;
}