.nano {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}
.nano > .nano-content {
    position: absolute;
    overflow: scroll;
    overflow-x: hidden;
    top: 0;
    right: -20px !important;
    bottom: 0;
    left: 0;
    padding-right: 40px;
}
.nano > .nano-content:focus { outline: none; }
.nano > .nano-content::-webkit-scrollbar { visibility: hidden; }
.has-scrollbar > .nano-content::-webkit-scrollbar { visibility: hidden; }
.nano > .nano-pane {
    position: absolute;
    width: 8px;
    right: 0;
    top: 8px;
    bottom: 4px;
    opacity: 1;
    -moz-border-radius: 8px;
    -webkit-border-radius: 8px;
    border-radius: 8px;
    padding: 0px;
}
.nano > .nano-pane > .nano-slider {
    background-color: #DFDFDC;
    position: relative;
    margin: 0;
    -moz-border-radius: 8px;
    -webkit-border-radius: 8px;
    border-radius: 8px;
}
.nano:hover > .nano-pane, .nano-pane.active, .nano-pane.flashed { opacity: 1; }
