I would like to disable vertical scroll-bar (maybe also making it hidden) for all, except of an specific div:
CSS
#barra {
   display: none;
   height: calc(100% - 140px);
   margin: 0;
   overflow: auto;
   position: fixed;
   top: 90px;
}
#insidebarra {
   height: 800px;
}
HTML
<div id="barra">
   <div id="insidebarra"></div>
</div>
The scroll-bar  for #barra is not a problem, the problem is the scroll-bar of the page. And I don't know how can I disable it.
I searched but I found a lot of topics about How to hide the scroll-bar
 
    