/* CSS Document */

.mobile-nav {
	display: none;
	visibility: hidden;
	overflow-x: hidden;
	overflow-y: auto;
	position: absolute;
	z-index: 99999;
	-webkit-overflow-scrolling: touch;
	box-shadow: inset -15px 0px 5px rgba(0,0,0,0.25);
	padding: 5px;
}

.mobile-nav ul {}

.mobile-nav ul li {
	margin: 0;
	padding: 0;
	list-style-type: none;
	padding: 5px 0;
}

.mobile-nav ul li:first-child {
	border: none;
}

.mobile-nav > ul > li > ul > li {
	padding:5px 0 5px 0;
}

.mobile-nav ul li a {
	color: #3f3f3f;
	font-size: 14px;
}

.mobile-nav > ul > li {
	padding: 10px 0; 
}

.mobile-nav > ul > li > a {
	font-size: 16px;
}

.mobile-nav > ul > li.navActive > a, .mobile-nav > ul > li > ul > li.navActive > a {
	color: black;
	font-weight: bold;
}

.mobile-nav-toggle {
	display: none;
	visibility: hidden;
	z-index: 999999;
}

.mobile-nav-click {
	position: absolute;
	height: 100%;
	width: 100%;
	display: block;
	z-index: 200;
	right: 0;
}

ul.mobile-nav-diff > li:first-child .fa-times {
	display: none;
}	

@media (max-width: 767px) {

	.mobile-nav-wrapper{
		background-color: #fff;
	}
	
	.navmainDiv .navmain {
		display: none;
	}
	
	.mobile-nav-toggle {
		position: fixed;
		left: 0;
		top: 12px;
		display: inline-block;
		visibility: visible;
		font-weight: bold;
		font-size: 16px;
		font-weight: normal;
		color: #ffffff;
		padding: 10px 15px 10px 12px;
		background-color: black;
		-webkit-border-top-right-radius: 5px;
		-webkit-border-bottom-right-radius: 5px;
		-moz-border-radius-topright: 5px;
		-moz-border-radius-bottomright: 5px;
		border-top-right-radius: 5px;
		border-bottom-right-radius: 5px;
		cursor: pointer;
	}
	
	/* NEEDED FOR SIDE MENU */

	.mobile-nav > ul > li:first-child {
		position: absolute;
		top: 12px;
		right: 15px;
		display: inline-block;
		font-weight: bold;
		font-size: 16px;
		font-weight: normal;
		color: #ffffff !important;
		padding: 10px 15px 10px 10px;
		background-color: black;
		-webkit-border-top-left-radius: 5px;
		-webkit-border-bottom-left-radius: 5px;
		-moz-border-radius-topleft: 5px;
		-moz-border-radius-bottomleft: 5px;
		border-top-left-radius: 5px;
		border-bottom-left-radius: 5px;
	}
	
	ul.mobile-nav-diff > li:first-child {
		top: 0 !important;
		right: 0 !important;
		display: block;
		background: black;
	    border-color: black;	
	    	
	    color: #fff;
	    padding-left: 10px;
	    -webkit-border-radius: 2px;
		-moz-border-radius: 2px;
		border-radius: 2px;
		position: relative;		
	}		
	
	ul.mobile-nav-diff > li:first-child .fa-times {
		font-size: 18px;
		position: absolute;
		top: 0;
		right: 15px;
		height: 100%;
		padding: 12px;
		background-color: #fff;
		color: black;
		display: block;
	}	
	
	ul.mobile-nav-diff > li:first-child .fa-times:hover {
		cursor: pointer;
		opacity: 0.85;
	}	
	
	.mobile-nav > ul > li:first-child a {
		color: #fff;
	}
	
	.mobile-nav .fa {
		position: relative;
	}
	
	.mobile-nav li .fa.fa-sort-desc {
		margin: 0 0 0 5px;
		top: -3px;
	}		
	
	.content-container {
		overflow: hidden;
	}
	
	.mobile-nav {
		width: 220px;
		background-color: #eeeeee;
		display: block;
		visibility: visible;
		height: 100%;
		margin-left: -220px;
		position: absolute;
	}
	
	.mobile-nav-wrapper {
		display: block;
		overflow: hidden;
		position: absolute;
		z-index: 999999;
	}

}

@media (min-width: 768px) and (max-width: 991px) {
	
}

@media (min-width: 992px) and (max-width: 1199px) {
	
}