/*
Responsive Mobile Toggle Menu v2.2
Description: Mobile first responsive toggle menu
Author: Danielle Vautier
*/

/*Menu mobile first CSS*/
body{ -webkit-animation: bugfix infinite 1s; }

/*This fixes a chrome/webkit bug for older Android Browsers */
@-webkit-keyframes bugfix { from {padding:0;} to {padding:0;} } 

/*Required functional CSS don't change this bit
CSS styles are at the end! */

.mainMenu {
	display:block;
	position:relative;
	max-width:960px;
	margin:0 auto;
	padding:0;

	}
	
#toggleMenu { 
	display: none;
}

#toggleMenu:checked ~ ul {  
	max-height:100%; /*Make page height*/ 
	opacity:1;
}
	
.mainMenu > ul {
	width:100%;
	margin:0;
	padding: 0;
	list-style:none;
	float:left;
    overflow-y: hidden;
	max-height:0;
}

.mainMenu li {
	margin:0;
	padding:0;
	white-space:nowrap;
	display:block;
	width:100%;
	float:left;
	text-transform:uppercase;
}

.mainMenu li:hover {
	background-color:rgba(254,168,0,0.12)
	}

.mainMenu li.last {
	padding-bottom: 10px;
}


.mainMenu a, .mainMenu a:visited {
	display:block;
	width:100%; /*required to make whole element clickable*/
	}
.mainMenu a:hover  {
	text-decoration:underline;
}
.mainMenu a.active  {
	color: #F3B700 !important;
	
}

label.menuTitle {
	margin:0;
	display:block;
	cursor:pointer;
	background: url('../images/menu-white.png');
    background-image: url('../images/menu-white.png'), none; 
	background-repeat: no-repeat;
	background-position: 97% 10px;
	background-size: 24px 19px; /*Make same size as your menu.png*/
	}
	
@media screen and (min-width:1920px) {
	label.menuTitle {
		display:none;
		}
	
	.mainMenu ul { 
		display:block!important;
		border:0;
		overflow:visible;
		max-height:100%!important; 
		}	

	.mainMenu ul li {
		width:auto; 
		display:inline; 
		border:0; 
		}
}


/*Menu Styling CSS - change the below to suit your site!*/
.mainMenu {
	/*border-bottom:1px solid #ccc;*/
	text-align: center;
	}

.mainMenu li {
	/*border-top:1px solid #ccc;*/
	}
	
.mainMenu a, .mainMenu a:visited {
	color:#FCF9F9;
	text-decoration:none;
	width:94%; /*Use 100% and box-sizing if not supporting ie7*/
	padding:5px 3%;
	background: none;
	}
	
label.menuTitle {
	color:#fff;
	font-size:20px;
	width:94%;  /*Use 100% and box-sizing if not supporting ie7*/
	padding:6px 3%;
	font-weight:bold;
	}
	
@media screen and (min-width:1920px) {

	.mainMenu li {
		border:0;
		}
	
	.mainMenu a:link, .mainMenu a:visited  {
		color:#888;
		}
	
	.mainMenu a:hover  {
		color:#767676;
		}

	.mainMenu a, .mainMenu a:visited {
		padding:6px 3px 5px 8px;
		}
}