/* width */
::-webkit-scrollbar {
    width: .87em;
    border-radius: 5%;
    background-color: rgba(118, 118, 118, 0.5);
}

/* Track */
::-webkit-scrollbar-track {
    box-shadow: inset 0 0 .5em #505050;
    border-radius: .5em;
}

/* Handle */
::-webkit-scrollbar-thumb {
    background-color: rgba(108, 117, 125, 0.5);
    border-radius: .5em;
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
    background-color: rgba(108, 117, 125, 0.9);
}