#anchornavlocation {
	position: absolute;
	display: block;
	top: 0;
	left: 0;
	width: 100%;
	width: calc((((100% - (11 * 20px)) / 12) * 3) + (2 * 20px));
}

#anchornav {
	position: fixed;
	z-index: 30;
	left: -100%;
	top: -100%;
	width: 200px;
	min-height: 100px;
}

#anchornav ul li {
	font-size: 18px;
	font-weight: 400;
	line-height: 24px;
	max-width: 17.5em;
	margin-right: 1em;
	/* or 133% */
	color: #525252;
}

#anchornav ul li a {
	padding: 0.5em 0.75em;
	display: block;
	color: inherit;
	background: white;
	box-shadow: 2px 2px 4px rgba(0, 0, 0, 0.15);
	transition: all 0.2s ease;
}

#anchornav ul li.current a {
	font-weight: 600;
	color: #020873;
}

#anchornav ul li a:hover {
	background: #020873;
	color: white;
	box-shadow: 3px 3px 4px rgba(0, 0, 0, 0.25);
}

@media all and (max-width: 1199px) {
	#anchornav {
		display: none;
	}
}