.ss-wrapper {
  overflow: hidden;
  width: 100%;
  height: 100%;
  position: relative;
  z-index: 1;
  float: left;
}

.ss-content {
  height: 100%;
  width: 100%;
  padding: 0;
  position: relative;
  width: calc(100% + 18px);
  /*right: -18px;*/
  overflow: auto;
  box-sizing: border-box;
}

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

.ss-scroll {
  position: absolute;
  background: rgba(0, 75, 147, 1.0);
  width: 3px;
  top: 0; right: 0px;
  z-index: 3;
  cursor: pointer;
  opacity: 0;
  transition: opacity 0.25s linear, width 200ms;
  -webkit-transition: opacity 0.25s linear, width 200ms;
  -moz-transition: opacity 0.25s linear, width 200ms;
  -ms-transition: opacity 0.25s linear, width 200ms;
  -o-transition: opacity 0.25s linear, width 200ms;
	z-index: 10;
}
.ss-scroll:before {
  width:30px;
  height:100%;
  position:absolute;
  top:0;
  left:0;
  left:-30px;
  content:"";
  display:inline-block;
}

.ss-hidden {
  display: none;
}

.ss-scroll:hover, .ss-scroll:focus, .ss-scroll:active {
  width:10px;
}


.ss-container:hover .ss-scroll,
.ss-container:active .ss-scroll,
.ss-container:focus .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;
}
