/** initial setup **/
.filtersPanel .filter-block { overflow:hidden;}
.nano {

  width    : 100%;
  height   : 100%;
  overflow : hidden;
  float:left;
  position:relative;
}

.filtersPanel .nano .nano-content{height:200px; position: relative;}

.nano > .nano-content {
  position      : absolute;
  overflow      : scroll;
  overflow-x    : hidden;
  top           : 2px;
  right         : 0;
  bottom        : 0px;
  left          : 0;
  padding-right:15px;
  display:block;
}

.nano > .nano-content:focus {
  outline: thin dotted;
}
.nano > .nano-content::-webkit-scrollbar {
  visibility: hidden;
}
.has-scrollbar > .nano-content::-webkit-scrollbar {
  visibility: visible;
}
.nano > .nano-pane {
  background : #7f7f7f;
  position   : absolute;
  width      : 5px;
  right      : 0;
  top        : 0;
  bottom     : 0;
  visibility:visible;
  
 
  -webkit-transition    : .2s;
  -moz-transition       : .2s;
  -o-transition         : .2s;
  transition            : .2s;
  border-radius:3px;
  


}
.nano > .nano-pane > .nano-slider {
  background:#000;
  position: relative;
  border-radius:3px;
  -webkit-border-radius:3px;
  -moz-border-radius:3px;
  -o-border-radius:3px;
  -ms-border-radius:3px;
 
 

}
.nano:hover > .nano-pane, .nano-pane.active, .nano-pane.flashed {
  visibility : visible\9; /* Target only IE7 and IE8 with this hack */
  opacity    : 0.99;
}
