

.mobile-nav .toggle,
[id^=drop] {
	display: none;
}

/* Giving a background-color to the nav container. */
.mobile-nav { 
	margin:0;
	padding: 0;
	 
}


/* Since we'll have the "ul li" "float:left"
 * we need to add a clear after the container. */

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

/* Removing padding, margin and "list-style" from the "ul",
 * and adding "position:reltive" */
.mobile-nav ul {
	float: left; width: 100%;
	padding:0;
	margin:0;
	list-style: none;
	position: relative; box-sizing: border-box;
	}
	
/* Positioning the navigation items inline */
.mobile-nav ul li {
	margin: 0px;
	display:inline-block;
	float: left;
	}

/* Styling the links */
.mobile-nav a {
	display:block;
	padding:14px 20px;	
	color:#db061f;
	font-size:14px; text-transform: uppercase;
	text-decoration:none; font-weight: 700;
}

.mobile-nav ul li ul { padding-bottom: 10px; background: #f6f4f3; }
.mobile-nav ul li ul li{ border-bottom: none; font-size: 14px;  }
.mobile-nav ul li ul li a { background: #f6f4f3; color: #373737; }
.mobile-nav ul li ul li a:hover { background: #db061f; color: #fff; }

/* Background color change on Hover */

.mobile-nav a{background: #f6f4f3;}

.mobile-nav a:hover { 
	background: #f6f4f3; 
}

/* Hide Dropdowns by Default
 * and giving it a position of absolute */
.mobile-nav ul ul {
	display: none;
	position: absolute; 
	/* has to be the same number as the "line-height" of "nav a" */
	top: 60px; 
}
	
/* Display Dropdowns on Hover */
.mobile-nav ul li:hover > ul {
	display:inherit;
}
	
/* Fisrt Tier Dropdown */
.mobile-nav ul ul li {
	width:170px;
	float:none;
	display:list-item;
	position: relative;
}

/* Second, Third and more Tiers	
 * We move the 2nd and 3rd etc tier dropdowns to the left
 * by the amount of the width of the first tier.
*/
.mobile-nav ul ul ul li {
	position: relative;
	top:-60px;
	/* has to be the same number as the "width" of "nav ul ul li" */ 
	left:170px; 
}

	
/* Change ' +' in order to change the Dropdown symbol */
 .mobile-nav li > a:after { content:  '+'; }
 .mobile-nav li > a:only-child:after { content: ''; }


/* Media Queries
--------------------------------------------- */

@media all and (max-width : 768px) {

	#logo {
		display: block;
		padding: 0;
		width: 100%;
		text-align: center;
		float: none;
	}

	.mobile-nav {
		margin: 0;
	}

	/* Hide the navigation menu by default */
	/* Also hide the  */
	.mobile-nav .toggle + a,
	.menu {
		display: none;
	}

	/* Stylinf the toggle lable */
	.mobile-nav .toggle {
		display: inline-block; width: 100%;
		background-color: #f6f4f3;
		padding:14px 20px;	 box-sizing: border-box;
		color:#db061f;
		font-size:14px; text-transform: uppercase;
		text-decoration:none;  cursor: pointer;
		border:none;
	}
	label{margin: 0!important;}
	.mobile-nav .toggle a{display:block; cursor: pointer; color: #000;}
	.mobile-nav .toggle:hover {background-color: #f6f4f3; color: #000;}

	/* Display Dropdown when clicked on Parent Lable */
	.mobile-nav [id^=drop]:checked + ul {
		display: block;
	}

	/* Change menu item's width to 100% */
	.mobile-nav ul li {
		display: block;
		width: 100%; color: #000;
		}

	.mobile-nav ul ul .toggle,
	.mobile-nav ul ul a {
		padding: 0 40px; color: #000;
	}

	.mobile-nav ul ul ul a {
		padding: 0 80px; color: #000;
	}

	.mobile-nav a:hover,
 	.mobile-nav ul ul ul a {
		background-color: #f6f4f3; color: #000;
	}
  
	.mobile-nav ul li ul li .toggle,
	.mobile-nav ul ul a, .mobile-nav ul ul ul a{padding:10px 20px; color:#000; font-size:14px;	}
  
  .mobile-nav ul ul ul a:hover{color: #db061f;}
  
	.mobile-nav ul li ul li .toggle,
	.mobile-nav ul ul a {background-color: #f6f4f3; color: #a9a489; font-weight: 400; font-size: 14px; text-transform: none; line-height: 20px;}
	.mobile-nav ul ul a:hover {background-color: #f6f4f3; color: #000;}


	/* Hide Dropdowns by Default */
	.mobile-nav ul ul {
		float: none;
		position:static;
		color: #000;
		/* has to be the same number as the "line-height" of "nav a" */
	}
		
	/* Hide menus on hover */
	.mobile-nav ul ul li:hover > ul,
	.mobile-nav ul li:hover > ul {
		display: none;
	}
		
	/* Fisrt Tier Dropdown */
	.mobile-nav ul ul li {
		display: block;
		width: 100%;
	}

	.mobile-nav ul ul ul li {
		position: static;
		/* has to be the same number as the "width" of "nav ul ul li" */ 

	}

}

@media all and (max-width : 330px) {

	.mobile-nav ul li {
		display:block;
		width: 100%;
	}

}