/*
 * Container style
 */
.ps {
  overflow: hidden !important;
  overflow-anchor: none;
  -ms-overflow-style: none;
  touch-action: auto;
  -ms-touch-action: auto;
}

/*
 * Scrollbar rail styles
 */
 .ps__rail-x{
  display: none;
 }


.ps__rail-y {
  display: block;
  opacity: 0.9;
  transition: background-color .2s linear, opacity .2s linear;
  -webkit-transition: background-color .2s linear, opacity .2s linear;
  width: 2.3vw;
  /* there must be 'right' or 'left' for ps__rail-y */
  right: 0;
  /* please don't change 'position' */
  position: absolute;
}

.ps--active-y>.ps__rail-y {
  display: block;
  background-color: gray;
  opacity: 0.9;
}

.ps:hover>.ps__rail-y,
.ps--focus>.ps__rail-y,
.ps--scrolling-y>.ps__rail-y {
  opacity: 0.9;
}

.ps .ps__rail-y:hover,
.ps .ps__rail-y:focus,
.ps .ps__rail-y.ps--clicking {
  background-color: gray;
  opacity: 0.9;
}

/*
 * Scrollbar thumb styles
 */

.ps__thumb-y {
  background-color: var(--c);
  border-radius: 2000em;
  transition: background-color .2s linear, width .2s ease-in-out;
  -webkit-transition: background-color .2s linear, width .2s ease-in-out;
  width: 2vw;
  /* there must be 'right' for ps__thumb-y */
  right: 2px;
  /* please don't change 'position' */
  position: absolute;
  cursor: grab;
}


.ps__rail-y:hover>.ps__thumb-y,
.ps__rail-y:focus>.ps__thumb-y,
.ps__rail-y.ps--clicking .ps__thumb-y {
  background-color: var(--c);
  width: 2vw;
}

.ps__rail-y {
  z-index: 9999999;
}

/* 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;
  }
}