.scroll_Style::-webkit-scrollbar{
    width: 4px;
    background-color: #F5F5F5;
}
 
.scroll_Style::-webkit-scrollbar-track {
    background-color: #F5F5F5;
    -webkit-box-shadow: inset 0 0 6px rgba(0,0,0,0.3);
            box-shadow: inset 0 0 6px rgba(0,0,0,0.3);
    -webkit-border-radius: 10px;
            border-radius: 10px;
}
 
.scroll_Style::-webkit-scrollbar-thumb {
    -webkit-border-radius: 10px;
            border-radius: 10px;
    background-image: -webkit-gradient(linear,
    left bottom,left top,color-stop(0.44, rgb(63, 65, 69)),color-stop(0.72, rgb(34, 36, 39)),color-stop(0.86, rgb(75, 83, 106)));
}
 
/*? ======= moz */
.scroll_Style {
  scrollbar-color:silver;
  scrollbar-width:thin;
}