 /* Customize website's scrollbar like Mac OS
Not supports in Firefox and IE */

/* total width */
body::-webkit-scrollbar {
    background-color: #616161;
    width: 16px;
}

/* background of the scrollbar except button or resizer */
body::-webkit-scrollbar-track {
    background-color: #616161;
}

/* scrollbar itself */
body::-webkit-scrollbar-thumb {
    background-color: #494949;
    border-radius: 16px;
    border: 4px solid #616161;
}

/* set button(top and bottom of the scrollbar) */
body::-webkit-scrollbar-button {
    display:none;
}