.mobile-menu{
	position: fixed;
	left: -999px;
	top: 0;
	height: 100%;
	max-width: 75%;
	width: 100%;
	background-color: #fff;
	box-shadow: 0px 0 5px 2px;
	padding-top: 50px;
	transition: .25s ease-in-out;
	z-index: 99999;
	overflow-y: scroll;
	
}

.mobile-menu::-webkit-scrollbar { 
    display: none; 
}

.mobile-menu.active{
	left: 0;
}

.mobile-menu ul {
	list-style: none;
}

.mobile-menu ul li a{
	font-family: 'Source Sans Pro', sans-serif;
	text-transform: uppercase;
	font-weight: 700;
	color: #000;
}

.mobile-menu ul.sub-menu li a{
	font-weight: 500 !important;
}

.overlay-menu{
	position: fixed;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	background-color: rgba( 0,0,0, 0.4 );
	z-index: 99998;
	display: none;
}

.overlay-menu.active{
	display: block;
}

@media screen and ( min-width: 1200px ){
	.mobile-menu{
		max-width: 450px;
	}
}
