/* width */
::-webkit-scrollbar {
    width: 5px;
    height: 5px;
}
/* Track */
::-webkit-scrollbar-track {
    background: #C5C3CF;
    border-radius: 10px;

}
/* Handle */
::-webkit-scrollbar-thumb {
    background: #112541;
    border-radius: 10px;
}
/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
    background: #1A3965;
    overflow: auto;
}