﻿.ps-container .ps-scrollbar-x {
  position: absolute;
  bottom: 3px;
  height: 8px;
  background-color: rgba(191, 206, 222, 1);
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  border-radius: 4px;
  opacity: 0;
  filter: alpha(opacity = 0);
  -o-transition: opacity 0.2s linear;
  -webkit-transition: opacity.2s linear;
  -moz-transition: opacity 0.2s linear;
  transition: opacity 0.2s linear;
  cursor: pointer;
}

.ps-container.ie6 .ps-scrollbar-x {
  font-size: 0;
}

.ps-container .ps-scrollbar-x.in-scrolling {
  opacity: 0.9;
  filter: alpha(opacity = 90);
  cursor: pointer;
}

.ps-container .ps-scrollbar-y {
  position: absolute; /* please don't change 'position' */
  right: 0px; /* there must be 'right' for ps-scrollbar-y */
  width: 4px;
  background-color: rgba(191, 206, 222, 1);
  /* opacity: 0;
    filter: alpha(opacity = 0); */
  -o-transition: opacity 0.2s linear;
  -webkit-transition: opacity.2s linear;
  -moz-transition: opacity 0.2s linear;
  transition: opacity 0.2s linear;
  cursor: pointer;
}

.ps-container.ie .ps-scrollbar-y {
  font-size: 0;
  cursor: pointer;
}
.ps-container .ps-scrollbar-y.in-scrolling {
  opacity: 0.9;
  filter: alpha(opacity = 90);
  cursor: pointer;
}
