/* CSS styles in this file are need for proper Baron work */

.scroller, .scroller1 {
    overflow-y: scroll;

    border: 0;
}
.scroller::-webkit-scrollbar, .scroller1::-webkit-scrollbar { /* Preventing webkit bug of horizontal scrolling */
    width: 0;
}
.scroller__bar, .scroller__bar1 { /* The bar. You should define width, right and background */
    position: absolute;
    right: 0;    
    z-index: 1;
    width: 10px;
    background: #999;
}
.scroller__bar_h, .scroller__bar_h1 {
    bottom: 2px;
    height: 8px;
}

.scroller, .scroller1 {
padding-right: 30px;
    overflow-y: scroll;
    overflow-x: hidden;
    /*-webkit-overflow-scrolling: touch;*/
    /* uncomment to accelerate scrolling on iOs */
}
.scroller::-webkit-scrollbar, .scroller1::-webkit-scrollbar {
    width: 0;
}
.scroller__bar-wrapper, .scroller__bar-wrapper1 {
    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, .scroller__bar1 {
    position: absolute;
    z-index: 2;
	top: 1px !important;
	height: 8px !important;
    border-radius: 3px;
    background: #fbfbfb;
    opacity: 1;
    -webkit-transition: opacity .2s linear;
    transition: opacity .2s linear;
    pointer-events: auto;
}
.wrap-scroll{
	width: 100%;
	left: 0px;
	background: #c5c5c5;
	height: 10px;
	position: absolute;
	z-index: 1;
	top: 400px;
	border-radius: 3px;
}
.wrap-scroll1{
	width: 100%;
	left: 0px;
	background: #c5c5c5;
	height: 10px;
	position: absolute;
	z-index: 1;
	bottom: 0;
	border-radius: 3px;
}
.scroller__bar:hover, .scroller__bar1:hover {
    opacity: .8;
}
.baron .scroller__bar, .baron1 .scroller__bar1 {
    opacity: 0;
}
.baron_h .scroller__bar_h, .baron_h1 .scroller__bar_h1 {
    opacity: 1;
    bottom: 30px;
}