#menu-icon{
	position: fixed;
	left: 5px;
	top: 5px;
	width: 50px;
	height: 50px;
	cursor: pointer;
	z-index: 99;
	border: solid 1px rgba(0,0,0,0.2);
	background-color: rgba(0,0,0,0.1);
	}
#menu-icon > svg{
	margin: 13px;
	width: 24px;
	height: 24px;
	color: #FFF;
	}
#menu-icon:hover{
	background-color: rgba(255,255,255,0.1);
	}

#icon-share{
	position: fixed;
	right: 5px;
	top: 5px;
	width: 50px;
	height: 50px;
	cursor: pointer;
	z-index: 99;
	border: solid 1px rgba(0,0,0,0.2);
	background-color: rgba(0,0,0,0.1);
	}
#icon-share > svg{
	margin: 13px;
	width: 24px;
	height: 24px;
	color: #FFF;
	}
#icon-share:hover{
	background-color: rgba(255,255,255,0.1);
	}


#menu-content{
	position: fixed;
	top:0px;
	bottom: 0px;
	background-color: rgba(0,0,0,0.7);
	z-index: 97;
	width: 245px;
	transition: 0.4s;
	}
#menu-content.open{
	left: 0px;
	}
#menu-content.close{
	left: -245px;
	}
#menu-content > ul{
	display: block;
	margin: 0;
	padding: 70px 10px 10px 10px;
	}
#menu-content > ul > li{
	margin: 0;
	padding: 0;
	list-style: none;
	}
#menu-content > ul > li > a{
	display: block;
	padding: 15px;
	font-size: 18px;
	color: #FFF;
	text-decoration: none;
	text-transform: uppercase;
	font-family: 'Roboto','Arial','sans-serif';
	}
#menu-content > div{
	display: block;
	margin: 0;
	padding: 50px 30px 30px 30px;
	}
#menu-content > div > label{
	font-size: 15px;
	color: #999;
	display: block;
	font-family: 'Roboto','Arial','sans-serif';
	margin-bottom: 10px;
	}
#menu-content > div > a{
	display: block;
	color: #C90;
	display: block;
	font-size: 16px;
	line-height: 200%;
	font-family: 'Roboto','Arial','sans-serif';
	text-decoration: none;
	}
#menu-bg{
	position: fixed;
	top:0px;
	left: 0px;
	background-color: rgba(50,0,0,0.9);
	z-index: 97;
}
#menu-bg.open{
	right: 0px;
	bottom: 0px;
	width: auto;
	height: auto;
	display: block;
	}
#menu-bg.close{
	right: auto;
	bottom: auto;
	width: 1px;
	height: 1px;
	display: none;
	}