html, 
body, 
.container, 
.content-wrap {
	overflow: hidden;
	width: 100%;
	height: 100%;
}
.menu-wrap a {
	position: relative;
	color: #333;
	text-decoration: none;
	-webkit-transition: color 0.4s ease;
	-moz-transition: color 0.4s ease;
	-ms-transition: color 0.4s ease;
	-o-transition: color 0.4s ease;
	transition: color 0.4s ease;
}
.menu-wrap a:after {
	content: "";
	position: absolute;
	left: 10px;
	right: 10px;
	bottom: 0;
	height: 1px;
	background: rgba(0, 0, 0, 0.1);
}
.menu-wrap a.active {
	background: rgba(0, 0, 0, 0.05);
	color: #F5495A;
}
.menu-wrap a:hover,
.menu-wrap a:focus {
	color: #F5495A;
}

.menu i.fa {
	position: absolute;
	display: inline-block;
	width: 36px;
	height: 36px;
	line-height: 36px;
	text-align: center;
	top: 2px;
	left: 260px;
	z-index: 1003;
	cursor: pointer;
}
.menu ul {
	display: none;
	list-style: none;
}
	.menu ul li {
		position: relative;
	}
		.menu ul ul {
			margin-left: 25px;
		}
			.menu ul ul li a {
				width: 275px;
				font-size: 15px;
			}

.content-wrap {
	overflow-y: scroll;
	-webkit-overflow-scrolling: touch;
	-webkit-transition: -webkit-transform 0.3s;
	transition: transform 0.3s;
}
/* Close Button */
.close-button {
	width: 16px;
	height: 16px;
	position: absolute;
	right: 1em;
	top: 1em;
	overflow: hidden;
	text-indent: 16px;
	border: none;
	z-index: 1001;
	background: transparent;
	color: transparent;
}
.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: 0.85em;
	-webkit-transform: translate3d(-300px,0,0);
	transform: translate3d(-300px,0,0);
	-webkit-transition: -webkit-transform 0.3s;
	transition: transform 0.3s;
}
.menu {
	background: #fbfbfb;
	width: calc(100% - 120px);
	height: 100%;
	padding: 39px 0;
}
.icon-list {
	width: 300px;
	height: 100%;
	overflow-y: scroll;
}
.icon-list a:not(.btn) {
	display: block;
	padding: 11px 25px;
	position: relative;
	z-index: 1002;
	width: 300px;
}
.icon-list a span {
	text-transform: uppercase;
	font-weight: bold;
}
/* Morph Shape */
.morph-shape {
	position: absolute;
	width: 120px;
	height: 100%;
	top: 0;
	right: 0;
	fill: #fbfbfb;
	z-index: 1000;
}
/* Shown menu */
.show-menu .menu-wrap {
	-webkit-transform: translate3d(0,0,0);
	transform: translate3d(0,0,0);
}
.show-menu .content-wrap {
	-webkit-transition-delay: 0.1s;
	transition-delay: 0.1s;
	-webkit-transform: translate3d(100px,0,0);
	transform: translate3d(100px,0,0);
}
.show-menu .content::before {
	opacity: 1;
	-webkit-transition: opacity 0.3s;
	transition: opacity 0.3s;
	-webkit-transform: translate3d(0,0,0);
	transform: translate3d(0,0,0);
}