/** initial setup **/
.nano {
  position : relative;
  width    : 100%;
  height   : 100%;
  overflow : hidden;
}
.nano > .nano-content {
  position      : absolute;
  /*overflow      : scroll;*/
  overflow-x    : hidden;
  overflow-y    : scroll!important;
  top           : 0;
  right         : 0;
  bottom        : 0;
  left          : 0;
  -webkit-overflow-scrolling: touch;
}
.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 : #ccc;
  position   : absolute;
  width      : 4px;
  right      : 6px;
  top        : 0;
  bottom     : 0;
  visibility : hidden\9; /* Target only IE7 and IE8 with this hack */
  opacity    : 1;
  /*opacity    : .01;*/
  transition            : .2s;
  z-index: 999;
}
.nano > .nano-pane > .nano-slider {
  width: 16px;
  background:           #d20355;
  position              : relative;
  border-radius: 50%;
  right: 6px;
  cursor: pointer;
}
.nano-slider:before{
  content: '';
  position: absolute;
  bottom: 0;
  background-color: #d20355;
  width: 4px;
  right: 6px;
  height: 1000px;
}
.nano:hover > .nano-pane, .nano-pane.active, .nano-pane.flashed {
  visibility : visible\9; /* Target only IE7 and IE8 with this hack */
  opacity    : 0.99;
}
