/* CSS styles in this file are need for proper Baron work */
.golosary_scroller {
  display: inline-block;
  height: 394px;
  overflow: hidden;
  padding: 12px;
  position: relative;
  text-align: left;
  vertical-align: top;
  width: 550px;
}
.scroller {
    height: 100%;
    overflow-y: scroll;
	overflow-x: hidden;
    border: 0;
    -webkit-overflow-scrolling: touch; /* scrolling on iOs */
}
.scroller::-webkit-scrollbar { /* Preventing webkit bug of horizontal scrolling */
    width: 0;
}
.scroller__bar { /* The bar. You should define width, right and background */
    position: absolute;    
    z-index: 1;
    right: 0;
    width: 18px;
    background: #7a848d;
    transition: opacity .2s linear;
    -webkit-transition: opacity .2s linear;
    -moz-transition: opacity .2s linear;
    -o-transition: opacity .2s linear;
    pointer-events: auto;
}
.scroller__bar-wrapper {
    position: absolute;
    z-index: 3;
    top: 0;
    bottom: 0;
    right: 3px;
    width: 18px;
    background: #ecedef;
    pointer-events: none;
}