
body::-webkit-scrollbar, div::-webkit-scrollbar {
    width: 12px; /* width of the entire scrollbar */
}

body::-webkit-scrollbar-track, div::-webkit-scrollbar-track {
    background: rgba(0,0,0,0); /* color of the tracking area */
}

body::-webkit-scrollbar-thumb, div::-webkit-scrollbar-thumb {
    background-color: rgba(120,120,120,.5); /* color of the scroll thumb */
    border-radius: 20px; /* roundness of the scroll thumb */
    border: 1px solid rgb(120,120,120, 0); /* creates padding around scroll thumb */
}
