/*ALL MODIFICATIONS ARE MARKED WITH !MOD!*/
/*
 * 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;
  opacity: 0;
  transition: background-color .2s linear, opacity .2s linear;
  -webkit-transition: background-color .2s linear, opacity .2s linear;
  height: 15px;
  /* there must be 'bottom' or 'top' for ps__rail-x */
  bottom: 0px;
  /* please don't change 'position' */
  position: absolute;
}

.ps__rail-y {
  display: none;
  opacity: 0;
  transition: background-color .2s linear, opacity .2s linear;
  -webkit-transition: background-color .2s linear, opacity .2s linear;
  width: 15px;
  /* there must be 'right' or 'left' for ps__rail-y */
  /*!MOD! right was moved away from the edge to fit my style*/
  right: 0.2em;
  /* please don't change 'position' */
  position: absolute;
}

.ps--active-x > .ps__rail-x,
.ps--active-y > .ps__rail-y {
  display: block;
  background-color: transparent;
}

.ps:hover > .ps__rail-x,
.ps:hover > .ps__rail-y,
.ps--focus > .ps__rail-x,
.ps--focus > .ps__rail-y,
.ps--scrolling-x > .ps__rail-x,
.ps--scrolling-y > .ps__rail-y {
  opacity: 0.6;
}

.ps__rail-x:hover,
.ps__rail-y:hover,
.ps__rail-x:focus,
.ps__rail-y:focus {
    /*!MOD! color and opacity were disabled because they don't fit my style*/
/*  background-color: #eee;*/
/*  opacity: 0.9;*/
}

/*
 * Scrollbar thumb styles
 */
.ps__thumb-x {
  background-color: #aaa;
/*  border-radius: 6px;*/
  transition: background-color .2s linear, height .2s ease-in-out;
  -webkit-transition: background-color .2s linear, height .2s ease-in-out;
  height: 6px;
  /* there must be 'bottom' for ps__thumb-x */
  bottom: 2px;
  /* please don't change 'position' */
  position: absolute;
}

.ps__thumb-x::before, .ps__thumb-x::after {
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.ps__thumb-x::before {
    border-top: 1px solid var(--green-layer);
    margin: -1px 0 0 0;
    z-index: -1;
}

.ps__thumb-x::after {
    border-top: 2px solid var(--red-layer);
    margin: -2px 0 0 0;
    z-index: -2;
}


.ps__thumb-y {
  background-color: #aaa;
  transition: background-color .2s linear, width .2s ease-in-out;
  -webkit-transition: background-color .2s linear, width .2s ease-in-out;
  width: 6px;
  /* there must be 'right' for ps__thumb-y */
  right: 2px;
  /* please don't change 'position' */
  position: absolute;
/*
  margin: -1px -1px 3px -1px;
  border: 1px solid var(--blue-layer);
  border-top: none;
  border-right: none;
*/
}

.ps__thumb-y::before, .ps__thumb-y::after {
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.ps__thumb-y::before {
    border: 1px solid var(--green-layer);
    border-bottom: none;
    border-left: none;
    margin: -1px 0 0 0px;
    z-index: -1;
}

.ps__thumb-y::after {
    border: 2px solid var(--red-layer);
    border-bottom: none;
    border-left: none;
    margin: -2px 0 0 0px;
    z-index: -2;
}

.ps__rail-x:hover > .ps__thumb-x,
.ps__rail-x:focus > .ps__thumb-x {
  background-color: #999;
    /*!MOD! height changes were disabled because they don't fit my style*/
/*  height: 11px;*/
}

.ps__rail-y:hover > .ps__thumb-y,
.ps__rail-y:focus > .ps__thumb-y {
  background-color: #999;
    /*!MOD! height changes were disabled because they don't fit my style*/
/*  width: 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;
  }
}
