.ss-wrapper {
    overflow: hidden;
    width: 100%;
    height: 100%;
    position: relative;
    z-index: 1;
    float: left;
}
/*    CGI code start: Added transparent effect to scrollbar  */
.ss-wrapper:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    box-shadow: 0 0 20px 19px rgba(255,255,255,0.6);
    width: 100%;
    height: 0;
    display: block;
}
/*    CGI code end */

.ss-content {
    height: 100%;
    width: calc(100% + 18px);
    padding: 0 0 0 0;
    position: relative;
    overflow: auto;
    box-sizing: border-box;
    /*    CGI code start: Fix overflow-x  */
    overflow-x: hidden;
    /*    CGI code end */
}

.ss-content.rtl {
    width: calc(100% + 18px);
    right: auto;
}

.ss-scroll {
    position: relative;
    background: rgba(0, 0, 0, 0.1);
    width: 9px;
    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,
.ss-container:active .ss-scroll {
    opacity: 1;
}

.ss-grabbed {
    -ms-user-select: none;
    -moz-user-select: none;
    -webkit-user-select: none;
    user-select: none;
}
