
/*  styling scrollbars  */
::-webkit-scrollbar {
 width: 8px;
 height: 6px;
}

::-webkit-scrollbar-track { /* Scroll-bar base */  
box-shadow: inset 0 0 5px #a5aaad;  
border-radius: 10px;
}
::-webkit-scrollbar-thumb { /* Scroll-bar */  
background: #55B2E5;  
border-radius: 10px;
}
::-webkit-scrollbar-thumb:hover { /* hover effect for scroll-bar */  background: #000000;
}
