.navbar {
	box-sizing: border-box;
	padding: 17px 20px 17px 20px;
	border-bottom: 1px solid #e2e2e2;
	background-color: #f6f7f9;
	font-family: Arial, sans-serif;
}
.navbar .logo-container {
	background-image: url(/images/muze-xr-logo-m.png);
	background-size: contain;
	background-repeat: no-repeat;
	width: 65px;
	opacity: 60%;
	transition: opacity 0.2s;
	cursor: pointer;
}
.navbar .logo-container:hover {
	opacity: 80%;
}
.navbar {
	width: 100%;
	display: flex;
}
.navbar > div {
	height: auto;
}
.navbar > .links {
	flex-grow: 1;
	text-align: right;
	padding-right: 30px;
	position: absolute;
	top: 50%;
	right: 0;
	transform: translateY(-50%);
}
.navbar > .links > ul {
	margin-bottom: 0;
}
.navbar > .links > ul > li {
	display: inline-block;
	margin-left: 30px;
	font-weight: bold;
	font-size: 18px;
}
.navbar > .links > ul > li a {
	text-decoration: none;
	transition: color 0.2s;
}
.navbar > .links > ul > li a:hover {
	color: #4b6da6;
	text-decoration: underline;
}

/** For homepage **/
.navbar.home {
	z-index: 99999;
	background-color: rgba(255,255,255,0.82);
	height: 68px;
	padding-top: 5px;
	margin-bottom: 50px;
}
.navbar.home > .links > ul > li a {
	color: rgba(0,0,0,0.5);
}
.navbar.home .logo-container {
	width: 46px;
	height: 46px;
	margin-top: 12px;
	opacity: 0.6;
}

.user-logged-in {
	height: 24px;
	display: inline-block;
	padding-left: 30px;
	background-image: url(/images/user-icon.png);
	background-repeat: no-repeat;
	background-size: contain;
	line-height: 100%;
	padding-top: 5px;
	color: rgba(0,0,0,0.5);
	font-weight: normal;
	cursor: pointer;
}

/* User Spice override **/
.fa.fa-fw.fa-cogs {
	display: none;
}
.nav-item.dropdown {
	margin-left: -18px !important;
}
.dropdown-menu {
	left: auto;
	right: 0;
}
.nav-link.dropdown-toggle {
	padding: 0;
}

@media screen and (max-width: 414px) {
	.navbar > .links {
		padding-right: 20px;
	}
	.navbar > .links > ul > li {
		font-size: 14px;
		margin-left: 15px;
	}
}