.ss-wrapper {
    overflow: hidden;
    width: 100%;
    height: 130px;
    position: relative;
    z-index: 1;
    float: left;
}

.borderleft {
    border-right: solid 5px #ee4b6e;
}

.ss-content {
    height: 130px;
    width: 138%;
    padding: 0 0px 0 0;
    position: relative;
    right: 0px;
    overflow: auto;
    box-sizing: border-box;
}

.ss-scroll {
    position: relative;
    background: #11cacc;
    width: 5px;
    border-radius: 4px;
    top: 0;
    z-index: 2;
    cursor: pointer;
    /* opacity: 0; */
    /* transition: opacity 0.25s linear; */
}

.ss-hidden {
    display: none;
}

.ss-container:hover .ss-scroll {
    opacity: 1;
}

.ss-grabbed {
    -o-user-select: none;
    -ms-user-select: none;
    -moz-user-select: none;
    -webkit-user-select: none;
    user-select: none;
}