/* @override 
	http://genesis.fox/wp-content/plugins/wtf-mobile-menu/wtf-mobile-menu.css?ver=4.6.1
	http://regal.devden.wtf/wp-content/plugins/wtf-mobile-menu/wtf-mobile-menu.css?ver=4.7.2
	http://regal.devden.wtf/wp-content/plugins/wtf-mobile-menu/wtf-mobile-menu.css?ver=4.7.3 */

/*WTF RESPONSIVE MENU PLUGIN CSS - EDIT FREELY
--------------------------------------------- */
@media (min-width: 769px) {
	.wtf-mobilemenu-button, .wtf-mobilemenu-overlay{display:none;}
}

@media (max-width: 768px) {

	/*Setup the background to not scroll*/
	html, body {
	    height: 100%;
	}
	body.menu-active{
		overflow: hidden;
	}

	/*BUTTONS*/
	.wtf-mobilemenu-button{
		padding: 12px 15px;
		color: white;
		cursor: pointer;
		background-color: #024798 !important;
		right: 0;
		position: fixed;
		z-index: 500;
		font-size: 39px;
		line-height: 1;
		display: block;
	}
	.wtf-mobilemenu-button:hover{
		background-color: #2d317b;
	}
	
	/*PAGE*/
	.wtf-mobilemenu-overlay{
		position: fixed;
		background-color: #034898;
		z-index: 400;
		height: 100%;
		padding-top: 80px;
		/*width: 0;*/
		transform: scaleX(0);
		transform-origin: right;
		right: 0;
		overflow-x: hidden;
		width: 100%;
		opacity: 0.85;
		
		-webkit-transition: all 1s ease;
		transition: all 1s ease;
		-moz-transition: all 1s ease;
		-ms-transition: all 1s ease;
		-o-transition: all 1s ease;
		
	}
	.wtf-mobilemenu-overlay.active{
		/*width: 400px;*/
		transform: scaleX(1);
		
	}
	/*MENU ITEMS*/
	.wtf-mobilemenu-overlay li{
		text-align: right;
		list-style: none;
	}
	.wtf-mobilemenu-overlay a{
		color: white;
		font-style: 15px;
	}
	.wtf-mobilemenu-overlay a:hover{
		color: #febe10;
	}
	.wtf-mobilemenu-overlay .menu a{
		text-transform: uppercase;
		margin-top: 12px;
		display: block;
		padding-right: 20px;
	}
	.wtf-mobilemenu-overlay .sub-menu a{
		text-transform: lowercase;
		margin-top: 0;
	}
	#nav_menu-2{display: none;}
}

