.scrollbarContainer {
    width: calc(100% - 15px);
    margin: 0;
    position: relative;
}

.scrollbarContainer .viewport {
    /*height: 300px;*/
    height: 40vh;
    overflow: hidden;
    position: relative;
}

.scrollbarContainer .overview {
    list-style: none;
    position: absolute;
    left: 0;
    top: 0;
    margin: 0;
    padding: 0;
}

.scrollbarContainer .scrollbar {
    position: absolute;
    background-position: 0 0;
    right: -20px;
    top: 0;
    width: 15px;
}

.scrollbarContainer .track {
    height: 100%;
    width: 13px;
    position: relative;
    padding: 0 1px;
}

.scrollbarContainer .thumb {
    /*if scroll will by too long cut it*/
    background: transparent url("/dist/assets/img/hr-scroll.png") no-repeat top right;
    height: 20px;
    width: 11px;
    cursor: pointer;
    overflow: hidden;
    position: absolute;
    top: 0;
    left: -15px;
}

.scrollbarContainer .thumb .end {
    background: transparent url("/dist/assets/img/hr-menu.png") no-repeat top right;
    overflow: hidden;
    height: 5px;
    width: 11px;
}

.scrollbarContainer .disable {
    display: none;
}

.noSelect {
    user-select: none;
    -o-user-select: none;
    -moz-user-select: none;
    -khtml-user-select: none;
    -webkit-user-select: none;
}