.menu-wrap {
  position: fixed;
  right: 0;
  z-index: 9998;
  width: 300px;
  height: 100%;
  padding: 0px 25px;
  background-color: #FFE5E5;
  box-shadow: 0 0 15px rgba(0,0,0,0.2);
  transition: all 0.5s cubic-bezier(0.7,0,0.3,1);
  transform: translate3d(360px,0,0);
  top: 0;
}
.menu-wrap.active {
  transform: translate3d(0px,0,0);
}
.menu-wrap .menu .icon-list a {
  position: relative;
  font-family:''Merienda', cursive';
  display: block;
  padding: 15px;
  text-decoration: none;
  color: #1F2B3D;
  font-size: 22px;
  transition: all 0.3s ease;
}
.menu-wrap .menu .icon-list a::before {
  position: absolute;
  content: "";
  width: 0%;
  height: 2px;
  top: 80%;
  transition: all 0.3s ease;
}
.menu-wrap .menu .icon-list a:hover {
  color: #d52727;
}
.menu-wrap .menu .icon-list a:hover::before {
  width: 50%;
  background-color: #d52727;
}
/* Buttons */
.menu-button,
.close-button {
  position: fixed;
  top: 25px;
  width: 45px;
  height: 45px;
  background-color:lightgrey;
  font-size: 20px;
  border: none;
  outline: none;
  cursor: pointer;
  box-shadow: 0 0 5px rgba(0,0,0,0.2);
  border-radius: 25px;
}
.icnfnt{font-size: 30px !important; color:#514f4f;}
.menu-button {
  right: 15px;
  z-index: 9982;
}
.close-button {
  left: -45px;
  z-index: 9999;
}