/*!
 * perfect-scrollbar v1.5.5
 * Perfect Scrollbar is a tiny but perfect jQuery scrollbar plugin
 * http://noraesae.github.io/perfect-scrollbar/
 * 
 * Released under the MIT license
 * https://github.com/noraesae/perfect-scrollbar/blob/master/LICENSE
 */

.ps {
  position: relative;
  overflow: hidden;
}

.ps > .ps__rail-y {
  position: absolute;
  right: 0;
  top: 0;
  width: 15px;
  background-color: transparent;
  opacity: 0;
  transition: background-color 0.2s linear, opacity 0.2s linear;
  -webkit-transition: background-color 0.2s linear, opacity 0.2s linear;
}

.ps > .ps__rail-y:hover,
.ps > .ps__rail-y:focus,
.ps > .ps__rail-y.ps--clicking {
  background-color: rgba(0, 0, 0, 0.05);
  opacity: 0.9;
}

.ps > .ps__rail-y > .ps__thumb-y {
  position: absolute;
  right: 2px;
  width: 6px;
  min-height: 10px;
  background-color: rgba(0, 0, 0, 0.2);
  border-radius: 3px;
  transition: background-color 0.2s linear, width 0.2s linear;
  -webkit-transition: background-color 0.2s linear, width 0.2s linear;
}

.ps > .ps__rail-y:hover > .ps__thumb-y,
.ps > .ps__rail-y:focus > .ps__thumb-y,
.ps > .ps__rail-y.ps--clicking .ps__thumb-y {
  background-color: rgba(0, 0, 0, 0.3);
  width: 11px;
}

.ps > .ps__rail-x {
  position: absolute;
  bottom: 0;
  left: 0;
  height: 15px;
  background-color: transparent;
  opacity: 0;
  transition: background-color 0.2s linear, opacity 0.2s linear;
  -webkit-transition: background-color 0.2s linear, opacity 0.2s linear;
}

.ps > .ps__rail-x:hover,
.ps > .ps__rail-x:focus,
.ps > .ps__rail-x.ps--clicking {
  background-color: rgba(0, 0, 0, 0.05);
  opacity: 0.9;
}

.ps > .ps__rail-x > .ps__thumb-x {
  position: absolute;
  bottom: 2px;
  height: 6px;
  min-width: 10px;
  background-color: rgba(0, 0, 0, 0.2);
  border-radius: 3px;
  transition: background-color 0.2s linear, height 0.2s linear;
  -webkit-transition: background-color 0.2s linear, height 0.2s linear;
}

.ps > .ps__rail-x:hover > .ps__thumb-x,
.ps > .ps__rail-x:focus > .ps__thumb-x,
.ps > .ps__rail-x.ps--clicking .ps__thumb-x {
  background-color: rgba(0, 0, 0, 0.3);
  height: 11px;
}

.ps > .ps__rail-y.ps--in-scrolling.ps--y {
  background-color: rgba(0, 0, 0, 0.05);
  opacity: 0.9;
}

.ps > .ps__rail-y.ps--in-scrolling.ps--y > .ps__thumb-y {
  background-color: rgba(0, 0, 0, 0.3);
  width: 11px;
}

.ps > .ps__rail-x.ps--in-scrolling.ps--x {
  background-color: rgba(0, 0, 0, 0.05);
  opacity: 0.9;
}

.ps > .ps__rail-x.ps--in-scrolling.ps--x > .ps__thumb-x {
  background-color: rgba(0, 0, 0, 0.3);
  height: 11px;
}

/* MS supports */
@supports (-ms-overflow-style: none) {
  .ps {
    overflow: auto !important;
  }
}

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