.scroller-wrap {
    position: relative;
    overflow: hidden;
    padding: 10px 15px 10px 0;
}
.scroller {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    max-height: 600px;
    overflow-y: scroll;
    -webkit-overflow-scrolling: touch;
    width: 100%;
}
.scroller::-webkit-scrollbar {
    width: 0;
    height: 0;
}
.scroller-bar-wrap {
    background-color: #e7ebee;
    border-radius: 10px;
    bottom: 10px;
    position: absolute;
    right: 5px;
    top: 10px;
    width: 5px;
    z-index: 1;
}
.scroller-bar { /* The bar. You should define width, right and background */
    background: #8a8a8a;
    border-radius: 10px;
    margin: 10px 0;
    position: absolute;
    right: 5px;
    width: 5px;
    z-index: 1;
}
.scroll-list { /* Data wrapper */
    overflow: hidden; /* For possible margin collapse removing */
}

.scroller-ybar-wrap {
    background-color: #e7ebee;
    border-radius: 10px;
    bottom: 10px;
    position: absolute;
    right: 5px;
    top: 10px;
    width: 6px;
    z-index: 10;
}
.scroller-xbar-wrap {
    background-color: #e7ebee;
    border-radius: 10px;
    bottom: 5px;
    position: absolute;
    right: 10px;
    left: 10px;
    height: 7px;
    z-index: 1;
}
.scroller-xbar {
    background: #8a8a8a;
    border-radius: 10px;
    height: 100%;
    left: 0;
    position: absolute;
    width: 0;
    z-index: 1;
}
.scroller-ybar {
    background: #8a8a8a;
    border-radius: 10px;
    position: absolute;
    top: 0;
    width: 100%;
    z-index: 1;
}
.scroller-content {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    padding-right: 20px;
    padding-left: 10px;
    position: relative;
}
.scroller-wrap.hidden-scroll-y .scroller-content {
    padding-right: 10px;
    min-height: 100%;
}
.scroller-wrap.only-y .scroller {
    overflow-y: scroll;
    overflow-x: hidden;
}
.scroller-wrap.only-y .scroller-content {
    display: block;
    width: 100%;
}