/* width */
::-webkit-scrollbar
{
    width: 15px;
    height: 15px;
}

/* Track */
::-webkit-scrollbar-track
{
    background: #e9e7e7;
    border-radius: 10px;
}

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

/* Handle on hover */
::-webkit-scrollbar-thumb:hover
{
    background: #CACCD2;
}