:root {
	--menubar-height: 70px;
	--menubar-height-inverse: -70px;
	--menubar-bg: #2b2b2b;
	--menubar-color: #fff;
	--menubar-lightbg: #eee;
	--menubar-hover: #ccc;
}

.skip-container {
	position: absolute;
	top: 0;
	height: 0;
	width: 100%;
	z-index: 99999;
	/* top: var(--menubar-height-inverse); */
	display: flex;
}
a.skip-to-content {
	background: var(--menubar-lightbg);
	color: var(--menubar-bg);
	opacity: 0;
	font-weight: 700;
	padding: 4px 20px 6px;
	transform: translateY(-100%);
	text-decoration: underline;
	border-radius: 0px 0px 10px 10px;
	display: inline-table;
	margin: auto;
}
a.skip-to-content:focus {
	transform: translateY(0%);
	outline: none;
	opacity: 1;
}
a.skip-to-content:active {
	background: var(--menubar-hover);
	opacity: 1;
}

.mobile-header.visible #mobile-menu {
	display: block !important;
}
.cover {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: -1;
	transition: 0.3s;
	background: rgba(100,100,100,0.5);
	opacity: 0;
	display: block;
}
.cover.reveal {
	opacity: 1;
	z-index: 999;
}

.mobile-menu-bar {
	background: var(--menubar-bg);
	display: block;
	width: 100%;
	top: 0px;
	z-index: 999;
	position: fixed;
}
.mobile-menu-bar .moduletable {
	height: var(--menubar-height);
}
.mobile-menu-bar-toggle {
	display: flex;
	height: 100%;
}
.mobile-menu-bar-toggle .menu-toggle .mobile-menu-btn {
	height: 100%;
	width: 100%;
	align-items: center;
	margin: 0;
	padding: 20px;
	font-weight: 600;
	font-size: 20px;
	background: no-repeat;
	border: none;
	display: flex;
	float: left;
}
.hamburger {
	font-size: 30px;
	display: inline-block;
	width: 1em;
	/* height: 1em; */
	padding: 0;
	cursor: pointer;
	transition: transform .2s ease-in-out;
	vertical-align: middle;
	border: 0 none;
	background: transparent;
	margin-top: 1px;
}
.hamburger::-moz-focus-inner {
	// Button height fix for Firefox
	padding: 0;
	border: 0 none;
}
.hamburger:focus {
	// Focus fix for Chrome
	outline: 0;
}
.hamburger:before, .hamburger:after {
	content: "";
}
.hamburger:before, .hamburger .icon, .hamburger:after {
	display: block;
	width: 100%;
	height: 3px;
	margin: 0 0 6px;
	transition: transform 0.2s ease-in-out;
	border-radius: 1.5px;
	background: var(--menubar-color);
}
.hamburger:after {
	margin: 0;
}
.hamburger.active:before, .hamburger.active .icon, .hamburger.active:after {
	// Styles for the active .hamburger icon
	background: var(--menubar-color);
}
.hamburger.hamburger-cancel.active:before {
	transform: translateY(0.3em) rotate(135deg);
}
.hamburger.hamburger-cancel.active .icon {
	transform: scale(0);
}
.hamburger.hamburger-cancel.active:after {
	transform: translateY(-0.3em) rotate(-135deg);
}

.mobile-menu-bar-toggle .menu-logo {
	width: 100%;
}
.mobile-menu-bar-toggle .logo.mobile {
	height: 100%;
	text-align: center;
	padding-right: var(--menubar-height); /* Set to be same width as toggle button container for even spacing. Can be set to zero if any modules exist in the header-right spot */
}
.mobile-menu-bar-toggle .logo.mobile img {
	height: 100%;
	margin-left: 0;
	padding: 10px;
}

.mobile-menu-right {
	float: right;
	height: 22px;
}
.mobile-menu-right img {
	height: 30px;
	width: auto;
	margin: 0 !important;
}

.off-screen-top {
	height: 100%;
	width: 100%;
	position: fixed;
	height: 0;
	z-index: 9998;
	top: 0;
	background: var(--menubar-color);
	overflow: scroll;
	-webkit-overflow-scrolling: touch;
}
.off-screen-top.from-left, .off-screen-top.from-right {
	width: 0;
	height: 100%;
}
.off-screen-top.from-right {
	right: 0;
}
.off-screen-top .page-anchors {
	display: flex;
	background: var(--menubar-lightbg);
	padding: 10px 0;
	transform: scaleY(0);
	transform-origin: top;
	transition: 0.3s;
}
.off-screen-top .page-anchors:focus-within {
	transform: scaleY(1);
}
.off-screen-top .page-anchors a {
	width: 50%;
	margin: 0 5px 0 10px;
	background: var(--menubar-color);
	color: var(--menubar-bg);
	font-size: 18px;
	font-weight: 600;
}
.off-screen-top .page-anchors a:hover {
	background: var(--menubar-hover);
	color: var(--menubar-bg);
}