html,
body,
.container,
.content-wrap {
  overflow: hidden;
  width: 100%;
  height: 100%;
}

.menu-wrap a {
  color: white;
}

.menu-wrap a:hover,
.menu-wrap a:focus {
  color: #c94e50;
}

.content-wrap {
  overflow-y: scroll;
  -webkit-overflow-scrolling: touch;
  -webkit-transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
}

.content-body-sec {
  position: relative;
}

.content-body-sec::before {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 10;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.3);
  content: "";
  opacity: 0;
  -webkit-transition: opacity 0.3s, -webkit-transform 0s 0.3s;
  transition: opacity 0.3s, transform 0s 0.3s;
  -webkit-transform: translate3d(100%, 0, 0);
  transform: translate3d(100%, 0, 0);
}

/* Menu Button */
.menu-button {
  position: fixed;
  z-index: 1000;
  margin: 1em;
  padding: 0;
  width: 2.5em;
  height: 2.25em;
  border: none;
  text-indent: 2.5em;
  font-size: 1.5em;
  color: transparent;
  background: transparent;
}

.menu-button::before {
  position: absolute;
  top: 0.5em;
  right: 0.5em;
  bottom: 0.5em;
  left: 0.5em;
  background: linear-gradient(
    #373a47 20%,
    transparent 20%,
    transparent 40%,
    #373a47 40%,
    #373a47 60%,
    transparent 60%,
    transparent 80%,
    #373a47 80%
  );
  content: "";
}

.menu-button:hover {
  opacity: 0.6;
}

/* Close Button */
.close-button {
  cursor: pointer;
  position: absolute;
  top: 0;
  right: -50px;
  height: 50px;
  width: 50px;
  text-align: center;
  line-height: 50px;
  background-color: #3f146d;
  color: #fff;
  opacity: 0;
}

/* .close-button::before,
.close-button::after {
	content: '';
	position: absolute;
	width: 2px;
	height: 100%;
	top: 0;
	left: 50%;
	background: #95a5a6;
}

.close-button::before {
	-webkit-transform: rotate(45deg);
	transform: rotate(45deg);
}

.close-button::after {
	-webkit-transform: rotate(-45deg);
	transform: rotate(-45deg);
} */

/* Menu */
.menu-wrap {
  position: absolute;
  z-index: 1001;
  width: 300px;
  height: 100%;
  font-size: 1.15em;
  -webkit-transform: translate3d(-300px, 0, 0);
  transform: translate3d(-300px, 0, 0);
  -webkit-transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
}

.menu {
  background: #3f146d;
  width: calc(100% - 115px);
  height: 100%;
  /* padding: 2em 1em; */
}

.icon-list {
  width: 300px;
}
.icon-list .dropdown-menu {
  background: #3f146d !important;
  padding-left:15px;
}

.icon-list a {
  text-decoration: none;
  transition: all 0.3s ease;
  font-size: 15px;
  font-weight: normal;
  display: block;
  line-height: 50px;
  color: rgba(255, 255, 255, 0.8);
  padding: 0 25px !important;
  border-bottom: solid 1px rgba(255, 255, 255, 0.08);
}
.icon-list ul li {
  z-index: 9999;
}
.icon-list ul li.current-menu-item {
  padding: 0;
  background-color: rgba(255, 255, 255, 0.14);
}
.icon-list ul li.current-menu-item a {
  color: rgba(255, 255, 255, 1);
}
.icon-list ul li a:hover {
  background-color: rgba(255, 255, 255, 0.14);
  color: #fff;
}
.icon-list a i {
  opacity: 0.5;
}

.icon-list a span {
  margin-left: 0px;
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: 1px;
  font-size: 0.75em;
}

/* Morph Shape */
.morph-shape {
  position: absolute;
  width: 120px;
  height: 100%;
  top: 0;
  right: 0;
  fill: #3f146d;
  z-index: 1000;
}

/* Shown menu */
.show-menu .menu-wrap {
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}
.menu-wrap .open-canvas {
  display: none;
}
.show-menu .content-wrap {
  -webkit-transition-delay: 0.1s;
  transition-delay: 0.1s;
  -webkit-transform: translate3d(200px, 0, 0);
  transform: translate3d(200px, 0, 0);
}

.show-menu .content-wrap ::before {
  opacity: 1;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}
.show-menu .close-button {
  opacity: 1;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}
.show-menu .close-button i{
  font-size: 15px;
}