﻿/* super-scrollbar v1.0.2/
*Custom scroll bar component supports chrome,edge,safari,fireFox,ie8+ browser */
body.scrolling {
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  cursor: pointer; }

.super-scrollbar-wrap {
  position: relative;
  display: inline-block;
  width:100%; }

.super-scrollbar-box {
  -ms-touch-action: none;
  touch-action: none;
  overflow: hidden !important;
  -ms-overflow-style: none;
  -webkit-tap-highlight-color: transparent;
  outline: none; }

.super-scrollbar.ss-position > .super-scrollbar-box,
.super-scrollbar-box.ss-position {
  position: relative; }

.ss-content {
  display: inline-block; }

@supports (-ms-overflow-style: none) {
  .super-scrollbar-box {
    overflow: auto !important; } }

@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .super-scrollbar-box {
    overflow: auto !important; } }

.super-scrollbar.selection,
.super-scrollbar.selection > .super-scrollbar-box {
  overflow: hidden !important; }

.super-scrollbar.ss-active-x > .ss-scrollbar-x-rail,
.super-scrollbar.ss-active-y > .ss-scrollbar-y-rail {
  display: block;
  background-color: transparent; }

.super-scrollbar.ss-in-scrolling {
  pointer-events: none; }


.super-scrollbar.ss-in-scrolling.ss-x > .ss-scrollbar-x-rail {
  background-color: #eee;
  opacity: 0.9; }

.super-scrollbar.ss-in-scrolling.ss-x > .ss-scrollbar-x-rail > .ss-scrollbar-x {
  background-color: #999; }

.super-scrollbar.ss-in-scrolling.ss-y > .ss-scrollbar-y-rail {
  background-color: #eee;
  opacity: 0.9; }

.super-scrollbar.ss-in-scrolling.ss-y > .ss-scrollbar-y-rail > .ss-scrollbar-y {
  background-color: #999; }

.super-scrollbar > .ss-scrollbar-x-rail {
  display: none;
  position: absolute;
  opacity: 0;
  -ms-filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=0);
  -webkit-transition: background-color .2s linear, opacity .2s linear;
  -o-transition: background-color .2s linear, opacity .2s linear;
  -moz-transition: background-color .2s linear, opacity .2s linear;
  transition: background-color .2s linear, opacity .2s linear;
  bottom: 0;
  height: 15px;
  cursor: pointer;
  left: 0;
  overflow: hidden; }

.super-scrollbar > .ss-scrollbar-x-rail > .ss-scrollbar-x {
  position: absolute;
  background-color: #aaa;
  -webkit-border-radius: 6px;
  -moz-border-radius: 6px;
  border-radius: 6px;
  -webkit-transition: background-color .2s linear, height .2s linear, width .2s ease-in-out, -webkit-border-radius .2s ease-in-out;
  transition: background-color .2s linear, height .2s linear, width .2s ease-in-out, -webkit-border-radius .2s ease-in-out;
  -o-transition: background-color .2s linear, height .2s linear, width .2s ease-in-out, border-radius .2s ease-in-out;
  -moz-transition: background-color .2s linear, height .2s linear, width .2s ease-in-out, border-radius .2s ease-in-out, -moz-border-radius .2s ease-in-out;
  transition: background-color .2s linear, height .2s linear, width .2s ease-in-out, border-radius .2s ease-in-out;
  transition: background-color .2s linear, height .2s linear, width .2s ease-in-out, border-radius .2s ease-in-out, -webkit-border-radius .2s ease-in-out, -moz-border-radius .2s ease-in-out;
  bottom: 2px;
  height: 6px;
  border: none; }

.super-scrollbar > .ss-scrollbar-x-rail.drag > .ss-scrollbar-x,
.super-scrollbar > .ss-scrollbar-x-rail:hover > .ss-scrollbar-x,
.super-scrollbar > .ss-scrollbar-x-rail:active > .ss-scrollbar-x {
  height: 11px; }

.super-scrollbar > .ss-scrollbar-y-rail {
  display: none;
  position: absolute;
  opacity: 0;
  -ms-filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=0);
  -webkit-transition: background-color .2s linear, opacity .2s linear;
  -o-transition: background-color .2s linear, opacity .2s linear;
  -moz-transition: background-color .2s linear, opacity .2s linear;
  transition: background-color .2s linear, opacity .2s linear;
  right: 0;
  width: 15px;
  cursor: pointer;
  top: 0;
  overflow: hidden; }

.super-scrollbar > .ss-scrollbar-y-rail > .ss-scrollbar-y {
  position: absolute;
  background-color: #aaa;
  -webkit-border-radius: 6px;
  -moz-border-radius: 6px;
  border-radius: 6px;
  -webkit-transition: background-color .2s linear, height .2s linear, width .2s ease-in-out, -webkit-border-radius .2s ease-in-out;
  transition: background-color .2s linear, height .2s linear, width .2s ease-in-out, -webkit-border-radius .2s ease-in-out;
  -o-transition: background-color .2s linear, height .2s linear, width .2s ease-in-out, border-radius .2s ease-in-out;
  -moz-transition: background-color .2s linear, height .2s linear, width .2s ease-in-out, border-radius .2s ease-in-out, -moz-border-radius .2s ease-in-out;
  transition: background-color .2s linear, height .2s linear, width .2s ease-in-out, border-radius .2s ease-in-out;
  transition: background-color .2s linear, height .2s linear, width .2s ease-in-out, border-radius .2s ease-in-out, -webkit-border-radius .2s ease-in-out, -moz-border-radius .2s ease-in-out;
  right: 2px;
  width: 6px;
  border: none; }

.super-scrollbar > .ss-scrollbar-y-rail.drag > .ss-scrollbar-y,
.super-scrollbar > .ss-scrollbar-y-rail:hover > .ss-scrollbar-y,
.super-scrollbar > .ss-scrollbar-y-rail:active > .ss-scrollbar-y {
  width: 11px; }

.super-scrollbar:hover.ss-in-scrolling {
  pointer-events: none; }

.super-scrollbar:hover.ss-in-scrolling.ss-x > .ss-scrollbar-x-rail {
  background-color: #eee;
  opacity: 0.9;
  -ms-filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=90); }

.super-scrollbar:hover.ss-in-scrolling.ss-x > .ss-scrollbar-x-rail > .ss-scrollbar-x {
  background-color: #999; }

.super-scrollbar:hover.ss-in-scrolling.ss-y > .ss-scrollbar-y-rail {
  background-color: #eee;
  opacity: 0.9;
  -ms-filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=90); }

.super-scrollbar:hover.ss-in-scrolling.ss-y > .ss-scrollbar-y-rail > .ss-scrollbar-y {
  background-color: #999; }

.super-scrollbar.ss-no-auto-hide > .ss-scrollbar-x-rail,
.super-scrollbar.ss-no-auto-hide > .ss-scrollbar-y-rail,
.super-scrollbar.touch > .ss-scrollbar-x-rail,
.super-scrollbar.touch > .ss-scrollbar-y-rail,
.super-scrollbar:hover > .ss-scrollbar-x-rail,
.super-scrollbar:hover > .ss-scrollbar-y-rail {
  opacity: 0.6;
  -ms-filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=60); }

.super-scrollbar:hover > .ss-scrollbar-x-rail:hover {
  background-color: #eee;
  opacity: 0.9;
  -ms-filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=90); }

.super-scrollbar:hover > .ss-scrollbar-x-rail:hover > .ss-scrollbar-x {
  background-color: #999; }

.super-scrollbar:hover > .ss-scrollbar-y-rail:hover {
  background-color: #eee;
  opacity: 0.9;
  -ms-filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=90); }

.super-scrollbar:hover > .ss-scrollbar-y-rail:hover > .ss-scrollbar-y {
  background-color: #999; }
