/* Smart Drawer menu
   ========================================================================== */
#sd-menu {
  width: 100%;
  left: 0;
  top: -100%;
  height: 100%;
  color: #232323;
  overflow: auto;
  position: fixed;
  z-index: 999;
  transition: transform 0.3s ease-out;
  background: #EFF3F3;
  -webkit-overflow-scrolling: touch;
}
#sd-menu.block {
  transform: translate3d(0, 100%, 0);
}
#sd-overlay {
  width: 100%;
  height: 100%;
  position: fixed;
  right: -100%;
  top: 0;
  z-index: 900;
  transition: 0;
  opacity: 0;
  background: rgba(0, 0, 0, 0.8);
}
#sd-overlay.block {
  right: 0;
  opacity: 1;
}