/* width */
::-webkit-scrollbar {
    width: 5px;
}

/* Track */
::-webkit-scrollbar-track {
    background: inherit;
    border-radius: 10px;
}

/* Handle */
::-webkit-scrollbar-thumb {
    background: #0168fa;
    border-radius: 10px;
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
    background: #045cd9;
}