/* width */
::-webkit-scrollbar {
    width: 12px;
}

/* Track */
::-webkit-scrollbar-track {
    background: #3D3939;
    width: 12px;
}

/* Handle */
::-webkit-scrollbar-thumb {
    background: #CBCBCB;
    width: 12px;
    border-radius: 10px;
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
    background: #a3a3a3;
    width: 12px;
    border-radius: 10px;
}


html {
    /* For Firefox */
    /*overflow-y: scroll;*/
    scrollbar-color: #CBCBCB #3D3939;
}

