/* CSS styles in this file are need for proper Baron work */
.scroller {
   overflow-y: scroll;
   width: 100%;
   height: 100%;
   border: 0;
}
.scroller::-webkit-scrollbar { /* Preventing webkit bug of horizontal scrolling */
   /*width: 0;*/
}
.scroller__track {
   display: none;
   position: absolute;
   right: 4px;
   top: 10px;
   bottom: 4px;
   width: 6px;
   background: rgba(0, 0, 0, .1);
   border-radius: 3px;
   opacity: 0.3;
   transition: opacity 0.2s ease-out;
}
.scroller:hover .scroller__track {
   opacity: 1;
}
.baron .scroller__track {
   display: block; /* Visible when scrolling is possible */
}
.scroller__bar {
   position: absolute;
   right: 0;
   z-index: 1;
   width: 6px;
   background: #999;
   border-radius: 3px;
}
.scroller__bar_h {
   bottom: 2px;
   height: 8px;
}
