.antiscroll-wrap {
  display: inline-block;
  position: relative;
  overflow: hidden;
  width: 100%;
}

.antiscroll-scrollbar {
  /*background: #666;*/
  background: #DC4320;
  /*background: rgba(0, 0, 0, .6);*/
  /*-webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  border-radius: 3px;*/
  position: absolute;
  opacity: 0;
  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=0);
  -webkit-transition: linear 300ms opacity;
  -moz-transition: linear 300ms opacity;
  -o-transition: linear 300ms opacity;
}

.antiscroll-scrollbar-shown {
  opacity: 0.8;
  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=80);
}

.antiscroll-scrollbar-horizontal {
  height: 7px;
  margin-left: 2px;
  bottom: 2px;
  left: 0;
}

.antiscroll-scrollbar-vertical {
  /*width: 7px;*/
  width: 4px;
  margin-top: 1px;
  /*right: 1px;*/
  right: 0;
  top: 0;
}

.antiscroll-inner {
  overflow: scroll;
  overflow-x:hidden;
  /*overflow: auto;*/
}

.antiscroll-inner::-webkit-scrollbar, .antiscroll-inner::scrollbar {
  width: 0;
  height: 0;
}
