/* Smart Drawer
   ========================================================================== */
#sd-menu-serrano {
  width: 50%;
  height: 100%;
  color: #333;
  overflow: auto;
  position: fixed;
  left: -50%;
  z-index: 999;
  transition: transform 0.3s ease-out;
  background: #000;
  -webkit-overflow-scrolling: touch;
}
@media screen and (max-width: 640px) {
  #sd-menu-serrano {
    width: 85%;
    left: -85%;
    top: 0;
    height: 100%;
    width: 85%;
  }
}
#sd-menu-serrano.block {
  transform: translate3d(100%, 0, 0);
}
#sd-menu-serrano .close {
  text-align: center;
  cursor: pointer;
  display: block;
  position: relative;
  margin: 0px 2% 0;
  padding: 10px;
  height: 20px;
  width:20px;
  z-index: 120;
  background: #333;
  border-radius: 5px;
  height:20px;
  float:left;
}
#sd-menu-serrano .close img {
  width: 25px;
  margin: 0;
}
@media screen and (max-width: 640px) {
  #sd-menu-serrano .close img {
  width: 25px;
}
}
.sd-trigger-serrano {
  color: #333;
  text-align: center;
  width:25px;
  cursor: pointer;
  display: block;
  position:absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}
#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.5);
}
#sd-overlay.block {
  right: 0;
  opacity: 1;
}