

.menu-wrap a {
	color: #b8b7ad;
}

.menu-wrap a:hover,
.menu-wrap a:focus {
	color: #c94e50;
}

.content-wrap {
	-webkit-transition: -webkit-transform 0.4s;
	transition: transform 0.4s;
}

/* Menu Button */
.menu-button {
	position: absolute;
	z-index: 999999;
	margin: 10px 20px;
	padding: 0;
	width: 2.5em;
	height: 2.25em;
	border: none;
	text-indent: 2.5em;
	font-size: 1.5em;
	color: transparent;
	background: transparent;
	cursor: pointer;
}
.menu-button:focus,
.menu-button:active {
	outline: none;
}

.menu-button::before {
	position: absolute;
	top: 0.5em;
	right: 0.5em;
	bottom: 0.5em;
	left: 0.5em;
	background: linear-gradient(#fff 20%, transparent 20%, transparent 40%, #fff 40%, #fff 60%, transparent 60%, transparent 80%, #fff 80%);
	content: '';
}

.menu-button:hover {
	opacity: 0.6;
}

/* 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: #252525;
}

.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: 300px;
	height: 100%;
	font-size: 1.15em;
	-webkit-transform: translateX(-300px);
	transform: translateX(-300px);
	-webkit-transition: -webkit-transform 0.4s;
	transition: transform 0.4s;
}

.mobile-menu {
	background: #fff;
	width: calc(100% - 120px);
	height: 100%;
	padding: 2em 1em;
	position: relative;
}
.mobile-menu-list {
	position: absolute;
	left: 0;
	top: 50px;
	width: 300px;
	height: 100%;
}

.mobile-menu .menu {
    padding-left: 30px;
    list-style: none;
    text-align: left;
}
.mobile-menu .menu>li {
	position: relative;
}

.mobile-menu .menu li a {
	padding: 10px 30px;
	display: block;
	color: #252525;
}

.mobile-dropdown-menu {
	width: 100%;
	padding: 5px ;
	overflow: hidden;
	display: none;
	padding-left: 25px !important;
}

.mobile-dropdown-menu li {
	float: none;
	display: block;
}
.mobile-dropdown-menu li a{
	font-size: 0.9em;
	padding: 6px 15px !important;
}

.mobile-menu .menu>li.active>a,
.mobile-menu .menu>li.open>a{
	color: #00b2b7
}
.mobile-menu .menu>li .mobile-dropdown-menu>li>a.active-submenu {
	color: #00b2b7;
}


.mobile-menu .menu>li>a {
	position: relative;
}

.mobile-menu .menu>li>a:after {
	width: 10px;
	height: 1px;
	content: "";
	position: absolute;
	right: 15px;
	top: 20px;
	background-color: #252525;
}

.mobile-menu .menu>li>a:before {
	width: 10px;
	height: 1px;
	content: "";
	position: absolute;
	right: 15px;
	top: 20px;
	background-color: #252525;
	transform: rotate(-90deg);
	-webkit-transition: all 0.3s ease;
	transition: all 0.3s ease;
}
.mobile-menu .menu>li.open>a:before {
	transform: rotate(0deg);
}
.mobile-menu .menu>li.active>a:after,
.mobile-menu .menu>li.active>a:before,
.mobile-menu .menu>li.open>a:after,
.mobile-menu .menu>li.open>a:before {
	background-color: #00b2b7;
}


/* Morph Shape */
.morph-shape {
	position: absolute;
	width: 120px;
	height: 100%;
	top: 0;
	right: 0;
	fill: #fff;
	z-index: -1;
	box-shadow: 0px 0px 10px 0px rgba(0,0,0,0.5);
}

/* Shown menu */
.show-menu .menu-wrap {
	-webkit-transform: translateX(0px);
	transform: translateX(0px);
}

.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);
}