/** initial setup **/
.nano {
  position: relative;
  overflow: hidden;
  width: 100%;
  height: 100%;
}
.nano > .nano-content {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  overflow: scroll;
  overflow-x: hidden;
}
.nano > .nano-content::-webkit-scrollbar {
  display: none;
}
.has-scrollbar > .nano-content::-webkit-scrollbar {
  display: block;
}
.nano > .nano-pane {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  visibility: hidden\9; /* Target only IE7 and IE8 with this hack */
  width: 8px;
  border-radius: 5px;
  background: rgba(0,0,0,.25);
  opacity: .01;
  -webkit-transition: .2s;
  transition: .2s;
}
.nano > .nano-pane > .nano-slider {
  position: relative;
  border-radius: 3px;
  background: #444;
  background: rgba(0,0,0,.3);
}
.nano:hover > .nano-pane ,.nano-pane.active ,.nano-pane.flashed {
  visibility: visible\9; /* Target only IE7 and IE8 with this hack */
  opacity: .99;
}
