/* perfect-scrollbar v0.6.14 */
.ps-container {
	-ms-touch-action: auto;
	touch-action: auto;
	overflow: hidden !important;
	-ms-overflow-style: none; 
}
@supports (-ms-overflow-style: none) {
	.ps-container {
		overflow: auto !important; 
    } 
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
	.ps-container {
		overflow: auto !important;
    }
}

.ps-container.ps-active-x > .ps-scrollbar-x-rail{
	display: block;
	background: #FFFFFF;
}
.ps-container.ps-in-scrolling.ps-x > .ps-scrollbar-x-rail {
	opacity: 1; 
   }
.ps-container.ps-in-scrolling.ps-x > .ps-scrollbar-x-rail > .ps-scrollbar-x {
	background: linear-gradient(90deg, #B1D3EB 0%, #83B2D4 100%);
	height: 15px; 
   }
.ps-container > .ps-scrollbar-x-rail {
	position: absolute;
	/* please don't change 'position' */
	opacity: 1;
	-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;
	pointer-events: all;
	bottom: 7px;
	/* there must be 'bottom' for ps-scrollbar-x-rail */
	height: 1px; 
	margin: 0 15px;
}
.ps-container > .ps-scrollbar-x-rail > .ps-scrollbar-x {
	position: absolute;
	/* please don't change 'position' */
	background: linear-gradient(90deg, #B1D3EB 0%, #83B2D4 100%);
	-webkit-border-radius: 7px;
	-moz-border-radius: 7px;
	border-radius: 7px;
	-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: -7px;
	/* there must be 'bottom' for ps-scrollbar-x */
	height: 15px; 
}
.ps-container > .ps-scrollbar-x-rail:hover > .ps-scrollbar-x, .ps-container > .ps-scrollbar-x-rail:active > .ps-scrollbar-x {
	height: 15px; 
}
.ps-container:hover.ps-in-scrolling.ps-x > .ps-scrollbar-x-rail {
	background: #FFFFFF;
}
.ps-container:hover.ps-in-scrolling.ps-x > .ps-scrollbar-x-rail > .ps-scrollbar-x {
	background: linear-gradient(90deg, #B1D3EB 0%, #83B2D4 100%);
	height: 15px; 
}