/* width */
::-webkit-scrollbar {
    width: 5px;
}

/* button */
::-webkit-scrollbar-button {
    background: rgba(0, 0, 0, .02);
}

/* Handle */
::-webkit-scrollbar-thumb {
    background: rgba(0, 0, 0, .06);
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
    background: #666;
}

/* Track */
::-webkit-scrollbar-track {
    background: rgba(0, 0, 0, .03);
}

/* The track NOT covered by the handle.
::-webkit-scrollbar-track-piece {
    background: #000;
}

/* Corner */
/* ::-webkit-scrollbar-corner {
    background: orange;
} */

/* Resizer */
/* ::-webkit-resizer {
    background: yellow;
} */