/** initial setup **/
.nano {
  position : relative;
  width    : 100%;
  min-height   : 110px;
  max-height: 770px;
  overflow : hidden;
}
.nano > .nano-content {
  position      : absolute;
  overflow      : scroll;
  overflow-x    : hidden;
  top           : 0;
  right         : 0;
  bottom        : 0;
  left          : 0;
  padding-right: 24px;
}
.nano > .nano-content:focus {
  outline: thin dotted;
}
.nano > .nano-content::-webkit-scrollbar {
  display: none;
}
.has-scrollbar > .nano-content::-webkit-scrollbar {
  display: block;
}
.nano > .nano-pane {
  background : #fff;
  position   : absolute;
  width      : 12px;
  right      : 5px;
  top        : 0;
  bottom     : 0;
  border: 1px solid #27ae60;
  visibility : hidden\9; /* Target only IE7 and IE8 with this hack */
  opacity    : .01;
  -webkit-transition    : .2s;
  -moz-transition       : .2s;
  -o-transition         : .2s;
  transition            : .2s;
  -moz-border-radius    : 6px;
  -webkit-border-radius : 6px;
  border-radius         : 6px;
}
.nano > .nano-pane > .nano-slider {
  background            : #27ae60;
  position              : relative;
  margin                : 0 1px;
  -moz-border-radius    : 4px;
  -webkit-border-radius : 4px;
  border-radius         : 4px;
}
.nano:hover > .nano-pane, .nano-pane.active, .nano-pane.flashed {
  visibility : visible\9; /* Target only IE7 and IE8 with this hack */
  opacity    : 0.99;
}
