.container{
	width: 300px;
	height: 100%;
	position: fixed;
	z-index: 900;
	top: 0;
	left: 0;
	float: left;
}



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

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

.content-wrap {
	overflow-y: scroll;
	-webkit-overflow-scrolling: touch;
	-webkit-transition: -webkit-transform 0.3s;
	transition: transform 0.3s;
}

.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;
	-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;
	opacity: 0.5;
}

.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.8;
}

/* Close Button */
.close-button {
	width: 50px;
	height: 50px;
	position: absolute;
	right: -50px;
	top: 0;
	overflow: hidden;
	text-indent: 16px;
	border: none;
	z-index: 1003;
	background: rgba(255,255,255,0.3);
	color: transparent;
	display: none;
	outline: none;

}

.show-menu .close-button{
	display: block;
}

.close-button::before,
.close-button::after {
	content: '';
	position: absolute;
	width: 4px;
	height: 65%;
	top: 15%;
	left: 45%;
	background: #fff;
	box-shadow: 0 1px 3px rgba(0,0,0,0.3);
}

.close-button::before {
	-webkit-transform: rotate(45deg);
	transform: rotate(45deg);
	/*box-shadow: 2px -1px 0px #fff;*/
}

.close-button::after {
	-webkit-transform: rotate(-45deg);
	transform: rotate(-45deg);
	/*box-shadow: 2px 2px 0px #fff;*/
}

@media screen and (max-width: 991px) {
	.close-button{
		width: 100px !important;
		height: 100px !important;
		right: -100px;
	}
	.close-button::before, .close-button::after{
		width: 6px;
	}
}

/* Menu */
.menu-wrap {
	position: absolute;
	z-index: 1001;
	width: auto;
	height: 100%;
	font-size: 0.8em;
	-webkit-transform: translate3d(-300px,0,0);
	transform: translate3d(-300px,0,0);
	-webkit-transition: -webkit-transform 0.3s;
	transition: transform 0.3s;
	background: url(../images/menu-bg-01.jpg)top left;
	background-repeat: repeat-y;
}

@media screen and (max-width: 999px) {
	.menu-wrap {
		position: absolute;
		z-index: 1001;
		width: auto;
		height: 100%;
		font-size: 0.8em;
		-webkit-transform: translate3d(-450px,0,0);
		transform: translate3d(-450px,0,0);
		-webkit-transition: -webkit-transform 0.3s;
		transition: transform 0.3s;
		background: url(../images/menu-bg-02.jpg)top left;
		background-repeat: repeat-y;
		}

}


/* Morph Shape */
.morph-shape {
	position: absolute;
	width: 120px;
	height: 100%;
	top: 0;
	right: 0;
	fill: #fff;
	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);
}