/*--------------------------------------------------------------
## Push sidebar scroller
--------------------------------------------------------------*/
.nano {
  height   : 100%;
  overflow : hidden;
}
.nano > .nano-content {
  position      : absolute;
  overflow      : auto;
  overflow-x    : hidden;
  top           : 0;
  right         : 0;
  bottom        : 0;
  left          : 0;
  padding: 4em 2.5em 2.5em;
  -webkit-overflow-scrolling: touch;
  height:100%;
}
/* Works on Firefox */
#tertiary.widget-area .nano-content {
  scrollbar-width: thin;
  scrollbar-color: #909090 #ececec;
}
/* Works on Chrome, Edge, and Safari */
#tertiary.widget-area .nano-content::-webkit-scrollbar {
  width: 8px;
}
#tertiary.widget-area .nano-content::-webkit-scrollbar-track {
  background: #ececec;
}
#tertiary.widget-area .nano-content::-webkit-scrollbar-thumb {
  background-color: #909090;
}