﻿

.menu-wrap a {
	color: #333333;
}

.menu-wrap a:hover,
.menu-wrap a:focus {
	color: #333333;
}

.content-wrap {
	overflow:hidden;
	-webkit-overflow-scrolling: touch;
	-webkit-transition: -webkit-transform 0.3s;
	transition: transform 0.3s;
}

.content {
	position: relative;
}

.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);
}

/*---------- start manal update -----------*/
/* Menu Button */
.menu-button {
    position: relative;
    z-index: 999;
    margin: -15px 0 0 0;
    padding: 0;
    left: 0;
    width: 28px;
    top: 10px;
    height: 25px;
    text-align: left;
    border: none;
    text-indent: 2em;
    font-size: 20px;
    color: transparent;
    background: transparent url(../images/menu.png) no-repeat left top;
}
/*---------- end manal update -----------*/

.menu-button::before {
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	background:none;
	content: '';
}

.menu-button:hover {
	opacity: 1;
}

/* Close Button */
.close-button {
    width: 35px;
    height: 35px;
    position: absolute;
	left: 1em;
	top: 1em;
	overflow: hidden;
	text-indent: 16px;
	border: none;
	z-index: 9999;
	background: transparent;
	color: #000000;
}

.close-button::before,
.close-button::after {
	content: '';
	position: absolute;
	width: 2px;
	height: 100%;
	top: 0;
	right: 50%;
	background: #000;
}

.close-button::before {
	-webkit-transform: rotate(45deg);
	transform: rotate(45deg);
}

.close-button::after {
	-webkit-transform: rotate(-45deg);
	transform: rotate(-45deg);
}

/* Menu */
.menu-wrap {
	position:fixed;
	z-index: 1001;
	width:100%;
	right:0;
	height: 100%;
	top:0;
	font-size: 1.15em;
	-webkit-transform: translate3d(100%,0,0);
	transform: translate3d(100%,0,0);
	-webkit-transition: -webkit-transform 0.3s;
	transition: transform 0.3s;
}

.menu {
	background:#fff; 
	color:#333333;
	width: 100%;
	height: 100%;
	padding:100px 100px;
	top:0;
}

.icon-list {
	width: 290px;
	float:left;
}

.icon-list a {
	display: block;
	padding: 5px 0;
}


.icon-list a span {
	margin-left: 0px;
	text-transform:  uppercase;
	letter-spacing: 0px;
	font-size: 20px;    
}

.icon-list-sub {
	width: 215px;
    margin-left: 30px;
}

.icon-list-sub a {
	display: block;
	padding: 1px 0;
}

.icon-list-sub a i {
	opacity: 1;
}

.icon-list-sub a span {
	margin-left: 10px;
	text-transform:   capitalize;
	letter-spacing: 0px;
	font-size: 16px;   
}



/* Morph Shape */
.morph-shape {
	position: absolute;
	width: 45px;
	height: 100%;
	top: 0;
	right: 0px;
	fill:#fff;    
	transform: rotate(180deg);
	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(0px,0,0);
	transform: translate3d(0px,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);
}