/*------------------------------------*\
    Flaunt JS Navigation
\*------------------------------------*/

.nav-list {
	text-align: left;
}

.nav-list ul {
	list-style: none;
	padding: 25px;
	margin: 30px 0 0 0;
}

.nav-item {
	float: left;
	*display: inline;
	zoom: 1;
	position: relative;
}

.nav-item a {
	display: block;
	color: #000;
	font-size: 18px;
}

.nav-item:hover .nav-submenu {
	display: block;
}

/* Navigation submenu */
.nav-submenu {
	display: none;
	position: absolute;
	left: 0;
	width: 180px;
}

.nav-list ul ul {
	padding: 0 0 0 30px;
	margin: 0;
}

.nav-submenu-item a {
	display: block;
	padding: 10px 0;
}

.nav-list .nav-mobile {
	background: none;
	width: 50px;
	height: 50px;
	position: absolute;
	right: 0;
	display: flex;
	align-items: center;
	justify-content: center;
}

.nav-list .nav-mobile svg {
	width: 30px;
}

/* Mobile navigation */
.nav-mobile {
	cursor: pointer;
	background: url(../images/nav-open-text.svg) no-repeat center center;
	height: 50px;
	width: 80px;
	background-size: contain;
}

/* Mobile navigation, clickable area for revealing <ul> */
.nav-click {
	position: absolute;
	top: 0;
	right: -30px;
	display: none;
	height: 39px;
	width: 40px;
	cursor: pointer;
}

.nav-click i {
	display: block;
	height: 40px;
	width: 40px;
	background: #1e4846 url(../images/drop.svg) no-repeat center center;
	background-size: 16px;
}

.nav-rotate {
	-webkit-transform: rotate(180deg);
	-moz-transform: rotate(180deg);
	-ms-transform: rotate(180deg);
	-o-transform: rotate(180deg);
	transform: rotate(180deg);
}

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

.nav-list {
	width: 320px;
	left: 0;
	transition: transform 0.5s;
	text-align: left;
	background: #fff;
	display: block;
	position: fixed;
	top: 0;
	bottom: 0;
	z-index: 99998;
	padding-bottom: 5px;
	margin-bottom: -5px;
	outline: 1px solid transparent;
	overflow-y: auto;
	overflow-x: hidden;
	transform: translateX(-100%);
	-ms-transform: translateX(-100%);
	-webkit-transform: translateX(-100%);
	-moz-transform: translateX(-100%);
	box-shadow: 0px 19.42px 38.84px 0px #CACACA40;
}

.nav-list.open {
	transform: translateX(0);
	-ms-transform: translateX(0);
	-webkit-transform: translateX(0);
	-moz-transform: translateX(0);
}

.nav-item {
	width: 100%;
	float: none;
}

.nav-item>a {
	padding: 10px 0;
}

.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%;
}

@media (max-width: 767px) {

	.nav-mobile {
		width: 32px;
		background: url(../images/nav-open.svg) no-repeat center center;
	}

	.nav-list {
		width: 270px;
	}

	.nav-list ul {
		padding: 20px;
	}

	.nav-item a {
		font-size: 15px;
	}

}