/*
	Todd Motto Labs
	URL: www.toddmotto.com
*/
‚∑
/*------------------------------------*\
    Flaunt JS Navigation
\*------------------------------------*/


/* Navigation submenu*/
.nav-submenu {
	display:none;
	position:absolute;
	left:0;
	width:180px;
}
.nav-submenu-item a {
	background:#9e9e9e;
	border-bottom:1px solid #9e9e9e;
	display:block;
	padding:15px;
}
.nav-submenu-item a:hover {
	background:#932C77;
} 

/* Mobile navigation */
.nav-mobile {
	display:none; /* Hide from browsers that don't support media queries */
	cursor:pointer;
	position:absolute;
	top:43px;
	right:20px;
	background:rgba(255, 255, 255, 0) url("../images/nav.svg") no-repeat center center;
	background-size:28px;
	height:50px;
	width:50px;
}
/* Mobile navigation, clickable area for revealing <ul> */
.nav-click {
	position:absolute;
	top:0;
	right:0;
	display:none;
	border-left:1px solid #9e9e9e;
	height:49px;
	width:49px;
	cursor:pointer;
}
.nav-click i {
	display:block;
	height:48px;
	width:48px;
	background:url("assets/images/drop.svg") no-repeat center center;
	background-size:20px;
}
.nav-click:hover {
	background-color:#6E1656;
}
.nav-rotate {
	-webkit-transform:rotate(180deg);
	-moz-transform:rotate(180deg);
	-ms-transform:rotate(180deg);
	-o-transform:rotate(180deg);
	transform:rotate(180deg);
}

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

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


	.nav-list {
	text-align:left;
	}
	
	.nav-item {
	float:left;
	display:inline;
	zoom:1;
	position:relative;
	}
	
	.nav-item:hover .nav-submenu {
	display:block;
	}
	
	.nav-mobile {
		display:block;
	}
	.nav {
		width:100%;
		padding:0px 0 0;
	}
	.nav-list {
		display:none;
	}
	.nav-item {
		text-align: left;
		width:100%;
		float:none;
		background-color: #ffffff;
	}
	.nav-item > a {
		padding:15px 0 15px 0;
		border-bottom:1px solid #e2017b;
	}
	.nav-click {
		display:block;
	}
	.nav-mobile-open {
		border-radius:5px 5px 0 0;
		-webkit-border-radius:5px 5px 0 0;
		-moz-border-radius:5px 5px 0 0;
	}
	.nav-item:hover .nav-submenu {
		display:none;
	}
	.nav-submenu {
		position:static;
		width:100%;
	}
}
