@media print
{
	.no-print, .no-print *
	{
		display: none !important;
	}
}

@media screen and (max-width: 500px) {

	:root {
		--var-box-margin-bottom: 5px;
	}

}

.visible-mobile {
	display: none !important;
}
.header-logo-wrapper {
	position: relative;
}
html, body {
	font-family: var(--var-font-family) !important;
	/*background: var(--background-color);*/
}

body {
	background: var(--background-color) !important;
}

.header-logo {
	cursor: pointer; width: auto; height: auto; max-height: 75px; max-width: 100%;
}

#navBar #nav ul.mobile-open { display: none; font-size: 14px; padding: 0px; background: #058e85; }
#nav ul.mobile-toggle { display: block; }

@media screen and (max-width: 768px) {

	#navBar #nav ul.mobile-open { display: block; }
	#nav ul.mobile-toggle:not(.mobile-toggle-open) { display: none; }
	#nav ul.mobile-toggle.mobile-toggle-open {
		position: absolute;
		top: 0px;
		left: 0px;
		width: 100%;
		overflow: auto;
		z-index: 100;
		background: var(--var-mobile-menu-background-color);
	}
	#navBar #nav ul.mobile-toggle.mobile-toggle-open li {
		display: block;
		width: 100%;
		text-align: center;
		padding-top: 20px;
		padding-bottom: 20px;
		font-size: 20px;
	}

}