/* Smart Drawer
   ========================================================================== */
#rosem-menu {
  width: 100%;
  max-width: 800px;
  height: 50%;
  color: #fff;
  overflow: auto;
  position: fixed;
  left: 0;
  right: 0;
  margin: 0 auto;
  top: -50%;
  z-index: 99;
  transition: transform 0.3s ease-out;
  background: #F8F2F0;
  -webkit-overflow-scrolling: touch;
  display: flex;
  flex-direction: column;
}
#rosem-menu.block {
  transform: translate3d(0, 100%, 0);
   box-shadow: 0px 5px 10px 0px rgba(124, 58, 68, 0.1) !important;
}
#rosem-menu .close {
  position: relative;
}
#rosem-menu .close img {
  width: 25px;
  margin: 0;
}
#rosem-overlay {
  width: 100%;
  height: 100%;
  position: fixed;
  right: -100%;
  top: 0;
  z-index: 9;
  transition: 0;
  opacity: 0;
  background: rgba(255, 255, 255, 0.5) !important;
}
#rosem-overlay.block {
  right: 0;
  opacity: 1;
}