/**
* jQuery asScrollbar v0.5.4
* https://github.com/amazingSurge/jquery-asScrollbar
*
* Copyright (c) amazingSurge
* Released under the LGPL-3.0 license
*/
.asScrollbar {
  position: absolute;
  right: 0;
  bottom: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  overflow: hidden;
  line-height: 0;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  border-radius: 2px;

  -webkit-touch-callout: none;
}
.asScrollbar.is-hovering {
  background: rgba(238, 238, 238, .4);
}
.asScrollbar.is-dragging {
  background: rgba(238, 238, 238, .6) !important;
  opacity: 1;
}
.asScrollbar.is-disabled {
  display: none;
}
.asScrollbar-handle {
  position: absolute;
  top: 0;
  left: 0;
  line-height: 0;
  cursor: pointer;
  background: rgba(224, 224, 224, .6);
  border-radius: 2px;
  -webkit-transition: width, height .5s;
  transition: width, height .5s;
}
.asScrollbar.is-dragging .asScrollbar-handle {
  background: rgba(150, 150, 150, .8) !important;
}
.asScrollbar.is-hovering .asScrollbar-handle {
  background: rgba(150, 150, 150, .6) !important;
}
.asScrollbar.is-dragging, .asScrollbar.is-hovering {
  border-radius: 5px;
}
.asScrollbar.is-dragging .asScrollbar-handle, .asScrollbar.is-hovering .asScrollbar-handle {
  border-radius: 5px;
}
.asScrollbar-vertical {
  width: 4px;
  height: calc(100% - 2 * 5px);
  margin: 5px 3px;
}
.asScrollbar-vertical.is-dragging, .asScrollbar-vertical.is-hovering {
  width: 10px;
  margin: 5px 1px;
}
.asScrollbar-vertical .asScrollbar-handle {
  width: 100%;
}
.asScrollbar-horizontal {
  width: calc(100% - 2 * 5px);
  height: 4px;
  margin: 3px 5px;
}
.asScrollbar-horizontal.is-dragging, .asScrollbar-horizontal.is-hovering {
  height: 10px;
  margin: 1px 5px;
}
.asScrollbar-horizontal .asScrollbar-handle {
  height: 100%;
}