.vscroller {
     position: relative;
    overflow: hidden;
    height: 250px;
}

.vscroller-content {
    position: relative;
    padding: 15px;
    margin-right: 15px;
	padding-left:0;
	padding-top:0;
}

.vscroller-scroll-body {
    position: absolute;
    right: 5px;
    top: 5px;
    background: #cbcbcb;
    width: 7px;
    border-radius: 8px;
     transition: opacity 0.5s;
    -webkit-transition: opacity 0.5s;
}

.vscroller-drag .vscroller-scroll-body,
.vscroller-scroll-body:hover {
    opacity: 1;
}

.vscroller-scroll {
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    background: #282828;
    width: 7px;
    height: 35px;
    border-radius: 8px;
    transition: background-color 0.25s;
    -webkit-transition: background-color 0.25s;
    z-index: 99;
    cursor: pointer;
}

.vscroller-scroll:focus {
    background: #282828;
}
