.main__clipper {
    position: relative;
    box-sizing: border-box;
    width: 100%;
    height: 100%;
    border: 1px solid #fc9;
    overflow: hidden;
}
.main__scroller {
    overflow-x: scroll;
    overflow-y: hidden;
    height: 100%;
    white-space: nowrap;
}
.main__scroller::-webkit-scrollbar {
    width: 0;
    height: 0;
}
.main__bar {
    position: absolute;
    bottom: 0;
    width: 10px;
    height: 10px;
    background: #fc9;
}

/* node that hides system scrollbar by overflow: hidden; */
.baron, .nobaron {
    display: inline-block;
    vertical-align: middle;
    position: relative;
    overflow: hidden;
    width: 100%;
    height: 176px;
	padding:6px 0 16px ;
    margin-bottom: 18px;
}
.nobaron {
	overflow-y:auto!important
}
.gbook-list .baron { height: 355px;}
/* SIMPLE */
.baron._simple .baron__track {
    opacity: 1;
    position: absolute;
    z-index: 3;
    top: 0;
    bottom: 0;
    right: 12px;
    width: 6px;
    border-radius: 2px;
    background: #f3f3f3;
	border:1px solid #d5e4e9;
    pointer-events: none;
    }
.baron._simple._scrollbar .baron__track {
    opacity: 1;
    }
    .baron._simple .baron__bar {
        position: absolute;
        z-index: 1;
        width: 4px;
        border-radius: 0;
        background: #d8e4e4;
        opacity: 0;
        -webkit-transition: opacity .2s linear;
        transition: opacity .2s linear;
        pointer-events: auto;
		right:0;
		cursor:pointer;
		display:block;
        }
    .baron._simple.baron .baron__bar:hover,
	.baron._simple.baron .baron__bar:focus,
	.baron._simple.baron .baron__bar:active {
        opacity: 1;
        }
    .baron._simple.baron .baron__track .baron__bar {
        opacity: 1;
        }




.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-right:30px;
    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: block;
    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;
}