.rocketScroll {
    overflow: hidden !important;
    position: relative;
}

.rocketScroll .scroll-div {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    overflow-y: scroll;
    overflow-x: hidden;
    height: 100%;
}

.rocketScroll .scroll-content {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    padding: 20px;
}

.rocketScroll .scrollbar {
    position: absolute;
    right: 0px;
    top: 0px;
    bottom: 0px;
    background: transparent;
    width: 6px;
    border-radius: 3px;
    transition: background-color 0.5s;
}

.rocketScroll .scrollbar:hover {
    cursor: pointer;
}

.rocketScroll .scrollbar:hover div:hover {
    background: #777;
    background: rgba(0, 0, 0, 0.55);
}

.rocketScroll .scrollbar, .rocketScroll .scrollbar div {
    -moz-user-select: none;
    -webkit-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.rocketScroll .scrollbar div {
    height: 100px;
    width: 6px;
    border-radius: 3px;
    background: transparent;
    transition: background-color 0.5s;
}

.rocketScroll:hover .scrollbar {
    background: #ddd;
    background: rgba(0, 0, 0, 0.15);
}

.rocketScroll:hover .scrollbar div {
    background: #aaa;
    background: rgba(0, 0, 0, 0.35);
}

.rocketScroll .unselectable {
    -moz-user-select: none;
    -webkit-user-select: none;
    -ms-user-select: none;
    user-select: none;
}
