/** initial setup **/
.nano {
    position: relative;
    height: 100%;
    overflow: hidden;
}

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

.nano > .nano-content:focus {
    outline: none;
}

.nano:hover > .pane, .pane.active, .pane.flashed {
    visibility : visible\9; /* Target only IE7 and IE8 with this hack */
    opacity    : 1;
}

.nano > .nano-content::-webkit-scrollbar {
    /*visibility: visible;*/
    display: none;
}

.has-scrollbar > .nano-content::-webkit-scrollbar {
    display: block;
}

.nano > .nano-pane {
    /*z-index: 700000;*/
    position: absolute;
    width: 5px;
    right: 4px;
    top: 4px;
    bottom: 4px;
    visibility: hidden\9; /* Target only IE7 and IE8 with this hack */
    /*opacity: .21;*/
    /*-webkit-transition: .5s;*/
    /*-moz-transition: .5s;*/
    /*-o-transition: .5s;*/
    /*transition: .5s;*/
    -moz-border-radius: 5px;
    -webkit-border-radius: 5px;
    border-radius: 5px;
}

.nano > .nano-pane > .nano-slider {
    position: relative;
    margin: 0;
    -moz-border-radius: 3px;
    -webkit-border-radius: 3px;
    border-radius: 3px;
}

.nano:hover > .nano-pane, .nano-pane.active, .nano-pane.flashed {
    visibility : visible\9; /* Target only IE7 and IE8 with this hack */
    opacity    : 1;
}

.ncn-pin-container > .nano .nano-pane {
    display: block;
    background: #eee;
}

*:not(.ncn-pin-container) > .nano .nano-pane {
    display: block !important;
    background: #eee;
}

.nano .nano-slider {
    background: #d3d3d3;
    cursor: pointer;
}
