#menu-desktop,
#mobile-nav-cnt {
	position: absolute;
	right: 0;
	bottom: 0;
}

#mobile-nav-cnt {
	display: none;
	right: .5em;
}

#mobile-nav-icon {
	float: right;
	font-size: 1.9em;
	padding: .2em;
	margin: 0 0 0 .15em;
	border-radius: 6px;
}


#menu-desktop {
	left: 0;
}

#menu-branches {
	background: #86ab38;
	margin-top: 1em;
}

#menu-desktop ul {
	float: right;
}

#menu-desktop ul, #menu-branches ul,
#menu-desktop li, #menu-branches li {
	list-style: none;
	display: inline-block;
}

#menu-desktop ul > li {

	padding: .4em 0;
}

#menu-desktop li > a {
	text-transform: uppercase;
	padding: 0 .5em .3em .5em;
	height: 100%;
	font-weight: 400;
	font-size: 1em;
	display: block;
	border-top: 3px solid #fff;
	border-right: 1px dotted #bbb;
}

#menu-desktop li:last-child > a,
#menu-desktop li:first-child > a {
	border-right: none;
}

#menu-branches ul {
	display: table;
	width: 100%;
	padding: 1em 0;
}

#menu-branches li {
	display: table-cell;
	border-right: 1px dotted #d0deb4;
	text-align: center;
}

#menu-branches li:last-child {
	border-right: none;
}

#menu-branches li > a {
	text-transform: uppercase;
	color: #fff;
	font-weight: 600;
	font-size: 1.1em;
	padding: 0;
	display: block;
}

#menu-branches li > a:hover {
	color: #000;
}

#menu-desktop .icon-home {
	padding-top: 10em;
}

#menu-desktop li > a,
#menu-desktop li > a i {
	transition: background 0.2s linear, color 0.2s linear;
}

#menu-desktop li > a i {
	margin-right: 0.2em;
}

#menu-desktop li.active {
	border-top: 3px solid #c0392c;
}

#menu-desktop li.active > a {
	color: #c0392c;
}

#menu-desktop li a i.icon-angle-down:before {
	margin: -.2em -.5em 0 .3em;
}

#menu-desktop li:hover > a,
#menu-desktop li > a:hover {
	color: #c0392c;
}

#menu-desktop li > .sub {
	position: absolute;
	z-index: 112;
	margin-top: 3em;
	transition: all 0.2s linear;
	visibility: hidden;
	opacity: 0;
	background: #fff;
	box-shadow: rgba(0,0,0,0.2) 0px -1px 10px 2px;
}

#menu-desktop li:hover .sub {
	visibility: visible;
	opacity: 1;
	margin-top: 0;
}

#menu-desktop li ul.sub li {
	min-width: 20em !important;
	clear: both;
	height: auto;
	text-align: left;
	margin: 0;
}

#menu-desktop li ul.sub li > a {
	text-transform: uppercase !important;
	text-transform: none;
	border-top: 1px solid #444;
	font-size: .9em;
	padding: 1em;
}

/*
.menu-fixed {
	padding-top: 3.1em;
}

.menu-fixed #menu-desktop {
	position: fixed;
	z-index: 1;
	top: 0;
	left: 0;
}
*/


/**** MEGA MENU ****/


#menu-desktop li .sub.mega {
	background: #fff;
	width: 58em;
	right: 0;
	padding: 1em;
}

#menu-desktop li .sub.mega [class*="col-"] {
	padding: 1em;
}

#menu-desktop li .sub.mega img {
	margin-bottom: 0.6em;
	max-width: 100%;
}

#menu-desktop li .sub.mega label {
	color: #000;
	font-weight: 500;
	text-transform: uppercase;
	padding: 0 0 0.8em 0;
	margin: 0 0 0.6em 0;
	display: block;
	font-size: 1em;
}

#menu-desktop li .sub.mega label:after {
	content: '';
	display: block;
	margin: 1em 0 0 0;
	width: 40px;
	border-top: 1px solid #444;
}

#menu-desktop li .sub.mega p {
	line-height: inherit;
	color: #666;
	margin: 0;
	font-size: .9em;
	height: 5em;
}

#menu-desktop li .sub.mega .button {
	margin: .5em 0 0 0;
	font-size: .9em;
	font-weight: 600;
}

#menu-desktop li .sub.mega ul,
#menu-desktop li .sub.mega ul li,
#menu-desktop li .sub.mega ul li a {
	padding: 0;
	margin: 0;
	width: 100%;
	height: auto;
}

#menu-desktop li .sub.mega ul li a {
	text-transform: capitalize;
	font-size: 1em;
	padding: 0.5em 0 0.5em 0;
	font-weight: normal;
	color: #000;
}

#menu-desktop li .sub.mega ul li a:hover {
	background: none;
	color: #6f8b37;
}



/**** MOBILE SIDEBAR ****/

.mobile-sidebar {
    top: 0;
    bottom: 0;
    left: 0;
	width: 20em;
	max-width: 80%;
	height: 100%;
	position: fixed;
	z-index: 10001;
	background-color: #f6f6f6;
	color: #777;
	-webkit-transition: -webkit-transform 0.2s;
    transition: transform 0.2s;
	-webkit-transform: translateX(-99.999%);
	-ms-transform: translateX(-99.999%);
	transform: translateX(-99.999%);
}

.mobile-sidebar.right {
	left: auto;
	right: 0;
	-webkit-transform: translateX(100.001%);
	-ms-transform: translateX(100.001%);
	transform: translateX(100.001%);
}

.mobile-sidebar.open {
	box-shadow: 0px 0px 10px 0px rgba(0,0,0,0.5);
	-webkit-transform: translateX(0);
	-ms-transform: translateX(0);
	transform: translateX(0);
}

.mobile-sidebar .title {
	width: 100%;
	height: 4em;
	display: block;
	font-size: 1.1em;
	padding: 1em 0 0 1em;
	font-weight: 900;
	color: #000;
	text-transform: uppercase;
	position: absolute;
	background: #222;
	color: #fff;
	z-index: 2;
}

.mobile-sidebar .title b {
	padding-top: .3em;
	float: left;
}

.mobile-sidebar.level1 .title.cat,
.mobile-sidebar.level2 .title.cat,
.mobile-sidebar.level3 .title.cat,
.mobile-sidebar .title.back {
	display: none;
}

.mobile-sidebar.level1 .title.back,
.mobile-sidebar.level2 .title.back,
.mobile-sidebar.level3 .title.back {
	display: block;
}

.mobile-sidebar .title i {
	margin-left: -.5em;
	font-size: 1.4em;
}

.mobile-sidebar .title .icon-cancel {
	float: right;
	margin-right: .5em;
}

.mobile-sidebar .title .icon-angle-left {
	float: left;
}

.mobile-sidebar.open .content {
	width: 100%;
	position: absolute;
	top: 4em;
	bottom: 0;
	overflow-x: hidden;
	overflow-y: scroll;
	-webkit-overflow-scrolling: touch;
	-ms-overflow-style: -ms-autohiding-scrollbar;
	padding-top: 1em;
}

.mobile-sidebar ul {
	position: absolute;
	height: 100%;
}

.mobile-sidebar ul,
.mobile-sidebar ul li,
.mobile-sidebar ul li a {
	width: 100%;
	display: block;
	list-style: none;
	margin: 0;
	padding: 0;
}

.mobile-sidebar ul.nav {
	-webkit-transition: -webkit-transform 300ms ease;
	-moz-transition: -moz-transform 300ms ease;
	-o-transition: -o-transform 300ms ease;
	transition: transform 300ms ease;
	-webkit-transform: translateX(0);
	-ms-transform: translateX(0);
	-o-transform: translateX(0);
	transform: translateX(0);
}

.mobile-sidebar.level1 .nav {
	-webkit-transform: translateX(-100%);
	-ms-transform: translateX(-100%);
	-o-transform: translateX(-100%);
	transform: translateX(-100%);
}

.mobile-sidebar.level2 .nav {
	-webkit-transform: translateX(-200%);
	-ms-transform: translateX(-200%);
	-o-transform: translateX(-200%);
	transform: translateX(-200%);
}

.mobile-sidebar.level3 .nav {
	-webkit-transform: translateX(-300%);
	-ms-transform: translateX(-300%);
	-o-transform: translateX(-300%);
	transform: translateX(-300%);
}

.mobile-sidebar ul li > ul {
	left: 100%;
	top: 0;
	display: none;
}

.mobile-sidebar ul li.active > ul {
	display: block;
}

.mobile-sidebar ul li {
	padding-left: 1em;
}

.mobile-sidebar ul li a {
	color: #000;
	padding: 1em 0;
	font-weight: 400;
	font-size: 1.1em;
	border-bottom: 1px solid #ddd;
	text-transform: uppercase;
}

.mobile-sidebar ul li ul li a {
	text-transform: none;
}

.mobile-sidebar ul li a i {
	float: right;
	margin-right: 1em;
	font-style: normal;
	text-transform: none;
}

.mobile-sidebar ul li a i.tag {
	font-size: .8em;
	padding: .3em 1em;
	background: #081f31;
	margin-top: -.2em;
	color: #fff;
	font-weight: 400;
	border-radius: .5em;
}

.mobile-sidebar ul li.all a {
	font-weight: 600;
}

.mobile-sidebar ul li a b {
	font-weight: 600;
	color: #081f31;
}