.fl-menu-button{
	display: inline-block;
	font-size: 40px;
	line-height: 1;
}

.offscreen-menu-button .fl-button-icon{
	vertical-align: middle;
	margin-right: 5px;
}

.offscreen-menu-button > nav{
	position: fixed;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: rgba(0,0,0,0);
	z-index: 2000000;
	-webkit-transition: background 300ms ease;
	transition: background 300ms ease;
}
.offscreen-menu-button.shown > nav{
	background: rgba(0,0,0,0.5);
}
.offscreen-menu-button > nav > ul{
	width: 100%;
	height: 100%;
	max-width: 300px;
	max-height: 100%;
	overflow: auto;
	position: absolute;
	top: 0;
	left: 0;
	bottom: 0;
	background: #fff;
	-webkit-transform: translateX(-100%);
	transform: translateX(-100%);
	-webkit-transition: -webkit-transform 300ms ease;
	transition: transform 300ms ease;
}
.offscreen-menu-button.shown > nav > ul{
	-webkit-transform: translateX(0%);
	transform: translateX(0%);
}

.offscreen-menu-button ul{
	display: block;
	list-style: none;
	margin: 0;
	padding: 0;
}
.offscreen-menu-button ul a{
	position: relative;
	display: block;
	padding: 15px 20px;
}
.offscreen-menu-button ul a:hover{
	background: #f3f3f3;
}
.offscreen-menu-button ul .parent-link a{
	font-weight: bold;
	color: #00B361;
}
.offscreen-menu-button ul .sub-menu{
	display: none;
}
.offscreen-menu-button ul.show-only-active > li:not(.show-submenu){
	display: none;
}
.offscreen-menu-button ul li.show-submenu > ul{
	display: block;
}
.offscreen-menu-button ul li.menu-item-has-children.show-submenu > a{
	border-bottom: 1px solid #e4e4e4;
	font-weight: bold;
}
.offscreen-menu-button ul li.menu-item-has-children > a:after{
	content: '';
	position: absolute;
	top: 50%;
	right: 15px;
	display: block;
	width: 24px;
	height: 24px;
	background: url(/wp-content/plugins/nomon-woocommerce/modules/offscreen-menu/arrow.svg) center center no-repeat;
	-webkit-transform-origin: center;
	transform-origin: center;
	-webkit-transform: translateY(-50%) rotate(0deg);
	transform: translateY(-50%) rotate(0deg);
	-webkit-transition: -webkit-transform 500ms ease;
	transition: transform 500ms ease;
}
.offscreen-menu-button ul li.menu-item-has-children.show-submenu > a:after{
	-webkit-transform: translateY(-50%) rotate(-90deg);
	transform: translateY(-50%) rotate(-90deg);
}

.offscreen-menu-header{
	position: relative;
	display: block !important;
	padding: 15px 20px;
	border-bottom: 1px solid #e4e4e4;
	font-weight: bold;
}
.offscreen-menu-header .offscreen-menu-close{
	display: block;
	position: absolute;
	top: 50%;
	right: 15px;
	-webkit-transform: translateY(-50%);
	transform: translateY(-50%);
	width: 24px;
	height: 24px;
	padding: 0;
	background: url(/wp-content/plugins/nomon-woocommerce/modules/offscreen-menu/close.svg) center center no-repeat;
}