/*
 Theme Name:   Oxygen XL
 Theme URI:    https://vardeman.com
 Description:  Child Theme for Divi
 Author:       B Nicoll
 Author URI:   https://vardeman.com
 Template:     Divi
 Version:      1.0.0
*/

/*****Add any custom CSS below this line*****/

/* -------------------------------------------------------------------- */
/* --- Mobile Flyout Menu --------------------------------------------- */
/* -------------------------------------------------------------------- */


.mobile-button {

		height:50px;
		width:50px;
	    opacity: 1;
	    color: #002445;
	    background-color: #C3CC00;
	    display: block;
	    cursor: pointer;
	    font-size: 22px;
	    border-radius:5px;
	    padding-top:12px;
	    
	    text-align:center;
	    float:right;

}	    


.mobile-button span.m-icon {
	vertical-align: middle;
	font-size:26px;
	/*margin-right:6px;*/
}

.mobile-button span.m-label {
	display:none;
	vertical-align: middle;
	font-size:26px;
}


.mobile-button:hover {
	color: white;
	background-color: #C3CC00;
}


/* class opens mobile navigation */
.mobile-menu-open .mobile-nav {
    z-index: 9999999999999;
    zoom: 1;
    left: 0%;
}


.mobile-nav {
	position: fixed;
	background-color: rgba(0,36,69,0.8);
	
	height: 100%;

	
	min-width:none;	
	width: 100%;

	left: -150%;
	bottom: 0%;
	top: 0%;
	z-index: 100002;
	
	padding-top:20px;
	
	overflow-y: scroll;
	-webkit-overflow-scrolling: touch;
	-webkit-transition: all .2s ease;
	-moz-transition: all .2s ease;
	-ms-transition: all .2s ease;
	-o-transition: all .2s ease;
	transition: all .2s ease;

}

@media only screen and (min-width: 640px) {
	.mobile-nav {
		min-width:360px;	
		width: 50%;
	}
}

.mobile-nav ul {		 
	margin: 0;
	padding: 0;
	list-style: none;
}


/* LEVEL 1 ------------- */
.mobile-nav ul .mli {
	display:block;
	width:90%;
	margin:auto;
	margin-bottom:5px;

	color: 		white;
	background: #002445;

	padding:10px 20px;

}

.mobile-nav ul .mli:before {
    content: " ";
    display: table;
}


.mobile-nav ul .mli:after {
    content: " ";
    display: table;
    clear: both;
}

.mobile-nav ul .mli:hover { 
	color: white;
	background: #C3CC00;
}

.mobile-nav ul .mli a {
	display:block;
	width:80%;
	float:left;
	color:white;
	font-size:16px;
	line-height:30px;	
	text-decoration:none;	
}

.mobile-nav ul .mli a:hover {
	text-decoration:none;
}

/* LEVEL 2 ------------- */
.mobile-nav ul ul .mli {
	padding-left:40px; 

	color: 		white;
	background: #253b4e;

}

.mobile-nav ul ul .mli:hover { 
	color: white;
	background: #C3CC00;
}

/* LEVEL 3 ------------- */
.mobile-nav ul ul ul .mli {
	padding-left:60px; 

	color: 		white;
	background: rgba(195,204,0,0.8);

}

.mobile-nav ul ul ul .mli:hover { 
	color: white;
	background: #C3CC00;
}

.mobile-nav ul a {
	display:block;
	width:80%;
	float:left;
	color:white;
	font-size:16px;
	line-height:30px;	
	text-decoration:none;
}
.mobile-nav ul a:hover {
	text-decoration:none;
}

/* LEVEL 2 ------------- */
.mobile-nav li ul { display:none; }
.mobile-nav li.mli-active ul { display:block; }

/* LEVEL 3 ------------- */
.mobile-nav li.mli-active ul ul { display:none; }
.mobile-nav li.mli-active ul li.mli-active ul { display:block; }

.mli-expand { color:white; font-size:20px; width:10%; float:right; text-align:right; }

.mobile-nav-close {
	/* display:none; */
	width:90%;
	margin:auto;
	margin-bottom:10px;
	text-align:center;
	color:white;
	padding:10px 20px;
	cursor: pointer;
	color: 		white;
}

.mobile-nav-close:hover { 

}	

