/* SCROLL BAR */

::-webkit-scrollbar {
    width: 10px;
    height: 10px;
}


/* The small buttons on the end of the scroll bars so the user clicks and scroll */
::-webkit-scrollbar-button {
    width: 0;
    height: 0;
    background-color: #00000000;
}

::-webkit-scrollbar-thumb {
    background-color: #A8A8A8;
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background-color: #8d8d8d;
}

::-webkit-scrollbar-track {
    box-shadow: inset 0 0 7px 0 #8888887d;
}

::-webkit-scrollbar-corner {
    width: 0;
    height: 0;
    background: transparent;
}

::-webkit-resizer {
}