  @charset "UTF-8";



/* Smart Drawer
   ========================================================================== */
#sd {
  width: 100%;
  height: 100%;
  height: calc(100% - 69px);
  overflow: auto;
  position: fixed;
  right: -100%;
  top: 0;
  z-index: 99;
  transition: -webkit-transform 0.3s ease-out;
  transition: transform 0.3s ease-out;
}

#sd.block {
  -webkit-transform: translate3d(-100%, 0, 0);
}
