.baron__clipper {
    position: relative;
    overflow: hidden;
}
.baron__scroller {
    overflow-y: scroll;
    -ms-overflow-style: none;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    margin: 0;
    border: 0;
    padding: 0;
    width: 100%;
    height: 100%;
    -webkit-overflow-scrolling: touch;
    /* remove line to customize scrollbar in iOs */
}
.baron__scroller::-webkit-scrollbar {
    width: 0;
    height: 0;
}
.baron__track {
    display: none;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
}
.baron._scrollbar .baron__track {
    display: block;
}
.baron__free {
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
}
.baron__bar {
    display: none;
    position: absolute;
    right: 0;    
    z-index: 1;
    width: 10px;
    background: #999;
}
.baron._scrollbar .baron__bar {
    display: block;
}
.baron__control {
    display: none;
}
/* SIMPLE */
.baron._simple .baron__track {
    opacity: 0;
    position: absolute;
    z-index: 3;
    top: 0px;
    bottom: 0px;
    right: 0px;
    width: 7px;
    border-radius: 5px;
    background: #ddf;
    background: rgba(0, 0, 255, .1);
	background-color: rgba(149, 149, 149, 0.471);
    pointer-events: none;
    }
.baron-left-scroll.baron._simple .baron__track {
	left:0;
	right:unset;
}
.baron._simple._scrollbar .baron__track {
    opacity: 1;
    }
    .baron._simple .baron__bar {
        position: absolute;
        z-index: 1;
        width: 7px;
        border-radius: 3px;
        background: #82c4ae;
        opacity: 0;
        -webkit-transition: opacity .2s linear;
        transition: opacity .2s linear;
        pointer-events: auto;
        }
    .baron._simple .baron__bar:hover {
        opacity: 1;
        }
    .baron._simple.baron .baron__bar {
        opacity: .9;
        }
