/* Global Scrollbar Customization */

/* Width (Vertical) and Height (Horizontal) */
::-webkit-scrollbar {
    width: 14px;
    height: 14px;
}

/* Track */
::-webkit-scrollbar-track {
    background: #f1f1f1;
}

/* Handle */
::-webkit-scrollbar-thumb {
    background-color: #777777;
    border-radius: 10px;
    border: 4px solid transparent;
    background-clip: content-box;
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
    background-color: #777777;
    border: 2px solid transparent;
}

/* Handle on click - Max size */
::-webkit-scrollbar-thumb:active {
    background-color: #777777;
    border: 0;
}

/* Remove arrows */
::-webkit-scrollbar-button {
    display: none;
}