#nav {
	background-color: #4A4D56;
	width: 100vw;
	height: auto;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	align-items: center;
	z-index: 1;
}

#nav-middle {
	width: 90%;
	height: 100%;
	display: none;
	padding: 0 5%;
	flex-direction: column;
}

#nav-left, #nav-right {
	width: 90%;
	height: 100%;
	padding: 5px 0;
	box-sizing: border-box;
}

#nav-left {
	display: flex;
	flex-direction: row;
	justify-content: space-between;
	align-items: center;
}

#menu-icon {
	color: #FFF;
	font-size: 24px;
}

#nav-left img {
	max-height: 45px;
	max-width: 80%;
}

#nav-right {
	height: 100%;
	width: 100%;
	text-align: center;
	color: #FFF;
	font-size: 24px;
	display: none;
	flex-direction: column;
}

.nav-item {
	height: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
	text-decoration: none;
	color: #FFF;
	font-size: 18px;
	transition: all 0.3s;
	padding: 5px 0;
}

.nav-item {
	padding-top: 3px;
	border-bottom: 3px solid transparent;
}

.nav-item:hover {
	border-bottom: 3px solid #FFEB0C;
}

.nav-item-selected {
	border-bottom: 3px solid #FFEB0C;
}

#nav-right a {
	color: #FFF;
	text-decoration: none;
}

@media(min-width: 768px) {
	#nav {
		flex-direction: row;
		height: 50px;
	}

	#nav-middle {
		width: 40%;
		display: flex;
		justify-content: space-evenly;
		flex-direction: row;
	}

	#nav-left, #nav-right {
		width: 20%;
		padding: 5px;
	}

	#nav-left {
		padding-left: 30px !important;
	}

	#menu-icon {
		display: none;
	}

	.nav-item {
		flex-grow: 1;
		font-size: 15px;
		box-sizing: border-box;
		padding: 0;
	}

	#nav-right {
		width: 15%;
		text-align: right;
		justify-content: flex-end;
		font-size: 24px;
		display: flex;
		flex-direction: row;
		align-items: center;
	}

	#nav-right i {
		margin-right: 25px;
	}
}
