/*
    Responsive menu based on :

	Flaunt.js v1.0.0 by Todd Motto Labs
	URL: www.toddmotto.com
*/

/*------------------------------------*\
    Flaunt JS Navigation
\*------------------------------------*/
/* Mobile navigation */
.nav-mobile {
	display:none; /* Hide from browsers that don't support media queries */
	cursor:pointer;
	position:absolute;
	top:10px;
	right:10px;
	background:#3D3D3B url(../images/flaunt/nav.svg) no-repeat center center;
	background-size:18px;
	height:50px;
	width:50px;
}
.nav-mobile.rwd-close {
    background-image: url(../images/flaunt/nav-close.svg);
}

/*------------------------------------*\
    Media Queries
\*------------------------------------*/

@media only screen and (max-device-width: 670px) {
	.nav-mobile {
		display:block;
	}
	.nav-rwd {
		width:100%;
		padding:60px 0 0;
	}
	.nav-list {
		display:none;
	}
}