.ss-container{
	position: relative;
	width: 100%;
	height: 100%;
}

.ss-wrapper {
  overflow: hidden;
  width: 100%;
  height: 100%;
  position: relative;
  z-index: 1;
  float: left;
}
.ss-wrapper::after{
	content: "";
	display: block;
	position: absolute;
	width: 10px;
	top: 0px;
	right: 0px;
	height: 100%;
	border-radius: 4px;
	background: rgba(0,0,0,0.05);
	z-index: 5;
	opacity: 1;
	transition: opacity 0.25s linear;	
}
.no-scroll .ss-wrapper::after{
	opacity: 0!important;
}

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

.ss-scroll {
  position: relative;
  background: #0066b2;
  width: 10px;
  border-radius: 4px;
  top: 0;
  z-index: 10;
  cursor: pointer;
  opacity: 1;
  transition: opacity 0.25s linear;
}

.ss-hidden {
  display: none;
}

.ss-container:hover .ss-scroll , .ss-container:hover .ss-wrapper::after,
.scroll-active .ss-scroll, .scroll-active .ss-wrapper::after
{
  opacity: 1;
}

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