.erase-date {
	/* float: right; */
	color: #c00;
	cursor: pointer;
	opacity: 0.25;
	transition: opacity 0.25s ease-in-out;
}
.erase-date:hover {
	opacity: 1;
}
html {
	font-size: 16px;
}

body {
	margin: 0;
	padding: 0;
	text-align: left;
	--body-width: 100vw;
	color: #000;
	background: #f7f7f7;
}

body, td {
	font: 1rem/1.5em 'Avenir Next', Avenir, Helvetica, Arial, sans-serif;
}
p {
	margin: 0.5rem 0;
}
h1, h2, h3, h4, h5, h6 {
	margin: 1rem 0;
	line-height: 1.25em;
	font-weight: normal;
}
h1 { font-size: 2.5rem; }
h1.bv { color: #fff; background-color: #385391; text-transform: uppercase; text-align: center; }
h2 { font-size: 2rem; }
h3 { font-size: 1.5rem; }
h4 { font-size: 18px; }
h5 { font-size: 14px; }

.tall-lines { line-height: 1.6em; }
.smaller p { font-size: 12px; }
.smaller h3 { font-size: 18px; line-height: 1.4em; }
.smaller h4 { font-size: 14px; line-height: 1.4em; }
.bigger p, p.bigger { font-size: 15px; margin: 0 0 1.1em 0; }
.cursor-pointer { cursor: pointer; }
.clip-circle {
	-webkit-clip-path: circle(50% at 50% 50%);
	clip-path: circle(50% at 50% 50%);
}
.green { color: #0c0; }
.red { color: #c00; }
.orange { color: #fa0; }
.blue { color: #385391; }
.potdemiel { display: none; }

td {
	vertical-align: top;
}

a {
	color: #000;
	text-decoration: none;
	transition: color 0.25s ease-in-out;
}
a:hover {
	color: #385391;
}

.l { text-align: left; }
.c { text-align: center; }
.r { text-align: right; }
.fr { float: right; }
.vertical-center { display: grid; align-self: center; }
.hidden { display: none; }
.no-w { white-space: nowrap; }

.mobile-only { display: none; }
.print-only { display: none; }

.gray-block {
	margin: 1em 0;
	padding: 0.5em 1em;
	background: #f0f0f0;
	border-radius: 4px;
}

.messages-container {
	position: fixed;
	width: 350px;
	max-width: 75vw;
	max-height: 95vh;
	top: 10px;
	left: 10px;
}
.messages-container.debug {
	width: 450px;
	opacity: 0.75;
	transition: opacity 0.5s ease-in-out;
}
.messages-container.debug:hover {
	opacity: 1;
}
.messages-container > .message {
	margin-bottom: 10px;
}
.message {
	position: relative;
	background: hsl(120, 100%, 90%);
	color: hsl(120, 100%, 25%);
	border: solid 1px hsl(120, 100%, 40%);
	border-radius: 3px;
	padding: 5px 10px;
	width: 90%;
	margin: 2px auto;
	text-align: center;
	/* default is green */
}
.message .close-message {
	position: absolute;
	top: -3px;
	right: -4px;
	font-size: 18px;
	color: solid 1px hsl(120, 100%, 40%);
	cursor: pointer;
	opacity: 0.5;
	transition: opacity 0.3s ease-out;
}
.message .close-message:hover {
	opacity: 1;
}
.message pre {
/* 
	overflow-x: auto;
	white-space: pre-wrap;
	word-wrap: break-word;
 */
	text-align: left;
	font-size: 12px;
	line-height: 1.1em;
}
.message code {
	display: block;
	text-align: left;
	font-size: 12px;
	line-height: 1.1em;
}

.message.tip {
	/* yellow */
	color: hsl(60, 100%, 25%);
	border-color: hsl(60, 100%, 40%);
	background-color: hsl(60, 100%, 90%);
}
.message.tip .close-message {
	color: hsl(60, 100%, 40%);
}

.message.warning {
	/* orange */
	color: hsl(30, 100%, 25%);
	border-color: hsl(30, 100%, 50%);
	background-color: hsl(30, 100%, 90%);
}
.message.warning .close-message {
	color: hsl(30, 100%, 50%);
}

.message.error {
	/* red */
	color: hsl(0, 100%, 25%);
	border-color: hsl(0, 100%, 50%);
	background-color: hsl(0, 100%, 90%);
	font-weight: bold;
}
.message.error .close-message {
	color: hsl(0, 100%, 50%);
}

.grid-2cols,
.grid-3cols,
.grid-4cols,
.grid-5cols {
	display: grid;
	grid-gap: 20px;
}
.grid-4cols,
.grid-5cols {
	grid-gap: 10px;
}
.grid-2cols { grid-template-columns: 1fr 1fr; }
.grid-3cols { grid-template-columns: 1fr 1fr 1fr; }
.grid-4cols { grid-template-columns: 1fr 1fr 1fr 1fr; }
.grid-5cols { grid-template-columns: 1fr 1fr 1fr 1fr 1fr; }

/* 
.grid-2cols img,
.grid-3cols img,
.grid-4cols img {
	max-width: 100%;
	height: auto;
}
 */

.wrapper {
	position: relative;
}
.content {
	box-sizing: border-box;
	position: relative;
	width: 1150px;
	max-width: 98vw;
	margin: 0 auto;
	padding: 32px 10px;
}
.content.no-padding {
	padding: 0;
}
.margin-top, .content.margin-top {
	margin-top: 30px;
}
.content.narrow {
	width: 730px;
	padding: 0;
}
.content.wide {
	width: 1325px;
	padding: 0;
}
.content iframe {
	max-width: 100%;
}
.overlap-top {
	margin-top: -48px;
}
.inner-content { width: 67%; margin: 0 auto; }

.bg-white {
	background-color: #fff;
}
.bg-silver {
	background-color: #f5f5f5;
}
.flex-container {
	box-sizing: border-box;
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}

.flex-container > .flex-item {
	box-sizing: border-box;
	flex: auto;
}
.v-centered {
	align-self: center;
}

.image-box-h {
	height: 200px;
	border-radius: 12px;
	overflow: hidden;
	margin-bottom: 25px;
}
.image-box-h > img {
	max-width: 100%;
	min-height: 100%;
	object-fit: cover;
}

.small-image-boxes > .flex-item {
	box-sizing: border-box;
	margin: 16px 1%;
}
.small-image-boxes .square {
	width: 100%;
	height: 175px;
	display: flex;
	border-radius: 8px;
	overflow: hidden;
	align-items: center;
	justify-content: center;
}
.small-image-boxes img {
	width: auto;
	height: 110%;
}
.small-image-boxes img.use-width {
	width: 100%;
	height: auto;
}
textarea, select, button, input[type=text] {
	box-sizing: border-box;
}

.to-top,
.to-bottom {
	display: block;
	position: fixed;
	right: 10px;
	bottom: 50px;
	width: 36px;
	height: 36px;
	color: #fff;
	font-size: 1.635rem;
	text-align: center;
	background: #787878;
	border-radius: 4px;
	opacity: 0.5;
	transition: all .2s ease-out;
}
.to-bottom {
	bottom: 10px;
}
.to-top:hover,
.to-bottom:hover {
	background: #404040;
	opacity: 1;
}
.to-top p,
.to-bottom p { margin: 5px 0 0 0; }
.to-top a,
.to-bottom a {
	color: #ffffff;
	display: inline-block;
	width: 100%;
}
.to-top a:hover,
.to-bottom a:hover {
	color: #385391;
}
.button, button {
	display: inline-block;
	margin: 0 0.33em;
	padding: 0.25em 0.75em;
	font-size: 0.9rem;
	line-height: 1.2em;
	background-color: #fff;
	border: solid 1px #ccc;
	border-radius: 4px;
	box-shadow: 1px 1px 5px rgba(0,0,0,0.125);
}
.button:hover {
	background-color: #eee;
}
.button.selected {
	background-color: rgba(214,226,255);
	border-color: #385391;
	box-shadow: 1px 1px 5px rgba(56,83,145,0.9);
}

.button.tiny {
	padding: 0px 0.5em;
}

.btn-fullwidth {
	display: block;
	padding: 1em;
	margin: 1em 0;
	text-align: center;
}
.btn-fullwhite {
	background: #fff;
	color: #000;
	font-size: 0.875rem;
	font-weight: bold;
	text-transform: uppercase;
}

.tip {
	z-index: 2000;
	padding: 2px 5px;
	background-color: hsla(60, 10%, 96%, 0.90);
	border-radius: 3px;
	border: solid 1px hsla(60, 10%, 10%, 0.90);
}

.tip-text {
	font-size: 0.9rem;
}

.tip-title {
	font-size: 0.9rem;
}

.menu-spacer {
	width: 100%;
	height: 5em;
}

/* #MARK Menu Toggler */
.menu-toggler {
	position: absolute;
	top: 5px;
	right: 5px;
	color: #38539199;
	background-color: rgba(0,0,0,0.166);
	font-size: 18px;
	border: solid 3px #38539199;
	border-radius: 50%;
	padding: 4px;
}

.main-menu-wrapper {
	position: relative;
	width: 100vw;
}

ul.main-menu {
	margin: 0;
	padding: 0;
	background: none;
	list-style: none;
	text-align: center;
}

ul.main-menu:after {
	content: "";
	clear: both;
	display: block;
}

ul.main-menu li {
	position: relative;
	margin: 0;
	padding: 0;
	display: inline-block;
	font-size: 1.1875rem;
	line-height: 2em;
	vertical-align: top;
}

ul.main-menu li.menu-newline {
	display: block;
}

ul.main-menu li.menu-item {
	margin-top: 12px;
}

ul.main-menu li a {
	position: relative;
	margin: 0 0.75em;
	padding: 0;
	display: inline-block;
	height: 100%;
	background: none;
	color: #846f3e;
	/* font-weight: bold; */
	transition: all 0.33s ease-out;
}
ul.main-menu li a.selected {
	color: #846f3e;
	border-bottom: solid 3px #846f3e;
}
ul.main-menu li i {
	color: #846f3e;
}
ul.main-menu li.logo-menu-wrapper a.selected {
	border-bottom: none;
}
.menu-item.off {
	background-color: #ccc;
}

/* #MARK Sub-Menu */

ul.main-menu li ul {
	position: absolute;
	padding: 0 5px;
	left: 0;
	top: 100%;
	min-width: 6em;
	max-height: 0;
	text-align: left;
	overflow: hidden;
	transition: all 0.33s ease-out;
}

ul.main-menu li:hover ul,
ul.main-menu.open li ul {
	max-height: 400px;
	background: rgba(0,0,0,0.25);
	box-shadow: 1px 1px 5px rgba(0,0,0,0.25);
}
ul.main-menu li li {
	width: 100%;
	height: auto;
}
ul.main-menu li li a {
	width: 96%;
	margin: 0;
	padding: 0 2%;
}
ul.main-menu li li.menu-item {
	margin-top: 0;
}

/* #MARK Inline Menu */

ul.inline-menu {
	display: inline-block;
	margin: 0 1em;
	padding: 0;
	background: none;
	list-style: none;
	text-align: center;
}
ul.inline-menu li {
	z-index: 1000;
	position: relative;
	margin: 0;
	padding: 0;
	display: inline-block;
	font-size: inherit;
	line-height: 1.5em;
	vertical-align: top;
}
ul.inline-menu li ul {
	position: absolute;
	padding: 10px 5px 5px 5px;
	left: -1em;
	top: 100%;
	min-width: 16em;
	max-height: 0;
	text-align: left;
	overflow: hidden;
	transition: all 0.33s ease-out;
}
ul.inline-menu li:hover ul,
ul.inline-menu.open li ul {
	max-height: 400px;
	background: rgba(51,51,51,0.95);
	box-shadow: 1px 1px 5px rgba(0,0,0,0.25);
	/* outline: solid 1px rgba(0,0,0,0.95); */
}
ul.inline-menu li li {
	width: 100%;
	height: auto;
	margin: 6px 0;
}
ul.inline-menu li li a {
	display: block;
}

/* Footer */

footer {
	color: rgba(0,0,0,0.5);
	font-size: 0.9rem;
}

.bottom-line {
	border-bottom: 1px solid rgba(136, 136, 136, 0.25);
}

.box-shadow-light {
	box-shadow: rgba(0, 0, 0, 0.06) 0px 15px 75px 0px;
}
.box-shadow {
	box-shadow: 0 14px 28px rgba(0,0,0,0.25),0 10px 10px rgba(0,0,0,0.22);
	transition: all 0.33s ease-out;
}
.box-shadow:hover {
	box-shadow: 0 40px 120px -20px rgba(0,0,0,0.6);
}

/* #MARK Login Form */

.login-form {
	max-width: 100%;
}
.simple-modal {
	max-height: 92vh;
}
.simple-modal .login-form {
	font-size: 1rem;
}
.simple-modal .simple-modal-header h1 {
	background: #fff;
}
.login-form div {
}
.login-form fieldset {
	border: solid 1px #eee;
}
.login-form legend {
	color: #403023;
	font-weight: bold;
}
.login-form label {
	display: block;
	margin: 10px 0;
	min-width: 18em;
	text-align: left;
}
.login-form label.c {
	text-align: center;
}
.login-form input[type=text], .login-form input[type=password] {
	font-size: 1rem;
	width: 100%;
}
.login-form button {
	padding: 7px 16px;
	color: #fff;
	background: #8dc63f;
	border: solid 1px #8dc63f;
	border-radius: 4px;
}

/* #MARK Admin / Edit */

button.admin,
.button.admin {
	background: #333;
	border: solid 2px #999;
	color: #ccc;
	padding: 6px 12px;
	border-radius: 6px;
}

.top-admin-menu {
	display: grid;
	grid-template-columns: 1fr 3fr 1fr;
	padding: 0.5em 1em;
	background: #333;
	border-bottom: solid 1px #000;
	text-align: right;
	color: #aaa;
	z-index: 1001;
	width: 100%;
	box-sizing: border-box;
}
.top-admin-menu a {
	color: #fff;
	background: rgba(255,255,255,0.125);
	border-radius: 4px;
	margin: 0 0.25em;
	padding: 0 0.33em;
	white-space: nowrap;
}
.top-admin-menu a:hover {
	background: rgba(255,255,255,0.25);
}
.top-admin-menu a.on {
	color: #ff9;
}
.debug {
	color: #99f;
	font-family: monospace;
	font-size: 12px;
	line-height: 1.2em;
}
.disabled {
	color: #aaa;
}
.page_edit_tools {
	margin: 8px 16px;
	padding: 8px 16px;
	border: dashed 3px #ccc;
	border-radius: 16px;
	background-color: #eee;
}

.visible-off {
	opacity: 0.25;
}
.visible-off:hover {
	opacity: 1;
}
.edit-tools-block {
	position: absolute;
	z-index: 1000;
	background: rgba(48,48,48,0.9);
	padding: 4px 15px 2px 15px;
	right: 15px;
	border: solid 1px rgba(192,0,0,0.95);
	border-radius: 0px 0px 6px 6px;
	opacity: 0.50;
	transition: opacity .2s ease-out;
}

.edit-tools-block:hover {
	opacity: 1;
}
.edit-tools-block a {
	color: #aaa;
	border-radius: 4px;
}
.edit-tools-block a.delete_obj {
	color: #faa;
}
.edit-tools-block a:hover {
	background: rgba(255,255,255,0.25);
}

.edit-tools-block:hover + div,
.edit-tools-block:hover + article,
.edit-tools-block:hover + section,
.edit-tools-block:hover + nav
{
	outline: dashed 4px rgba(255,0,0,0.5);
}
.edit-tools-block:hover + article::after {
	content: '';
	position: absolute;
	left: 0; top: 0;
	width: 100%;
	height: 100%;
	background: rgba(255,0,0,0.125);
}


.edit-popup li {
	position: relative;
	margin: 10px;
	padding: 2px 5px;
	background: #eee;
	border-radius: 10px;
}
.edit-popup .more-data {
	position: absolute;
	right: 1em;
	width: 12px;
	height: 14px;
	overflow: hidden;
	top: 4px;
	background-color: #ddd;
}
.edit-popup .more-data:hover {
	width:auto; height:auto;
}

.editswitch.icon-toggle-on {
	color: #0a0;
}
.editswitch.icon-toggle-off {
	color: #a00;
}

.admin_add_block {
	margin: 15px 0;
	padding: 1em 1em;
	background: #fee;
	border: solid 1px #fcc;
	border-radius: 8px; 
}

.admin_add_block legend {
	font-size: 150%;
}

/* #MARK Tabs */
.tabs-group {
	position: relative;
	display:flex;
	flex-direction: column;
	align-items: left;
}
.tabs {
	border-bottom: solid 1px #ccc;
}
.tab {
	position: relative;
	top: 1px;
	cursor: pointer;
	padding: 10px 20px;
	margin: 0px 0px;
	display: inline-block;
	color: #385391;
	border: solid 1px transparent;
	border-radius: 4px 4px 0px 0px;
}
.tab.selected,
.tab.selected:hover {
	border-color: #ccc;
	border-bottom-color: #fff;
	color: #000;
}
.tab:hover {
	border-color: #eee;
	border-bottom-color: transparent;
	color: #999;
}

.panels {
	min-height: 200px;
	width: 100%;
	border-radius: 3px;
	overflow: hidden;
}
.panel {
	display: none;
	animation: fadein .8s;
	margin: 0;
	padding-top: 15px;
}
.panel.selected {
	display: block;
}

/* #MARK Side Drawer */
.side-drawer-container {
	position: fixed;
	top: 20vh;
	right: -326px;
	width: 326px;
	/* height: 640px; */
	transition: right 0.5s ease-in-out;
}
.side-drawer-container.visible {
	right: 0px;
}
.side-drawer-toggler {
	position: absolute;
	left: -40px;
	width: 40px;
}
.side-drawer-toggler > div {
	cursor: pointer;
	background: #133783;
	padding: 15px 10px 15px 10px;
	border-radius: 10px 0 0 10px;
	box-shadow: -3px -1px 3px rgba(0, 0, 0, 0.25), 0 1px 2px rgba(255,255,255,0.2) inset;
}
.side-drawer-panel {
	background:#eee;
	padding: 10px;
	border: 3px solid #133783;
}
.side-drawer-container.visible .side-drawer-panel {
	box-shadow: -3px -1px 3px rgba(0, 0, 0, 0.25);
}

.search-form {
	max-width: 890px;
	margin: -30px auto 10px auto;
	padding: 1px 2px;
	background: #ccc;
	border: solid 1px #999;
	border-radius: 6px;
}
.search-form input.date {
	width: 7em;
}
.search-form button {
	color: #000;
}

.search_button {
	color: #ccc;
	float: right;
	margin-right: -0.8em;
}

/* #MARK .form-top */

.form-top {
	text-align: center;
}
/* 
.form-top > div {
	display: inline-block;
	position: relative;
}
 */
.form-top fieldset {
	border: none;
	margin: 0;
	padding: 0;
}
.form-top label {
	display: block;
	margin: 1em 0;
	padding: 4px 8px;
	text-align: left;
	background: #f0f0f0;
	border-radius: 4px;
	font-size: 14px;
	font-weight: bold;
	color: #666;
}
.form-top label.c {
	text-align: center;
}
.form-top.compact label,
.form-left.compact label {
	margin: 1px 0;
	padding: 1px 8px 2px 8px;
	font-size: 12px;
}
.form-top input[type=text], .form-top input[type=password], .form-top select {
	padding: 3px 6px;
	font-size: 14px;
}

/* 
.form-top label.required::after {
	content: ' *';
}
 */

.form-top.with-borders label {
	border: solid 1px #ccc;
	/* box-shadow: inset 0 1px 1px rgba(0,0,0,.125); */
}
.form-top input[type=text],
.form-top input[type=password],
.form-top select {
	width: 100%;
	margin: 0;
	padding: 6px 10px;
	background: #fff;
	border: none;
/* 
	box-shadow: inset 0 1px 1px rgba(0,0,0,.075);
 */
	outline: none;
	font-size: 14px;
}

.form-top input[type=checkbox] {
	width: auto;
	margin: 0 8px;
}

.form-top textarea {
	position: relative;
	width: 100%;
	margin: 0;
	padding: 6px 1% 6px 1%;
	background: #fff;
	text-align: left;
	border: none;
	outline: none;
}

.form-top select {
	/* width: 95.5%; */
}
.form-top label em {
	display: inline-block;
	min-width: 7em;
	margin-right: 0.5em;
	text-align: right;
	font-style: normal;
}
.form-top label.focus {
	background-color: hsl(350, 100%, 95%);
	border-color: hsl(350, 100%, 39%);
	box-shadow: 0px 0px 5px hsl(350, 0%, 75%);
}

.form-top input.validation-failed {
	background-color: hsl(0, 100%, 98%);
}

.form-top .validation-advice {
	position: relative;
	top: 0;
	color: #900;
}

.form-top input.datepicker + .icon-calendar {
	position: absolute;
	margin-left: -26px;
	margin-top: 3px;
}
.form-top button,
.form-top .button,
.form-top input[type=submit] {
	padding: 5px 15px;
	margin: 2px 2px;
	font-weight: bold;
	color: #fff;
	background: #090;
	border: none;
	border-radius: 3px;
	box-shadow: inset 0 1px 1px rgba(0,0,0,.075);
	transition: background 0.25s ease-in-out;
}
.form-top button:hover,
.form-top :hover.button,
.form-top input[type=submit]:hover {
	background: #0a0;
}
.form-top button.small,
.form-top .button.small,
.form-top input[type=submit].small {
	padding: 1px 5px;
	border-radius: 3px;
	font-size: 11px;
}
.form-top button.tiny,
.form-top .button.tiny,
.form-top input[type=submit].tiny {
	padding: 1px 5px;
	line-height: 1.5em;
}


/* #MARK Contact Form */
.form-left {
	text-align: left;
}
.form-left fieldset {
	border: none;
}
.form-left legend {
	font-size: 1.3rem;
	line-height: 1.5em;
}
.form-left label {
	display: inline-block;
	margin: 1em ;
	padding: 0;
	width: calc(100% - 9em);
}

.form-left label em {
	display: inline-block;
	width: 6em;
	margin-right: 1em;
	text-align: right;
	vertical-align: top;
	font-size: 1rem;
	font-style: normal;
	color: #333;
}
.form-left label.required em::after {
	content: ' *';
}
.form-left.with-borders label {
	border: solid 1px #ccc;
}

.form-left input,
.form-left select,
.form-left textarea {
	width: 100%;
	max-width: calc(100% - 11em);
	margin: 0;
	padding: 6px;
	background: #fff;
	outline: none;
	font-size: 1rem;
	background-color: #fff;
	border: 1px solid rgba(0, 0, 0, 0.2);
	border-radius: 4px;
	box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
	box-sizing: border-box !important;
	box-sizing: border-box !important;
}
.form-left input:hover,
.form-left textarea:hover {
	border-color: #38539166;
}
.form-left input:focus,
.form-left textarea:focus {
	border-color: #385391;
}

.form-left select {
	padding: 5px 12px 6px 12px;
}

.form-left input[type=checkbox] {
	min-width: auto;
	width: auto;
}

.form-left input.zipcode {
	width: 6em;
}

.form-left .button {
	display: inline-block;
	padding: 1px 10px;
	font-size: 1rem;
	color: #fff;
	background: #385391;
	border: 1px solid rgba(0, 0, 0, 0.1);
	border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);
	border-radius: 4px;
	box-shadow: 1px 1px 1px rgba(0, 0, 0, 0.1);
	text-shadow: none;
	cursor: pointer;
}
.form-left .button:hover {
	background-color: #f09700;
}
.search_presets {
	margin: -0.125em 0 0 0;
}
.search_presets a.button {
	background-color: #ddd;
}

.erase-date {
	color: #c00;
	cursor: pointer;
	opacity: 0.25;
	transition: opacity 0.25s ease-in-out;
}
.erase-date:hover {
	opacity: 1;
}

.registration-form {
	padding: 2px 6px;
	background: #f0f0f0;
	border: solid 3px #385391;
	border-radius: 6px;
}
.registration_form th {
	text-align: right;
}
.call-buttons {
	margin: 0 0 0 0.5em;
}
.call-buttons a {
	margin: 0 0.25em;
	font-size: 120%;
}
.ttip-info {
	margin: 0 0.5em;
	background: #ccc;
	color: #999;
	border: solid 1px #aaa;
	border-radius: 50%;
}

@media only screen 
and (max-width : 1145px) {
	#activities_div.grid-3cols {
		grid-template-columns: 1fr 1fr;
	}
}

@media only screen 
and (max-width : 600px) {
	/* .mobile-only { visibility: visible; } */
	br.mobile-only { display: block; }
	.content {
		padding: 30px 20px 20px 20px;
	}
	h1, h2, h3, h4, h5, h6 {
		margin: 0.25rem 0;
		line-height: 1.25em;
	}
	h1 { font-size: 1.5rem; }
	h2 { font-size: 1.33rem; }
	h3 { font-size: 1.25rem; }
	h4 { font-size: 14px; }
	h5 { font-size: 12px; }
	img.bv_logo {
		width: 66px;
		height: 66px;
	}
	.top-admin-menu .part-1 > a {
		display: none;
	}
	#placeholder {
		display: none;
	}
	.search-form {
		margin-top: 2px;
	}
/* 
	ul.main-menu {
		overflow: hidden;
	}
	ul.main-menu li.menu-item {
		margin: 5px auto;
		display: block;
		text-align: right;
		left: 100%;
		transition: all ease-in-out .25s
	}
	ul.main-menu:hover {
		background-color: rgba(0,0,0,0.5);
	}
	ul.main-menu:hover li.menu-item {
		left: 0%;
	}
	ul.main-menu li.logo-menu-wrapper {
		position: absolute;
		top: 0;
		width: 40%;
		left: 28%;
	}
	ul.main-menu li.logo-menu-wrapper img {
		width: 100px;
	}
 */
	/* #MARK Sub-Menu */
/* 
	ul.main-menu li ul,
	ul.main-menu li:hover ul {
		position: relative;
		left: 0;
		top: unset;
		max-height: none;
		background: none;
	}

	ul.main-menu li li {
		width: unset;
		height: auto;
		padding-right: 1em;
	}
	ul.main-menu li li a {
		width: auto;
	}
 */
	.header-slideshow {
		height: 350px;
	}
	.header-slideshow-small {
		height: 250px;
	}
	.header-slideshow .text-overlay h1 {
		font-size: 28px;
		letter-spacing: 5px;
	}
	.header-slideshow .text-overlay h2 {
		font-size: 14px;
	}
	.header-slideshow .text-overlay img {
		max-width: 40vw;
	}
	.header-slideshow .text-overlay td img {
		max-width: 95%;
	}
	.image_gallery {
		grid-template-columns: 1fr;
	}
	.image_gallery > div {
		max-width: 100%;
	}
	.grid-2cols { grid-template-columns: 1fr; }
	.grid-3cols { grid-template-columns: 1fr; }
	.grid-4cols { grid-template-columns: 1fr 1fr; }
	
	footer .grid-4cols { grid-template-columns: 1fr; }
}
@media print{
	body {
		background: none;
	}
	.no-print {
		display: none;
	}
	.content {
		/* width: 1150px; */
		max-width: 95vw;
	}
	.moodatepicker-container {
		display: none;
	}
	input, textarea, select {
		appearance: none;
	}
	.print-only {
		display: block;
	}
	input, textarea, select, option {
		border: 0 !important;
		border-style: none !important;
	}

	/* Print URLs after links */
	/* a:after{content:" (" attr(href) ") ";font-size:0.8em;font-weight:normal;} */
}
