.menu-wrap a {
  color: #b8b7ad;
}

.menu-wrap a:hover,
.menu-wrap a:focus {
  color: #c94e50;
}

.content-wrap {
  overflow-y: scroll;
  -webkit-overflow-scrolling: touch;
}

.content {
  position: relative;
  background: #b4bad2;
}

.content::before {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 10;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.3);
  content: "";
  opacity: 0;
  transform: translate3d(100%, 0, 0);
  transition: opacity 0.4s, transform 0s 0.4s;
  transition-timing-function: cubic-bezier(0.7, 0, 0.3, 1);
}

/* Menu Button */
.menu-button {
  z-index: 1000;
  margin-left: 25px;
  /* margin: 1em; */
  padding: 0;
  width: 25px;
  height: 17px;
  color: transparent;
  background: transparent;
  position: relative;
  border: none;
  box-shadow: none;
  outline: none;
}
.menu-button span {
  display: inline-block;
  width: 100%;
  height: 2px;
  background: #000;
  position: absolute;
  left: 0;
}
.menu-button span:nth-child(1) {
  top: 0;
}
.menu-button span:nth-child(2) {
  top: 7px;
}
.menu-button span:nth-child(3) {
  bottom: 0;
}

.menu-button:hover {
  opacity: 0.6;
}

/* Close Button */
.close-button {
  width: 1em;
  height: 1em;
  position: absolute;
  right: 1em;
  top: 1em;
  overflow: hidden;
  text-indent: 1em;
  font-size: 0.75em;
  border: none;
  background: transparent;
  color: transparent;
}

.close-button::before,
.close-button::after {
  content: "";
  position: absolute;
  width: 3px;
  height: 100%;
  top: 0;
  left: 50%;
  background: #bdc3c7;
}

.close-button::before {
  transform: rotate(45deg);
}

.close-button::after {
  transform: rotate(-45deg);
}

/* Menu */
.menu-wrap {
  position: fixed;
  right: -320px;
  top: 0;
  z-index: 1001;
  width: 300px;
  height: 100%;
  background: #373a47;
  padding: 2.5em 1.5em 0;
  font-size: 1.15em;
  /* -webkit-transform: translate3d(-320px,0,0);
  transform: translate3d(-320px,0,0);
  -webkit-transition: -webkit-transform 0.4s; */
  transition: 0.4s;
  transition-timing-function: cubic-bezier(0.7, 0, 0.3, 1);
}

.menu,
.icon-list {
  height: 100%;
}

.icon-list {
  transform: translate3d(0, 100%, 0);
}

.icon-list a {
  display: block;
  padding: 0.8em;
  transform: translate3d(0, 500px, 0);
}

.icon-list,
.icon-list a {
  transition: transform 0s 0.4s;
  transition-timing-function: cubic-bezier(0.7, 0, 0.3, 1);
}

.icon-list a:nth-child(2) {
  transform: translate3d(0, 1000px, 0);
}

.icon-list a:nth-child(3) {
  transform: translate3d(0, 1500px, 0);
}

.icon-list a:nth-child(4) {
  transform: translate3d(0, 2000px, 0);
}

.icon-list a:nth-child(5) {
  transform: translate3d(0, 2500px, 0);
}

.icon-list a:nth-child(6) {
  transform: translate3d(0, 3000px, 0);
}

.icon-list a span {
  margin-left: 10px;
  font-weight: 700;
}

/* Shown menu */
.show-menu .menu-wrap {
  /* -webkit-transform: translate3d(0,0,0);
  transform: translate3d(0,0,0);
  -webkit-transition: -webkit-transform 0.8s; */
  transition: 0.8s;
  right: 0;
  transition-timing-function: cubic-bezier(0.7, 0, 0.3, 1);
}

.show-menu .icon-list,
.show-menu .icon-list a {
  transform: translate3d(0, 0, 0);
  transition: transform 0.8s;
  transition-timing-function: cubic-bezier(0.7, 0, 0.3, 1);
}

.show-menu .icon-list a {
  transition-duration: 0.9s;
}

.show-menu .content::before {
  opacity: 1;
  transition: opacity 0.8s;
  transition-timing-function: cubic-bezier(0.7, 0, 0.3, 1);
  transform: translate3d(0, 0, 0);
}/*# sourceMappingURL=menu-sideslide.css.map */