/* perfect-scrollbar v0.7.0 */
.ps {
    -ms-touch-action: auto;
    touch-action: auto;
    overflow: hidden !important;
    -ms-overflow-style: none;
    z-index: 2;
}

@supports (-ms-overflow-style: none) {
    .ps {
        overflow: auto !important;
    }
}

@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
    .ps {
        overflow: auto !important;
    }
}

.ps.ps--active-x > .ps__scrollbar-x-rail,
.ps.ps--active-y > .ps__scrollbar-y-rail {
    display: block;
    background-color: transparent;
}

.ps.ps--in-scrolling.ps--x > .ps__scrollbar-x-rail > .ps__scrollbar-x {
    background-color: #999;
    height: 11px;
}

.ps.ps--in-scrolling.ps--y > .ps__scrollbar-y-rail > .ps__scrollbar-y {
    background-color: #999;
}

.ps > .ps__scrollbar-x-rail {
    position: absolute;
    bottom: 0px;
    height: 21px;
    transform: scale(0.85, 1);
}

.ps > .ps__scrollbar-x-rail > .ps__scrollbar-x {
    position: absolute;
    border-radius: 4px;
    background-color: #224c64;
    bottom: 0;
    height: 21px;
}

.ps > .ps__scrollbar-y-rail {
    display: none;
    position: absolute;
    right: 0;
    width: 15px;
}

.ps > .ps__scrollbar-y-rail > .ps__scrollbar-y {
    position: absolute;
    border-radius: 4px;
    background-color: #224c64;
    right: 2px;
    width: 11px;
}

.ps:hover.ps--in-scrolling.ps--x > .ps__scrollbar-x-rail > .ps__scrollbar-x {
    background-color: #366784;
}

.ps:hover.ps--in-scrolling.ps--y > .ps__scrollbar-y-rail > .ps__scrollbar-y {
    background-color: #366784;
}

.ps:hover .ps__scrollbar-x:hover {
    background-color: #366784;
}

.ps.ps-in-scrolling .ps__scrollbar-x {
    background-color: #193340 !important;
}

/*
.ps:hover > .ps__scrollbar-x-rail:hover > .ps__scrollbar-x {
    background-color: #366784;
}
*/

