/*  Plugin: Codehim Dropdown (Multilevel Dropdowns to Off Canvas) 
 *   Requires: jQuery 1.7 or higher
 *   Author: Asif Mughal
 *   GitHub: https://github.com/CodeHimBlog
 *   URL: https://www.codehim.com
 *   License: MIT License
 *   Copyright (c) 2018 - Asif Mughal
 */

.codehim-dropdown {
	font-family: 'Nunito', sans-serif;
	font-style: normal;
	font-weight: 300;
	font-smoothing: antialiased;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}

.codehim-dropdown {
	width: 100%;
	height: 80px;
	box-sizing: border-box;
	-webkit-tap-highlight-color: transparent;
	transition: 0s;
}

.codehim-dropdown.sticky {
	position: fixed;
	top: 0;
	left: 0;
	z-index: 999;
	box-shadow: 1px 1px 4px rgba(0, 0, 0, 0.5);
	-webkit-box-shadow: 1px 1px 4px rgba(0, 0, 0, 0.5);
}


/* Skins */

.rfzg {
	background:;
}

/* Global Style for Codehim Dropdowns */

.codehim-dropdown a {
	outline: 0;
}
.codehim-dropdown img{margin-top:20px;margin-left: 15px;height:42px;}
.has-child span.parent+ul,
.menu-items {
	background: #fff;
	list-style: none;
	display: none;
}
@media screen and (min-width:320px) and (max-width:767px){
.codehim-dropdown {
	width: 100%;
	height: 60px;
	box-sizing: border-box;
	-webkit-tap-highlight-color: transparent;
	transition: 0s;
}	
.codehim-dropdown img{margin-top:10px;margin-left: 15px;height:36px;}

}

.dropdown-heading:after {
	font-family: FontAwesome;
	font-weight: 300;
	display: inline-block; 
	content: "\f107";
}

.dropdown-heading.active:after {
	transform: rotateZ(180deg);
	-webkit-transform: rotateZ(180deg);
	-moz-transform: rotateZ(180deg);
}

.dropdown-heading,
.dropdown-heading.active,
.dropdown-heading:hover,
.dropdown-heading:after,
.dropdown-heading.active:after {
	transition: all .3s ease-in-out;
	-webkit-transition: all .3s ease-in-out;
	-moz-transition: all .3s ease-in-out;
}


/* Home Link Style */

li.home-link a {
	text-decoration: none;
	color: rgba(255, 255, 255, 0.7);
	text-align: center;
	font-size: 20px;
	display: inline-block;
	width: 45px;
	height: 50px;
	background: rgba(0, 0, 0, 0.3);
	line-height: 50px;
}


/* Dim background effect */

.dim-overlay {
	display: none;
}

.dim-overlay:before {
	content: "";
	background-color: rgba(0, 0, 0, .8);
	height: 100%;
	/* for zombies browsers */
	height: 100vh;
	left: 0;
	position: fixed;
	top: 0;
	width: 100%;
	overflow: hidden;
	z-index: 2;
}

.menu-items li a {
	display: block;
	padding: 10px;
	color: #444;
	cursor: pointer;
	text-decoration: none;
	font-size: 13px;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
	-webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

.has-child span.parent:hover,
.menu-items li a:hover {
	background: #e0e0e0;
}

.has-child span.parent:after {
	font-family: FontAwesome;
	float: right;
}

.main-links {
	text-decoration: none;
}


/* Codehim Dropdowns Mobile View */

@media only screen and (max-width: 1280px) {
	.codehim-dropdown {
		position: relative;
		font-size: 14px;
	}
	.codehim-dropdown .icon {
		margin: 0 10px 0 5px;
		font-size: 16px;
	}
	/* The Off Canvas Menu */
	.dropdown-items {
		height: 100%;
		/* for zombies browsers */
		height: 100vh;
		display: none;
		overflow: scroll;
		box-sizing: border-box;
		position: fixed;
		top: 0;
		z-index: 999; background:#ac794c;
	}
	.menu-items {
		background: #fff;
	}
	.menu-items li a {
		padding-left: 15px;
		background: transparent;
	}
	.dropdown-items li {
		border-bottom: 1px dotted rgba(255, 255, 255, 0.16);
		overflow: hidden;
	}
	/* hamburger menu icon to reveal off canvas menu on mobile devices */
	.hamburger {
		position: absolute;
		width: 26px;
		height: 26px;
		top:30%;
		border-radius: 50%;
		cursor: pointer;right: 15px;
		-webkit-tap-highlight-color: transparent;
		text-align: center;
		color:#ac794c;
		font-size: 26px;
		line-height: 26px;
	}
	.hamburger:hover {
		background: rgba(0, 0, 0, 0.15);
	}
	.hamburger:after {
		font-family: FontAwesome;
		content: "\f0c9";
		font-weight: 200;
	}
	.dropdown-items .parent+ul {
		background: #fff;
		margin: 0;
		box-sizing: border-box;
		display: none;
	}
	/* Sub Menu list item */
	.dropdown-items .parent+ul li a {
		padding-left: 30px;
	}
	.main-links,
	.dropdown-heading {
		display: block;
		padding: 15px;
		color: rgba(255, 255, 255, 0.8);
		cursor: pointer;
	}
	.main-links:hover,
	.dropdown-heading:hover {
		background: rgba(0, 0, 0, 0.15);
		color: #fff;
	}
	.dropdown-heading:after {
		font-family: FontAwesome;
		font-weight: 300;
		display: inline-block;
		content: "\f107";
		float: right;
	}
	/* Sub Dropdowns heading */
	.has-child span.parent {
		padding: 15px;
		font-weight: 700;
		border-bottom: 1px solid #e0e0e0;
		display: block;
		background: transparent;
	}
	.has-child span.parent:after {
		content: "\f107";
		margin-right: 15px;
	}
}
}
