/** initial setup **/
/*.nano {height: 100px; }
.nano .content { padding: 10px;  }
.nano .pane   { background: #888; }
.nano .slider { background: #111; }
*/

.nano {
  position : relative;
  width    : 100%;
  height   : 100%;
  overflow : hidden;
  height: 200px;
  width: 185px; 

}
.nano .content {
  position      : absolute;
  overflow      : scroll;
  overflow-x    : hidden;
  top           : 0;
  right         : 0;
  bottom        : 0;
  left          : 0;
  padding: 18px 0;
}

.nano .content:focus {
  outline: thin dotted;
}
.nano .content::-webkit-scrollbar {
  visibility: hidden;
}
.has-scrollbar .content::-webkit-scrollbar {
  visibility: visible;
}
.nano > .pane {
background: -moz-linear-gradient(left,  rgba(228,228,228,1) 0%, rgba(248,248,248,0) 100%);
background: -webkit-gradient(linear, left top, right top, color-stop(0%,rgba(228,228,228,1)), color-stop(100%,rgba(248,248,248,0)));
background: -webkit-linear-gradient(left,  rgba(228,228,228,1) 0%,rgba(248,248,248,0) 100%);
background: -o-linear-gradient(left,  rgba(228,228,228,1) 0%,rgba(248,248,248,0) 100%);
background: -ms-linear-gradient(left,  rgba(228,228,228,1) 0%,rgba(248,248,248,0) 100%);
background: linear-gradient(to right,  rgba(228,228,228,1) 0%,rgba(248,248,248,0) 100%);
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#e4e4e4', endColorstr='#00f8f8f8',GradientType=1 );
  position   : absolute;
  width      : 15px;
  right      : 0;
  top        : 0;
  bottom     : 0;
  border: 1px solid #e4e4e4;
}
.nano > .pane > .slider {
  background: #c2c2c2;
  position              : relative;
  margin                : 0 3px;
  -moz-border-radius    : 3px;
  -webkit-border-radius : 3px;  
  border-radius         : 3px;
}
