/** initial setup **/
.nano {
  position : relative;

  /*height   : 200px;*/
  overflow : hidden;
}

.nano.magas{
  height: 400px;
}

.nano.h100{
  min-height: 100%;
 
}

.nano > .nano-content {
  position      : absolute;
  overflow      : scroll;
  overflow-x    : hidden;
  top           : 0;
  right         : 0;
  bottom        : 0;
  left          : 0;
}
.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: rgba(50,50,50,0.2);
  position: absolute;
  width: 2px;
  right: 1px;
  top        : 0;
  bottom     : 0;
  /*visibility : hidden\9; *//* Target only IE7 and IE8 with this hack */
 /* opacity    : .01;*/
  -webkit-transition    : .2s;
  -moz-transition       : .2s;
  -o-transition         : .2s;
  transition            : .2s;
  overflow: visible;
  z-index: 100;
 
}
.nano > .nano-pane > .nano-slider {
  background: #828180;
  position: absolute;
  margin: 0 1px;
  z-index: 102;
  height: 7px!important;
  right: -5px;
  width: 7px;
}
.nano:hover > .nano-pane, .nano-pane.active, .nano-pane.flashed {
  visibility : visible\9; /* Target only IE7 and IE8 with this hack */
  /*opacity    : 0.99;*/
}