/* CSS styles in this file are need for proper Baron work */
.scroll-wrapper {
  position: relative;
  overflow: hidden;
}
.scroll-scroller {
  height: 100%;
  overflow-y: scroll;
}
.scroll-scroller::-webkit-scrollbar {
  /* Preventing webkit bug of horizontal scrolling */
  width: 0;
}
.scroll-bar {
  /* The bar. You should define width, right and background */
  position: absolute;
  z-index: 1;
  right: 6px;
  width: 12px;
  background: #8f8f8f;
}
.scroll-line {
  background: #fff;
  width: 10px;
  right: 7px;
  top: 0;
  bottom: 0;
  position: absolute;
}
.scroll-container {
  /* Data wrapper */
  overflow: hidden;
  /* For possible margin collapse removing */
}
