#mobileHeader {
	background: #000;
	color: #fff;
	text-align: right;
}
#sideMenu {
	padding: 10px;
	font-size: 30px;
}
#mobileMenu {
	visibility: hidden;
	position: fixed;
	overflow: scroll;
	-webkit-overflow-scrolling: touch;
	z-index: 1000;
	left: 0;
	top: 0;
	height: 100%;
	width: 104%;
	background: #000;
	background: rgba(0,0,0,.9);
	background-attachment: fixed;
	-webkit-transform: translateX(-100%);
	   -moz-transform: translateX(-100%);
	    -ms-transform: translateX(-100%);
	     -o-transform: translateX(-100%);
	        transform: translateX(-100%);
	-webkit-transition: all .25s ease 0s;
	   -moz-transition: all .25s ease 0s;
	    -ms-transition: all .25s ease 0s;
	     -o-transition: all .25s ease 0s;
	        transition: all .25s ease 0s;
}

#closeMenu {
	background: #000;
	padding: 10px;
	position: absolute;
	cursor: pointer;
	right: 2%;
	top: 0;
	color: #fff;
	font-size: 40px;
}
.mobile-info {
	padding: 15px;
	text-align: center;
}
.mobile-info div {
	font-size: 24px;
}
#mobileMenu ul {
	padding-left: 0;
	margin-bottom: 0;
}
#mobileMenu ul li {
	display: block;
}
#mobileMenu ul li:first-child a {
	border-top: none;
}
#mobileMenu ul li a {
	background: rgba(0,0,0,.6);
	border-bottom: 1px solid #000;
	border-bottom: 1px solid #111;
	text-align: center;
	color: #fff;
	text-transform: uppercase;
	display: block;
	padding-top: 15px;
	padding-bottom: 15px;
	font-size: 24px;
}
#mobileMenu ul li a:hover {
	background: rgba(0,0,0,.9);
	text-decoration: none;
}
#mobileMenu ul li:last-child a {
	border-bottom: none;
}
#mobileMenu.active {
	visibility: visible;
	-webkit-transform: translateX(0);
	   -moz-transform: translateX(0);
	    -ms-transform: translateX(0);
	     -o-transform: translateX(0);
	        transform: translateX(0);
}

body.noscroll {
	overflow: hidden;
}