
/* .container,  */
.content-wrap {
	/* overflow: hidden; */
	width: 100%;
	/*height: 100%;*/
}

.container {
	/* background: #373a47; */
}

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


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

.content {
	position: relative;
	width:100%; height:100%;
	/* z-index:998; */
	}

.content::before {
	position: fixed;
	top: 0;
	left: 0;
	z-index: 10;
	width: 100%;
	height: 100%;
	background: rgba(0,0,0,0.1);
	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: 10px 25px;
	padding:4px;
	width:60px;
	height:30px;
	border: none;
	text-indent: 2.5em;
	font-size: 1.5em;
	color: transparent;
	/* background: transparent; */
	/* background:url(../images/menu_a.png); */
	border:1px solid #adadad;
}
.menu-button_kk{width:58px; height:28px; border:1px solid #969696;background:url(../images/iouu_1.png);background-color:rgba(255,255,255,.8);}

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

/* Close Button */
.close-button {
	width: 20px;
	height: 20px;
	position: absolute;
	right: 20px;
	top: 20px;
	overflow: hidden;
	text-indent: 16px;
	border: none;
	z-index: 1001;
	background:url(../images/menu_close.png) no-repeat;
	color: transparent;
	transition: all 0.6s ease;
}
.close-button:hover{
background:url(../images/menu_close2.png) no-repeat;
transition: all 0.6s ease;
transform:rotate(180deg);
-ms-transform:rotate(180deg); 	/* IE 9 */
-moz-transform:rotate(180deg); 	/* Firefox */
-webkit-transform:rotate(180deg); /* Safari ĺ Chrome */
-o-transform:rotate(180deg); 	/* Opera */
}


/* Menu */
.menu-wrap {
	/* position: absolute; */
	position:fixed;
	z-index: 1001;
	width: 250px;
	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 {
	/* width: calc(100% - 120px); */
	width:100%;
	height: 100%;
	/* padding: 2em 1em; */
}

.icon-list {
	width: 250px; position: absolute; top:150px; text-align:center; z-index:9999;
}
.icon-list i{ width:13px; background:#0f0; display:inline-block;}
.icon-list a { width:150px;
	display: inline-block; font-size:12px; color:#333232; height:31px; line-height:30px; margin:0 20px 14px; padding:0 13px;
	/* padding: 0.8em; */
}

.icon-list a:hover{
	color: #219ea2;
	/* border-bottom:1px solid #0080ff; */
}
.icon-list a:after {
  content: "";
  display: block;
  width: 0%;
  height: 1px;
  background-color: #219ea2;
  margin: 0 auto;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.icon-list a:hover:after {
  width: 100%;
}

.icon-list a i {
	opacity: 0.5;
}



.icon-list a span {
	margin-left: 10px;
	text-transform: uppercase;
	font-weight: 700;
	letter-spacing: 1px;
	font-size: 0.75em;
}

/* Morph Shape */
.morph-shape {
	position: absolute;
	width: 250px;
	height: 100%;
	top: 0;
	right: 0;
	/* fill: #333232; */
	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;
	position:fixed; top:0; right:0; width:100%; height:100%; z-index:999;

}

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