/* BASE */
.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;
}
.baron__track {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
}
.baron__free {
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
}
.baron__bar {
    position: absolute;
    right: 0;    
    z-index: 1;
    width: 10px;
    background: #999;
}
.baron__control {
    display: none;
}

/* Mac OS X */
.baron._macosx .baron__track {
    opacity: 0;
    position: absolute;
    z-index: 3;
    top: 2px;
    bottom: 2px;
    right: 1px;
    width: 8px;
}
.baron._macosx._scrollbar .baron__track {
    opacity: 1;
}
.baron._macosx._scrollbar .baron__track:before {
}
.baron._macosx .baron__bar {
	position: absolute;
	z-index: 1;
	width: 5px;
	-webkit-border-radius: 5px;
	-moz-border-radius: 5px;
	border-radius: 5px;
	background: #dce2e3;
	transition: .1s all linear;
pointer-events: auto;
}
.baron._scrolling .baron__bar {
	width: 8px;
}
.baron._macosx._scrollbar .baron__track:hover .baron__bar {
	width: 8px;
}