/* width */
.nav::-webkit-scrollbar, .overflow-hover::-webkit-scrollbar,.navigation::-webkit-scrollbar {
    width: 5px;
    height: 5px;
}
::-webkit-scrollbar {
    width: 5px;
    height:5px;
}
/* Track */
/* ::-webkit-scrollbar-track {
    background: #fff;
} */

/* Handle */
/* ::-webkit-scrollbar-thumb {
    background: #05040408;
} */

/* Handle on hover */
/* ::-webkit-scrollbar-thumb:hover {
    background: #05040424;
} */
.overflow-hover{
    /* overflow: hidden; */
    /**
    no need of overflow-hover. Just make the scrollbar immersive enough. 
    */
    overflow: auto ;
}
.overflow-hover:hover{
    overflow:auto;
}