.baron-wrapper {
  display: inline-block;
  vertical-align: top;
  position: relative;
  overflow: hidden;
}

.baron-scroller {
  height: 100%;
  overflow-y: scroll;
  /*-webkit-overflow-scrolling: touch;*/
  /* uncomment to accelerate scrolling on iOs */
}
.baron-scroller::-webkit-scrollbar {
  width: 0;
}
.scroller__bar-wrapper {
  position: absolute;
  z-index: 3;
  top: 10px;
  bottom: 10px;
  right: 5px;
  width: 8px;
  border-radius: 5px;
  background: #ddf;
  background: rgba(0, 0, 255, .1);
  pointer-events: none;
}
.scroller__bar {
  position: absolute;
  z-index: 1;
  width: 8px;
  border-radius: 3px;
  background: #987;
  opacity: 0;
  -webkit-transition: opacity .2s linear;
  transition: opacity .2s linear;
  pointer-events: auto;
}
.scroller__bar:hover {
  opacity: .8;
}
.baron .scroller__bar {
  opacity: .6;
}
.baron_h .scroller__bar_h {
  opacity: .6;
  bottom: 30px;
}