.scrollWrap{
    overflow : hidden;
    min-height: 40px;
    height   : 100%;
    max-height: inherit;
    position : relative;
    z-index  : 1;
}
.scrollContent{
    width           : 100%;
    min-height      : 40px;
    height          : 100%;
    max-height      : inherit;
    padding         : 0 32px 0 0;
    position        : relative;
    right           : -18px;
    overflow        : auto;
    -moz-box-sizing : border-box;
    box-sizing      : border-box;
}

.fakeScrollBar{
    position            : absolute;
    display             : none;
    background          : #d8d8d8;
    width               : 6px;
    border-radius       : 3px;
    right               : 6px;
    top                 : 0;
    z-index             : 0;
    cursor              : -moz-grab;
    cursor              : -webkit-grab;
}

.fakeScrollBar.enabled{
    display: block;
}

.fakeScroll:hover .fakeScrollBar.fakescroll-grabbed{
    cursor     : -moz-grabbing;
    cursor     : -webkit-grabbing;
    background : #FFF;
}

body.fakescroll-grabbed{
    cursor     : -moz-grabbing;
    cursor     : -webkit-grabbing;
}