/*
Theme Name: Balans
Text Domain: balans
Version: 1.0
Description: Balans wordpress theme
Author: kerned.
Author URI: https://kerned.com/
Theme URI: https://kerned.com/
*/

.gm-style iframe + div { border:none!important; }

#smthngggg {
	-webkit-transform: translateY(-50%);
	   -moz-transform: translateY(-50%);
	    -ms-transform: translateY(-50%);
	     -o-transform: translateY(-50%);
	        transform: translateY(-50%);
}

.checkbox_field {
    padding-left: 1.4em;
    cursor: pointer;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.checkbox_field:before {
    content: '';
    position: absolute;
    width: .65em;
    height: .65em;
    border: 1px solid white;
    left: 0;
    border-radius: .2em;
    margin-top: .25em;
}

.paged {
    padding-top: 1em;
    color: #a4a4a4;
}

.paged a {
    padding: .1em .4em;
    display: inline-block;
    transition: background .25s ease-in-out;
    border-radius: 2px;
}

.paged a:hover {
    background: #EaEaEa;
}

.theme-brand p a {
    color: white;
    text-decoration: underline;
}

.halfblock-section-content .slide p a:hover {
    color: white;
    text-decoration: underline;
}

.paged a.current, .paged a.current:hover {
    background: #e04f39;
    color: white !important;
}



.checkbox_field.active:after {
    content: '\2713';
    position: absolute;
    left: .1em;
    font-family: 'GTBold';
    font-size: .8em;
}

.checkbox_field input {
    display: none;
}


/* Chrome, Safari, Edge, Opera */
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

/* Firefox */
input[type=number] {
  -moz-appearance: textfield;
}

@font-face {
	font-family: "GTRegular";
	font-display: swap;
	src: url(./assets/fonts/GT-Walsheim-Pro-Regular.woff) format("woff");
}

@font-face {
	font-family: "GTOblique";
	font-display: swap;
	src: url(./assets/fonts/GT-Walsheim-Pro-Regular-Oblique.woff) format("woff");
}

@font-face {
	font-family: "GTBold";
	font-display: swap;
	src: url(./assets/fonts/GT-Walsheim-Pro-Bold.woff) format("woff");
}

html {
	font-size: 62.5%;
	/* 1rem = 10px */
	/*scroll-behavior: smooth;*/
}

@media (prefers-reduced-motion: reduce) {
	html {
		/*scroll-behavior: auto;*/
	}
	* {
		-webkit-animation-duration: 0s !important;
		-moz-animation-duration: 0s !important;
		-o-animation-duration: 0s !important;
		animation-duration: 0s !important;
		-webkit-transition-duration: 0s !important;
		-moz-transition-duration: 0s !important;
		-o-transition-duration: 0s !important;
		transition-duration: 0s !important;
	}
}

body {
	background: white;
	color: #1a1a1a;
	font-family: "GTRegular", -apple-system, BlinkMacSystemFont, "Helvetica Neue", Helvetica, sans-serif;
	font-size: 1.65rem;
	line-height: 1.35em;
	text-align: left;
}

.loader {
	position: absolute;
	width: 2em;
	height: 2em;
	margin-top: -1em;
	margin-left: -1em;
	top: 50%;
	left: 50%;
	border: 2px solid white;
	-webkit-border-radius: 100%;
	   -moz-border-radius: 100%;
	        border-radius: 100%;
	border-top-color: transparent;
	-webkit-animation: spin .75s ease-in-out infinite;
	-moz-animation: spin .75s ease-in-out infinite;
	-o-animation: spin .75s ease-in-out infinite;
	animation: spin .75s ease-in-out infinite;
}

@-webkit-keyframes spin {
	0% {
		-webkit-transform: rotate(0deg);
		transform: rotate(0deg);
	}
	100% {
		-webkit-transform: rotate(360deg);
		transform: rotate(360deg);
	}
}

@-moz-keyframes spin {
	0% {
		-moz-transform: rotate(0deg);
		transform: rotate(0deg);
	}
	100% {
		-moz-transform: rotate(360deg);
		transform: rotate(360deg);
	}
}

@-o-keyframes spin {
	0% {
		-o-transform: rotate(0deg);
		transform: rotate(0deg);
	}
	100% {
		-o-transform: rotate(360deg);
		transform: rotate(360deg);
	}
}

@keyframes spin {
	0% {
		-webkit-transform: rotate(0deg);
		-moz-transform: rotate(0deg);
		-o-transform: rotate(0deg);
		transform: rotate(0deg);
	}
	100% {
		-webkit-transform: rotate(360deg);
		-moz-transform: rotate(360deg);
		-o-transform: rotate(360deg);
		transform: rotate(360deg);
	}
}

html.menuopen,
html.leftopen,
html.bodyoverlay,
html.ismobile.hasnotifications {
	overflow: hidden;
}

html.leftopen body, html.menuopen body {
	overflow: visible;
}

.menuopen body {
	height: 100vh;
	margin-left: -85vw;
}

.leftopen body {
	height: 100vh;
	margin-left: 85vw;
}

.animate body {
	-webkit-transition: all .25s ease-in-out;
	-o-transition: all .25s ease-in-out;
	-moz-transition: all .25s ease-in-out;
	transition: all .25s ease-in-out;
}

#page {
	width: 100vw;
    min-width:100vw;
    max-width: 100vw;
}

#members_container {
    position: fixed;
    width: 100%;
    height: 100%;
    z-index: 1000;
    left: 0;
    top: 0;
    overflow: auto;
}

#members_content {
    position: relative;
    width: 100%;
    height: 100%;
    background: red;
    z-index: 1000;
    left: 0;
    top: 0;
}

a {
	color: #e04f39;
	text-decoration: none;
	-webkit-transition: color .25s ease-in-out;
	-o-transition: color .25s ease-in-out;
	-moz-transition: color .25s ease-in-out;
	transition: color .25s ease-in-out;
}

a.black {
	color: #1A1A1A;
}

a:hover {
	color: #1a1a1a;
}

#bookingcontainer {
	z-index: 1;
    background: #f5f5f5 url(https://balans.co.uk/wp-content/themes/balans//assets/images/logo-black.svg) center center no-repeat;
    background-size: 50%;
    background-blend-mode: difference;
}

#bookingcontainer.nobg {
	background: none;
}

#leftsidebar a {
	color: white;
}

.contentloading {
	height: 100%;
	width: 100%;
}

.contentloader {
	position: absolute;
	width: 2em;
	height: 2em;
	margin-top: -1em;
	margin-left: -1em;
	top: 50%;
	left: 50%;
	border: 2px solid white;
	-webkit-border-radius: 100%;
	   -moz-border-radius: 100%;
	        border-radius: 100%;
	border-top-color: transparent;
	-webkit-animation: spin .75s ease-in-out infinite;
	-moz-animation: spin .75s ease-in-out infinite;
	-o-animation: spin .75s ease-in-out infinite;
	animation: spin .75s ease-in-out infinite;
}

#blackoverlay {
	position: fixed;
	width: 100vw;
	height: 0;
	background: #1a1a1a;
	opacity: 0;
	z-index: 1000;
	-webkit-transition: opacity .25s ease-in-out, height 0s ease .25s;
	-o-transition: opacity .25s ease-in-out, height 0s ease .25s;
	-moz-transition: opacity .25s ease-in-out, height 0s ease .25s;
	transition: opacity .25s ease-in-out, height 0s ease .25s;
}

.menuopen #blackoverlay,
.leftopen #blackoverlay,
.bodyoverlay #blackoverlay,
.ismobile.hasnotifications #blackoverlay {
	-webkit-transition: opacity .25s ease-in-out, height 0s ease-in 0s;
	-o-transition: opacity .25s ease-in-out, height 0s ease-in 0s;
	-moz-transition: opacity .25s ease-in-out, height 0s ease-in 0s;
	transition: opacity .25s ease-in-out, height 0s ease-in 0s;
	height: 100vh;
	opacity: .75;
	cursor: pointer;
}

.bodyoverlay #blackoverlay {
    cursor: default;
}

.ismobile.hasnotifications #blackoverlay {
	cursor: auto;
}

.headersocialmedia {
	position: absolute;
	right: 8.5rem;
	margin-top: 1.2rem;
	font-size: 1em;
	display: none;
}

.sidemenusocialtitle {
	font-size: .85em;
	color: #e04f39;
	margin-bottom: .5em;
}

.socialfa {
	margin-left: 15px;
	-webkit-transition: opacity .25s ease-in-out;
	-o-transition: opacity .25s ease-in-out;
	-moz-transition: opacity .25s ease-in-out;
	transition: opacity .25s ease-in-out;
}

header .socialfa {
	color: white;
	/*opacity: .85;*/
}

.socialfa:hover {
	opacity: 1;
	color: white;
}

.sidemenusocialmedia .socialfa {
	color: #1a1a1a;
	-webkit-transition: color .25s ease-in-out;
	-o-transition: color .25s ease-in-out;
	-moz-transition: color .25s ease-in-out;
	transition: color .25s ease-in-out;
	font-size: .9em;
}

.sidemenusocialmedia .socialfa:hover {
	color: #e04f39;
}

.sidemenusocialmedia .socialfa:nth-of-type(1) {
	margin-left: 0;
}

.texticon {
	height: .6em;
	margin-right: 0.4em;
	margin-bottom: .07em;
}

header {
	position: relative;
	overflow: hidden;
	color: white;
	background: #1a1a1a;
}

header:not(.noanimate) {
	-webkit-transition: height .25s ease-in-out;
	-o-transition: height .25s ease-in-out;
	-moz-transition: height .25s ease-in-out;
	transition: height .25s ease-in-out;
}

header a {
	color: white;
}

header.full {
	height: 100vh;
}

header.short {
	height: 66vh;
}

header.third {
	height: 33vh;
}

header.empty {
	height: auto;
    padding-bottom: 50px;
    background: #e04f39;
}

.topshadow,
.bottomshadow {
	position: absolute;
	width: 100%;
	height: 30%;
	background: transparent;
	background: -webkit-gradient(linear, left bottom, left top, from(rgba(0, 0, 0, 0)), to(rgba(0, 0, 0, 1)));
	background: -webkit-linear-gradient(bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 1) 100%);
	background: -moz-linear-gradient(bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 1) 100%);
	background: -o-linear-gradient(bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 1) 100%);
	background: linear-gradient(0deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 1) 100%);
	opacity: .75;
}

.bottomshadow {
	bottom: 0;
	-webkit-transform: rotate(180deg);
	   -moz-transform: rotate(180deg);
	    -ms-transform: rotate(180deg);
	     -o-transform: rotate(180deg);
	        transform: rotate(180deg);
}

.short .topshadow,
.third .topshadow {
	display: none;
}

.short .bottomshadow,
.third .bottomshadow {
	height: 100%;
	background: url('./assets/images/headergradient.png') center center no-repeat;
	-webkit-background-size: cover;
	   -moz-background-size: cover;
	     -o-background-size: cover;
	        background-size: cover;
	opacity: .5;
	-webkit-transform: rotate(0deg);
	   -moz-transform: rotate(0deg);
	    -ms-transform: rotate(0deg);
	     -o-transform: rotate(0deg);
	        transform: rotate(0deg);
}

#headerelements {
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
}

#headerfooter {
	position: absolute;
	bottom: 0;
	left: 50%;
	-webkit-transform: translateX(-50%);
	   -moz-transform: translateX(-50%);
	    -ms-transform: translateX(-50%);
	     -o-transform: translateX(-50%);
	        transform: translateX(-50%);
}

.short #headerfooter,
.third #headerfooter {
	bottom: 7rem;
	text-align: center;
}

.carousel-controls {
	position: absolute;
	left: 50%;
	-webkit-transform: translateX(-50%);
	-moz-transform: translateX(-50%);
	-ms-transform: translateX(-50%);
	-o-transform: translateX(-50%);
	transform: translateX(-50%);
	bottom: 10rem;
	font-size: 1.2rem;
	padding: 0 3rem;
	cursor: default;
	z-index: 500;
}

.short .carousel-controls,
.third .carousel-controls {
	position: absolute;
	left: 0;
	bottom: 1rem;
}

.current-slide-number {
	width: 10px;
	display: inline-block;
	text-align: right;
}

.carousel-controls .prev,
.carousel-controls .next {
	position: absolute;
	width: 20px;
	height: 20px;
	left: 0;
	cursor: pointer;
	top: 0px;
}

.carousel-controls .next {
	top: 1px;
	right: 0;
	left: unset;
	-webkit-transform: rotate(180deg);
	-moz-transform: rotate(180deg);
	-ms-transform: rotate(180deg);
	-o-transform: rotate(180deg);
	transform: rotate(180deg);
}

.carousel-controls .prev:before,
.carousel-controls .next:before {
	content: '';
	width: 40%;
	height: 40%;
	position: absolute;
	border-bottom: 1px solid white;
	border-left: 1px solid white;
	-webkit-transform: rotate(45deg);
	-moz-transform: rotate(45deg);
	-ms-transform: rotate(45deg);
	-o-transform: rotate(45deg);
	transform: rotate(45deg);
	top: 50%;
	left: 40%;
	margin-top: -4.5px;
	-webkit-transition: all .25s ease-in-out;
	-o-transition: all .25s ease-in-out;
	-moz-transition: all .25s ease-in-out;
	transition: all .25s ease-in-out;
}

.carousel-controls {
	left: unset;
	-webkit-transform: none;
	-moz-transform: none;
	-ms-transform: none;
	-o-transform: none;
	transform: none;
	bottom: 7rem;
}

.halfblock .carousel-controls .prev,
.halfblock .carousel-controls .next {
	-webkit-transition: all .25s ease-in-out;
	-o-transition: all .25s ease-in-out;
	-moz-transition: all .25s ease-in-out;
	transition: all .25s ease-in-out;
}

.halfblock-section-content:hover .carousel-controls .prev,
.halfblock-section-content:hover .carousel-controls .next {
	background: white;
	background: rgba(255, 255, 255, .3);
	-webkit-border-radius: 100%;
	   -moz-border-radius: 100%;
	        border-radius: 100%;
}

.halfblock-section-content:hover .carousel-controls .prev:before,
.halfblock-section-content:hover .carousel-controls .next:before {
	width: 30%;
	height: 30%;
	/*border-color: black;*/
}

header .carousel-controls {
	display: none;
}

.imageslide {
	opacity: 0;
	-webkit-transition: opacity .5s ease-in-out;
	-o-transition: opacity .5s ease-in-out;
	-moz-transition: opacity .5s ease-in-out;
	transition: opacity .5s ease-in-out;
}

.imageslide.scale {
	-webkit-animation: 12s scale ease-out forwards;
	   -moz-animation: 12s scale ease-out forwards;
	     -o-animation: 12s scale ease-out forwards;
	        animation: 12s scale ease-out forwards;
	-webkit-transition: opacity .5s ease-in-out;
	-o-transition: opacity .5s ease-in-out;
	-moz-transition: opacity .5s ease-in-out;
	transition: opacity .5s ease-in-out;
}

@-webkit-keyframes scale {
	from {
		-webkit-transform: scale(1);
		-moz-transform: scale(1);
		-ms-transform: scale(1);
		-o-transform: scale(1);
		transform: scale(1);
	}
	to {
		-webkit-transform: scale(1.1);
		-moz-transform: scale(1.1);
		-ms-transform: scale(1.1);
		-o-transform: scale(1.1);
		transform: scale(1.1);
	}
}

@-moz-keyframes scale {
	from {
		-webkit-transform: scale(1);
		-moz-transform: scale(1);
		-ms-transform: scale(1);
		-o-transform: scale(1);
		transform: scale(1);
	}
	to {
		-webkit-transform: scale(1.1);
		-moz-transform: scale(1.1);
		-ms-transform: scale(1.1);
		-o-transform: scale(1.1);
		transform: scale(1.1);
	}
}

@-o-keyframes scale {
	from {
		-webkit-transform: scale(1);
		-moz-transform: scale(1);
		-ms-transform: scale(1);
		-o-transform: scale(1);
		transform: scale(1);
	}
	to {
		-webkit-transform: scale(1.1);
		-moz-transform: scale(1.1);
		-ms-transform: scale(1.1);
		-o-transform: scale(1.1);
		transform: scale(1.1);
	}
}

@keyframes scale {
	from {
		-webkit-transform: scale(1);
		-moz-transform: scale(1);
		-ms-transform: scale(1);
		-o-transform: scale(1);
		transform: scale(1);
	}
	to {
		-webkit-transform: scale(1.1);
		-moz-transform: scale(1.1);
		-ms-transform: scale(1.1);
		-o-transform: scale(1.1);
		transform: scale(1.1);
	}
}

#headerlogo {
	top: 50%;
	-webkit-transform: translate(-50%, -50%);
	-moz-transform: translate(-50%, -50%);
	-ms-transform: translate(-50%, -50%);
	-o-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
	position: absolute;
	left: 50%;
}

header .pagetitle {
	text-transform: uppercase;
	margin-left: 1.5em;
	position: absolute;
	top: 50%;
	-webkit-transform: translateY(-50%);
	   -moz-transform: translateY(-50%);
	    -ms-transform: translateY(-50%);
	     -o-transform: translateY(-50%);
	        transform: translateY(-50%);
	font-size: 2rem;
	display: none;
	letter-spacing: 0.08em;
}

.section {
	padding-top: 12rem;
	padding-bottom: 12rem;
}

.section.whitesection+.section.whitesection {
	padding-top: 0;
}

.section.minispacing {
	padding-top: 6rem;
	padding-bottom: 6rem;
}

.section.nospacing {
	padding-bottom: 0;
	padding-top: 0;
}

.vline {
	height: 18rem;
	position: relative;
}

.vline.top {
	margin-bottom: 5rem;
}

.vline.bottom {
	margin-top: 5rem;
}

.vline span {
	height: 100%;
	border-left: 1px solid #e04f39;
	position: absolute;
	left: 50%;
}

.vline.hiddenline span {
	border-left: 1px solid transparent;
}

.halfblock {
	background: #1a1a1a;
}

.halfblock.theme-brand {
	background: #e04f39;
}

.leftimage+.halfblock {
	margin-top: -10rem;
}

.leftimage+.reviews {
	margin-top: 0;
}

.textslides {
	position: relative;
}

.textslides .slide {
	width: 100%;
}

.halfblock.carousel {
	padding-bottom: 11rem;
}

.halfblock .carousel-controls {
	display: inline;
	-webkit-transform: translateX(-50%);
	   -moz-transform: translateX(-50%);
	    -ms-transform: translateX(-50%);
	     -o-transform: translateX(-50%);
	        transform: translateX(-50%);
}

.halfblock.carousel .slide {
	display: none;
	opacity: 0;
	-webkit-transition: opacity .25s ease-in-out;
	-o-transition: opacity .25s ease-in-out;
	-moz-transition: opacity .25s ease-in-out;
	transition: opacity .25s ease-in-out;
	margin-top: 0rem;
	margin-bottom: 6rem;
	position: absolute;
	top: 0;
}

.halfblock.carousel .slide:first-of-type {
	display: block;
	opacity: 1;
}

.halfblock.carousel.moving .slide {
	opacity: 0;
}

.halfblock-section-overflow,
.halfblock-section-overflow span {
	content: '';
	background: #1a1a1a;
	position: absolute;
	height: 50px;
	display: none;
}

.halfblock-section-overflow span {
	width: 74px;
	margin-top: -200px;
	height: 200px;
}

.halfblock-section-overflow span:nth-of-type(1) {
	right: 0;
}

.halfblock-section-overflow {
	width: 100%;
	margin-top: -26px;
}

.leftimage+.halfblock .halfblock-section-overflow,
.leftimage+.halfblock .halfblock-section-overflow span {
	display: block;
}

.halfblock-section-inner {
	height: 100%;
	float: left;
	color: white;
}

.onright .halfblock-section-content {
	float: right;
}

.halfblock-section-content {
	padding: 10rem 5rem;
	padding: 7rem 5rem 10rem 5rem;
	text-align: center;
	width: 100%;
}

.carousel .halfblock-section-content {
	padding: 4rem 5rem;
}

.mainbanner .halfblock-section-content,
.reviews .halfblock-section-content {
	padding: 7rem 5rem 6rem 5rem;
}

.reviews .halfblock-section-content {
	width: 100%;
	text-align: center;
}

#pageinner .halfblock-section-image .carousel-container,
.sectionimage.carousel {
	background: #f5f5f5;
}

.carousel .halfblock-section-content .carousel-container {
	position: initial;
}

.halfblock-section-content p:last-of-type {
	margin-bottom: 4rem;
}

.mainbanner .halfblock-section-content {
	text-align: center;
}

.halfblock-section-image,
.imageslide {
	-webkit-background-size: cover;
	-moz-background-size: cover;
	-o-background-size: cover;
	background-size: cover;
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	overflow: hidden;
}

.halfblock-section-image {
	display: none;
	background-color: #444;
}

.nomarginb {
	margin-bottom: 0 !important;
}

.smallerfont {
	font-size: .9em;
}

p {
	margin-bottom: 2rem;
}

p:last-of-type {
	margin-bottom: 3rem;
}

p:last-child {
	margin-bottom: 0;
}

p.sidebarsubtitle {
	font-family: "GTbold";
	margin-bottom: 1.5em;
	font-size: 19px; /* was 14px */
	line-height: 1.4em;
}


p.sidebarsubtitle.lessspace {
	margin-bottom: .5em;
}

.bookingcover {
	position: absolute;
	background: rgba(224, 79, 57, .6);
	width: 100%;
	height: 100%;
	z-index: 1;
}

.sidemenucontainer td {
	position: relative;
}

.nobreak {
	display: inline-block;
}

b,
em,
strong {
	font-weight: bold;
}

small {
	font-size: .8em;
}

.infowindowcontent .openhoursmessage {
	font-size: 0.9em;
}

.whitesection {
	background: white;
}

.graysection {
	background: #f5f5f5;
}

h2,
.h2style {
	font-family: "GTBold", sans-serif;
	font-size: 2.2rem;
	margin-bottom: 2rem;
	line-height: 1.2em;
}

.h2style {
	font-size: 2rem;
	margin-bottom: 0;
}

h2.mini {
	font-size: 2rem;
	margin-bottom: 1rem;
}

h2.mini.altered {
	margin-bottom: 1.22rem;
}

h2.micro {
	font-size: 1.6rem;
	margin-bottom: 0.5rem;
}

h1 {
	font-family: "GTMedium", sans-serif;
	text-transform: uppercase;
	font-size: 2.4rem;
	padding-bottom: 2rem;
	margin-bottom: 3rem;
	line-height: 1.4em;
	color: #e04f39;
	position: relative;
}

h1:after {
	content: '';
	position: absolute;
	display: block;
	background: #e04f39;
	width: 100px;
	height: 1px;
	bottom: 0;
}

h1.noline:after {
	display: none;
}

.blogpost h1 {
	color: #1a1a1a;
	text-transform: none;
	font-family: GTbold, arial;
}

h3 {
	font-family: "GTMedium", sans-serif;
	text-transform: uppercase;
	font-size: 1.9rem;
	margin-bottom: 2rem;
	line-height: 1.4em;
}

.mainbanner h3 {
	padding-bottom: 1em;
	margin-bottom: 1em;
	position: relative;
}

.mainbanner h3:after {
	content: '';
	position: absolute;
	width: 8rem;
	height: 1px;
	background: #e04f39;
	bottom: 0;
	left: 50%;
	margin-left: -4rem;
}

.mainbanner.theme-brand h3:after {
	background: #1a1a1a;
}

h3.orange {
	color: #e04f39;
}

h3 p {
	display: initial;
}

#page table,
tr {
	width: 100%;
}

#page table {
	margin-bottom: 3em;
}

#page table:last-of-type {
	margin-bottom: 0;
}

#page table td {
	padding: 15px 0px 15px 15px;
	font-size: .9em;
}

#page table thead {
	font-family: GTBold, sans-serif;
}

#page table td:last-child {
	padding-right: 15px;
}

#page table tr {
	border-bottom: 1px solid #dcdcdc;
}

#page table tbody tr {
	cursor: default;
	-webkit-transition: background .25s ease-in-out;
	-o-transition: background .25s ease-in-out;
	-moz-transition: background .25s ease-in-out;
	transition: background .25s ease-in-out;
}

#page table tbody tr:hover {
	background: #F7F7F7;
	background: rgba(224, 79, 57, .05)
}

#page table .clone {
	position: fixed;
	top: 0;
	display: none;
	background: white;
}

#page table.scrolledon .clone {
	display: block;
}

.mapsearch {
	position: relative;
	display: block;
	min-width: -webkit-fit-content;
	min-width: -moz-fit-content;
	min-width: fit-content;
	width: 100%;
	margin: auto;
	padding-top: 5rem;
	top: 4rem;
}

.noupper {
	text-transform: initial;
}

.imageandtext.imageonright {
	float: left;
}

.sectionimage img {
	width: 100%;
	margin-top: 12rem;
}

.sectionimage.carousel {
	position: relative;
	margin-top: 12rem;
}

.sectionimage .carousel-controls {
	-webkit-transform: translateX(-50%);
	   -moz-transform: translateX(-50%);
	    -ms-transform: translateX(-50%);
	     -o-transform: translateX(-50%);
	        transform: translateX(-50%);
	bottom: -4em;
	opacity: .45;
	-webkit-transition: opacity .25s ease-in-out;
	-o-transition: opacity .25s ease-in-out;
	-moz-transition: opacity .25s ease-in-out;
	transition: opacity .25s ease-in-out;
	display: inline-block;
}

.sectionimage .carousel-controls:hover {
	opacity: 1;
}

.sectionimage .carousel-controls .prev:before,
.sectionimage .carousel-controls .next:before {
	border-bottom: 1px solid black;
	border-left: 1px solid black;
}

#scrollicon {
	position: absolute;
	bottom: 8rem;
	left: 50%;
	width: 2rem;
	height: 3rem;
	border: .3rem solid white;
	-webkit-border-radius: 1rem;
	-moz-border-radius: 1rem;
	border-radius: 1rem;
	-webkit-transform: translateX(-50%);
	-moz-transform: translateX(-50%);
	-ms-transform: translateX(-50%);
	-o-transform: translateX(-50%);
	transform: translateX(-50%);
	text-align: left;
}

.short #scrollicon {
	bottom: 2rem;
}

#scrollicon:before,
#scrollicon:after {
	content: '';
	position: absolute;
	font-size: 1.2rem;
	font-family: GTBold, sans-serif;
}

#scrollicon:before {
	width: .8rem;
	height: .8rem;
	background: white;
	-webkit-border-radius: 100%;
	-moz-border-radius: 100%;
	border-radius: 100%;
	margin-left: .3rem;
	margin-top: .3rem;
	-webkit-animation: scroller 1s infinite forwards ease-in;
	-moz-animation: scroller 1s infinite forwards ease-in;
	-o-animation: scroller 1s infinite forwards ease-in;
	animation: scroller 1s infinite forwards ease-in;
}

#scrollicon:after {
	content: 'Scroll';
	text-transform: uppercase;
	bottom: -2.5rem;
	left: 50%;
	-webkit-transform: translateX(-50%);
	-moz-transform: translateX(-50%);
	-ms-transform: translateX(-50%);
	-o-transform: translateX(-50%);
	transform: translateX(-50%);
	margin-left: .2rem;
}

@-webkit-keyframes scroller {
	0% {
		opacity: 0;
		margin-top: .3rem;
	}
	10% {
		opacity: 1;
	}
	80% {
		opacity: 1;
	}
	90% {
		opacity: 0;
	}
	100% {
		opacity: 0;
		margin-top: 1.3rem;
	}
}

@-moz-keyframes scroller {
	0% {
		opacity: 0;
		margin-top: .3rem;
	}
	10% {
		opacity: 1;
	}
	80% {
		opacity: 1;
	}
	90% {
		opacity: 0;
	}
	100% {
		opacity: 0;
		margin-top: 100%;
	}
}

@-o-keyframes scroller {
	0% {
		opacity: 0;
		margin-top: .3rem;
	}
	10% {
		opacity: 1;
	}
	80% {
		opacity: 1;
	}
	90% {
		opacity: 0;
	}
	100% {
		opacity: 0;
		margin-top: 1.3rem;
	}
}

@keyframes scroller {
	0% {
		opacity: 0;
		margin-top: .3rem;
	}
	10% {
		opacity: 1;
	}
	80% {
		opacity: 1;
	}
	90% {
		opacity: 0;
	}
	100% {
		opacity: 0;
		margin-top: 1.3rem;
	}
}


#header-bar {
	margin-top: 5rem;
}

.carousel-container {
	position: absolute;
	top: 0;
	width: 100%;
	height: 100%;
	overflow: hidden;
}

.carousel-slide {
	-webkit-background-size: cover;
	-moz-background-size: cover;
	-o-background-size: cover;
	background-size: cover;
	background-position: center center;
	width: 100%;
	height: 100%;
}

.tableselection {
	padding: 10px 17px;
	position: relative;
	left: -17px;
	-webkit-border-radius: 5px;
	   -moz-border-radius: 5px;
	        border-radius: 5px;
	width: -webkit-calc(100% + 32px);
	width: -moz-calc(100% + 32px);
	width: calc(100% + 32px);
	max-width: none;
	-webkit-transition: background .25s ease-in-out;
	-o-transition: background .25s ease-in-out;
	-moz-transition: background .25s ease-in-out;
	transition: background .25s ease-in-out;
}

.tableselection:hover {
	background: rgba(255, 255, 255, .15);
}

.iconbuttonlink {
	margin-right: 1.3em;
}

.iconbuttonlink:last-of-type {
	margin-right: 0;
}

.toggler {
	display: inline-block;
}

.toggle {
	padding: 5px 13px;
	border: 2px solid white;
	border-right-width: 0px;
	font-size: .8em;
	position: relative;
	-webkit-transition: background .25s ease-in-out, opacity .25s ease-in-out;
	-o-transition: background .25s ease-in-out, opacity .25s ease-in-out;
	-moz-transition: background .25s ease-in-out, opacity .25s ease-in-out;
	transition: background .25s ease-in-out, opacity .25s ease-in-out;
}

.toggle.active {
	background: rgba(255, 255, 255, .4);
	border-right-width: 2px;
}

a:first-of-type .toggle {
	-webkit-border-top-left-radius: 5px;
	   -moz-border-radius-topleft: 5px;
	        border-top-left-radius: 5px;
	-webkit-border-bottom-left-radius: 5px;
	   -moz-border-radius-bottomleft: 5px;
	        border-bottom-left-radius: 5px;
	margin-left: .5em;
}

a:last-of-type .toggle {
	border-right-width: 2px;
	-webkit-border-top-right-radius: 5px;
	   -moz-border-radius-topright: 5px;
	        border-top-right-radius: 5px;
	-webkit-border-bottom-right-radius: 5px;
	   -moz-border-radius-bottomright: 5px;
	        border-bottom-right-radius: 5px;
	margin-right: .5em;
}

.togglelink.active+a .toggle {
	margin-left: -2px;
}

.togglelink:hover .toggle {
	border-right-width: 2px;
}

.togglelink:hover {
	z-index: 1;
}

.togglelink:hover+a .toggle {
	margin-left: -2px;
}

.toggle:not(.active) {
	opacity: .7;
}

.toggle:not(.active):hover {
	opacity: 1;
	background: rgba(255, 255, 255, .2);
}

.iconbuttonlink:hover {
	color: white;
}

.iconbutton {
	padding: .3em 0 .3em 1.7em;
	margin-top: .5em;
	display: inline-block;
	background-repeat: no-repeat;
	-webkit-background-size: auto 50%;
	   -moz-background-size: auto 50%;
	     -o-background-size: auto 50%;
	        background-size: auto 50%;
	background-position: left center;
	font-family: GTBold, sans-serif;
}

.sidecontainer {
	width: 80vw;
	left: -80vw;
	position: fixed;
	max-height: 100vh;
	height: 100vh;
	z-index: 1000;
	overflow: auto;
}

.animate .sidecontainer {
	-webkit-transition: left .25s ease-in-out;
	-o-transition: left .25s ease-in-out;
	-moz-transition: left .25s ease-in-out;
	transition: left .25s ease-in-out;
}

.leftopen .sidecontainer {
	width: 100vw;
	left: 0;
}

.sidemenucontainer .iconbutton {
	padding-top: 0;
	padding-bottom: 0;
	-webkit-background-size: auto .8em;
	   -moz-background-size: auto .8em;
	     -o-background-size: auto .8em;
	        background-size: auto .8em;
}

.iconbutton.icon_calendar {
	background-image: url('./assets/images/icons/calendar-white.png');
}

.iconbutton.icon_food {
	background-image: url('./assets/images/icons/hamburger-white.png');
}

.iconbutton.icon_keyholders {
	background-image: url('./assets/images/icons/key-white.png');
}

.iconbutton.icon_trace {
	background-image: url('./assets/images/icons/tracktrace-white.png');
}

h3.iconbutton {
	display: block;
	text-align: left;
	font-family: "GTMedium", sans-serif;
	-webkit-background-size: auto 40%;
	   -moz-background-size: auto 40%;
	     -o-background-size: auto 40%;
	        background-size: auto 40%;
}

.mainbutton {
	padding: 1.4rem 5.5rem 1.4rem 4.75rem;
	text-align: center;
	min-width: 100px;
	display: inline-block;
	position: relative;
	color: #e04f39;
	cursor: pointer;
}

.mainbutton.wider {
	padding: 1.4rem 7rem 1.4rem 7rem;
}

.mainbutton.mobilewide {
    width:100%;
}

.mainbutton.margintop {
	margin-top: .5em;
}

.mainbutton:hover {
	color: #e04f39;
}

.mainbutton .edges span {
	position: absolute;
	background: #e04f39;
	-webkit-transition: width .25s ease-in-out, height .25s ease-in-out;
	-o-transition: width .25s ease-in-out, height .25s ease-in-out;
	-moz-transition: width .25s ease-in-out, height .25s ease-in-out;
	transition: width .25s ease-in-out, height .25s ease-in-out;
}

.mainbutton .edges span:nth-of-type(1) {
	height: 1px;
	width: 100%;
	width: -webkit-calc(100% - 22px);
	width: -moz-calc(100% - 22px);
	width: calc(100% - 22px);
	right: 0;
	top: 0;
}

.mainbutton .edges span:nth-of-type(2) {
	width: 1px;
	height: 100%;
	right: 0;
	top: 0;
}

.mainbutton .edges span:nth-of-type(3) {
	height: 1px;
	width: 100%;
	left: 0;
	bottom: 0;
}

.mainbutton .edges span:nth-of-type(4) {
	width: 1px;
	height: 100%;
	height: -webkit-calc(100% - 22px);
	height: -moz-calc(100% - 22px);
	height: calc(100% - 22px);
	left: 0;
	bottom: 0;
}

.mainbutton.drop span.icon {
	margin-left: 22px;
	height: 10px;
	position: absolute;
	top: 50%;
	margin-top: -8px;
	-webkit-transform: rotate(45deg);
	-moz-transform: rotate(45deg);
	-ms-transform: rotate(45deg);
	-o-transform: rotate(45deg);
	transform: rotate(45deg);
	width: 10px;
	border-bottom: 1px solid #e04f39;
	border-right: 1px solid #e04f39;
}

.mainbutton.arrow span.icon,
.mainbutton.plus span.icon,
.active-location-button .icon {
	position: absolute;
	width: 1.5rem;
	height: 1px;
	background: #e04f39;
	margin-left: 22px;
	top: 50%;
}

.active-location-button .icon {
	top: 20px;
	background: white;
}

.mainbutton.arrow span.icon:after,
.active-location-button .icon:after {
	content: '';
	width: .7rem;
	height: .7rem;
	position: absolute;
	-webkit-transform: rotate(45deg) translateY(-60%);
	-moz-transform: rotate(45deg) translateY(-60%);
	-ms-transform: rotate(45deg) translateY(-60%);
	-o-transform: rotate(45deg) translateY(-60%);
	transform: rotate(45deg) translateY(-60%);
	margin-left: -4px;
	border-top: 1px solid #e04f39;
	border-right: 1px solid #e04f39;
}

.mainbutton.plus span.icon:after {
	content: '';
	position: absolute;
	height: 1.4rem;
	margin-left: -1px;
	margin-top: -.65rem;
	background: #e04f39;
	border-left: 1px solid #e04f39;
}

.mainbutton.plus.white span.icon {
	background: white;
}

.mainbutton.plus.white span.icon:after {
	border-left: 1px solid white;
}

.mainbutton.plus.black span.icon {
	background: black;
}

.mainbutton.plus.black span.icon:after {
	border-left: 1px solid black;
}

.active-location-button .icon:after {
	border-top: 1px solid white;
	border-right: 1px solid white;
}

.mainbutton.arrow.white span.icon {
	background: white;
}

.mainbutton.arrow.white span.icon:after {
	border-top-color: white;
	border-right-color: white;
}

.mainbutton.upperbold {
	font-family: GTBold, sans-serif;
	text-transform: uppercase;
}

.mainbutton.ajload span.icon:after {
	display: none !important;
}

.mainbutton.ajload span.icon {
	background: transparent;
	height: 15px;
	width: 15px;
	border: 1.2px solid #e04f39;
	-webkit-border-radius: 100%;
	   -moz-border-radius: 100%;
	        border-radius: 100%;
	border-top-color: transparent;
	margin-top: -8px;
	-webkit-animation: spin .75s ease-in-out infinite;
	-moz-animation: spin .75s ease-in-out infinite;
	-o-animation: spin .75s ease-in-out infinite;
	animation: spin .75s ease-in-out infinite;
}

.sidemenucontainer .mainbutton.ajload span.icon {
	border: 1.2px solid white;
	border-top-color: transparent;
	background: transparent;
}

.upper {
	text-transform: uppercase;
}

.orange {
	color: #e04f39;
}

.openhoursmessage {
	margin-left: .5em;
}

.tooltipdrop .droptitle {
	position: relative;
	display: inline;
	padding-right: 20px;
	cursor: pointer;
}

.openbelow .droptitle {
	padding-left: 20px;
}

.tooltipdrop .droptitle:after {
	content: '';
	position: absolute;
	-webkit-box-sizing: border-box;
	   -moz-box-sizing: border-box;
	        box-sizing: border-box;
	border: 3px solid transparent;
	border-top: 3px solid #e04f39;
	top: 50%;
	margin-top: -2px;
	right: 7px;
	-webkit-transition: all .25s ease-in-out;
	-o-transition: all .25s ease-in-out;
	-moz-transition: all .25s ease-in-out;
	transition: all .25s ease-in-out;
}

.tooltipdrop.open .droptitle:after {
	-webkit-transform: rotate(-180deg);
	   -moz-transform: rotate(-180deg);
	    -ms-transform: rotate(-180deg);
	     -o-transform: rotate(-180deg);
	        transform: rotate(-180deg);
	margin-top: -6px;
}

.tooltipdrop.openbelow .tooltip {
	width: -webkit-fit-content;
	width: -moz-fit-content;
	width: fit-content;
	margin: auto;
	display: block;
}

.tooltip_inner {
	padding: 1rem;
}

.tooltip {
	height: 0px;
	overflow: hidden;
	-webkit-transition: height .25s ease-in-out;
	-o-transition: height .25s ease-in-out;
	-moz-transition: height .25s ease-in-out;
	transition: height .25s ease-in-out;
}

.displaytable {
	display: table;
	width: 100%;
}

.displaytablerow {
	display: table-row;
}

.displaytablecell {
	display: table-cell;
}

.displaytablecell.maximise {
    width: 100%;
}


.displaytablecell.vbottom {
    vertical-align: bottom;
}

.mainbutton.white {
	color: white;
}

.mainbutton.white .edges span {
	background: white;
}

.mainbutton.drop.white span.icon {
	border-bottom-color: white;
	border-right-color: white;
}

.mainbutton.black {
	color: #1a1a1a;
}

.mainbutton.black .edges span {
	background: #1a1a1a;
}

.mainbutton.drop.black span.icon {
	border-bottom-color: #1a1a1a;
	border-right-color: #1a1a1a;
}

.mainbanner .mainbutton {
	padding: 10px;
	color: #e04f39;
	text-transform: uppercase;
}

.mainbanner.theme-brand .mainbutton {
	color: #1a1a1a;
}

.mainbanner .mainbutton:hover {
	color: white;
}

.mainbanner .mainbutton .edges,
.mainbanner .icon {
	display: none;
}

#burger {
	height: 2rem;
	margin-top: 1rem;
	width: 4.4rem;
	max-width: 12.5%;
	/* 2 columns */
	right: 0;
	display: inline-block;
	float: right;
	cursor: pointer;
}

#burger span {
	left: 50%;
	margin-left: -50%;
}

#burger span:nth-of-type(1),
#burger span:nth-of-type(2),
#burger span:nth-of-type(3) {
	height: 2px;
	-webkit-border-radius: 2px;
	   -moz-border-radius: 2px;
	        border-radius: 2px;
	width: 100%;
	position: relative;
	background: white;
	display: block;
	-webkit-transition: all .25s ease-in-out .25s;
	-o-transition: all .25s ease-in-out .25s;
	-moz-transition: all .25s ease-in-out .25s;
	transition: all .25s ease-in-out .25s;
}

#burger span:nth-last-of-type(1) {
	top: 0%;
}

#burger span:nth-last-of-type(2) {
	top: 50%;
}

#burger span:nth-last-of-type(3) {
	top: 100%;
}

.menuopen #burger span:nth-of-type(1),
.menuopen #burger span:nth-of-type(3) {
	-webkit-transform: rotate(45deg);
	-moz-transform: rotate(45deg);
	-ms-transform: rotate(45deg);
	-o-transform: rotate(45deg);
	transform: rotate(45deg);
	width: 60%;
	top: 50%;
	margin-left: -30%;
}

.menuopen #burger span:nth-of-type(2) {
	left: 100%;
	width: 0;
}

.menuopen #burger span:nth-of-type(3) {
	-webkit-transform: rotate(-45deg);
	-moz-transform: rotate(-45deg);
	-ms-transform: rotate(-45deg);
	-o-transform: rotate(-45deg);
	transform: rotate(-45deg);
	margin-top: -4px;
}

#sidemenu,
#leftsidebar {
	position: fixed;
	height: 100vh;
	width: 85vw;
	z-index: 1;
	right: -85vw;
	display: table;
}

.distancetag {
	padding: 5px 8px;
	background: RGBA(255, 255, 255, .3);
	margin-left: .5em;
	-webkit-border-radius: 4px;
	   -moz-border-radius: 4px;
	        border-radius: 4px;
	position: absolute;
	font-size: .9em;
	zoom: .75;
	line-height: 1em;
	margin-top: .2em;
}

#leftsidebar {
	position: unset;
}

#leftsidebar {
	left: -85vw;
	/*background: #e04f39;*/
	background: #FFFFFF;
	color: white;
}

.animate #sidemenu,
.animate #leftsidebar {
	-webkit-transition: all .25s ease-in-out;
	-o-transition: all .25s ease-in-out;
	-moz-transition: all .25s ease-in-out;
	transition: all .25s ease-in-out;
}

.sidemenucontainer {
	height: 100%;
	vertical-align: middle;
	display: table-cell;
	text-align: center;
	position: relative;
}

.paddingsidemenucontainer {
    padding: 3rem;
    height: 100%;
}

#leftsidebar .sidemenucontainer {
	text-align: left;
}

.closesidebar {
	position: absolute;
	height: 100%;
	width: 100%;
	right: 0;
	top: 0;
	z-index: -1;
	cursor: pointer;
}

.menuopen #sidemenu {
	right: 0;
}

.leftopen #leftsidebar {
	left: 0;
}

.sidemenucontainer .logo img {
	width: 12rem;
}

.marginsection {
	margin-bottom: 9rem;
}

.marginsection:last-of-type {
	margin-bottom: 0;
}

.draftmenuitem a:before,
.pendingmenuitem a:before {
	content: 'Draft';
	position: absolute;
	color: white;
	background: #999;
	padding: 7px;
	-webkit-border-radius: 10px;
	   -moz-border-radius: 10px;
	        border-radius: 10px;
	font-size: 10px;
	line-height: .5em;
	-webkit-transform: translateX(-118%);
	   -moz-transform: translateX(-118%);
	    -ms-transform: translateX(-118%);
	     -o-transform: translateX(-118%);
	        transform: translateX(-118%);
	margin-top: 8px;
}

.pendingmenuitem a:before {
	content: 'Pending';
}

ul.menu {
	display: inline;
}

ul.menu li {
	-webkit-transition: opacity .25s ease-in-out;
	-o-transition: opacity .25s ease-in-out;
	-moz-transition: opacity .25s ease-in-out;
	transition: opacity .25s ease-in-out;
	position: relative;
}

ul.menu li:after {
	content: '';
	display: block;
}

#sidemenu ul.menu li a {
	font-family: GTRegular;
	text-transform: uppercase;
	font-size: 2.4rem;
	line-height: 1.5em;
}

#sidemenu li {
	display: inline;
}

a {
	-webkit-transition: all .25s ease-in-out;
	-o-transition: all .25s ease-in-out;
	-moz-transition: all .25s ease-in-out;
	transition: all .25s ease-in-out;
}

ul.menu li a {
	color: #1a1a1a;
}

ul.menu li.current-menu-item>a {
	color: #e04f39;
}

ul.menu li a:hover {
	color: #e04f39;
}

ul.sub-menu {
	position: fixed;
	background: white;
	-webkit-box-shadow: rgba(0, 0, 0, .1) 0px 1px 3px;
	   -moz-box-shadow: rgba(0, 0, 0, .1) 0px 1px 3px;
	        box-shadow: rgba(0, 0, 0, .1) 0px 1px 3px;
	display: none;
}

ul.sub-menu li {
	display: block;
}

li:hover .sub-menu {
	display: block;
}

ul.sub-menu li li a {
	text-transform: none;
}

ul.sub-menu li a:hover {
	background: #1a1a1a;
	color: white;
}

#scrollmenu {
	position: fixed;
	z-index: 998;
	background: white;
	width: 100vw;
	-webkit-box-shadow: rgba(0, 0, 0, .1) 0px 1px;
	   -moz-box-shadow: rgba(0, 0, 0, .1) 0px 1px;
	        box-shadow: rgba(0, 0, 0, .1) 0px 1px;
	top: -100px;
	font-size: .9em;
	-webkit-transition: top .5s ease-in-out;
	-o-transition: top .5s ease-in-out;
	-moz-transition: top .5s ease-in-out;
	transition: top .5s ease-in-out;
	display: none;
}

.scrolltop #scrollmenu {
	top: 0;
}

.scrolltop .logged-in #scrollmenu {
	top: 32px;
}

.onofftag {
	padding: 8px 8px 8px 6px !important;
    background: red;
    line-height: 1px !important;
    display: inline-block !important;
    border-radius: 5px !important;
    margin-left: 3px !important;
    font-size: .7em !important;
    text-transform: uppercase !important;
    color: white;
}

.onofftag.greentag {
	background: green;
}

.ab-sub-wrapper {
	max-width: initial;
}



.menuopen #scrollmenu,
.leftopen #scrollmenu {
	top: -100px !important;
}

#scrollmenu li {
	display: inline-block;
}

#scrollmenu li a {
	display: block;
	padding: 1.3em .65em;
	text-transform: uppercase;
}

#scrollmenu li li a {
	padding: .7em 1em;
	text-transform: none;
}

#scrollmenu li li {
	display: block;
}

#scrollmenu li li.current-menu-item a {
	color: #e04f39;
}

#scrollmenu li:hover>a {
	color: #e04f39;
}

#scrollmenu .sub-menu li:hover>a {
	color: white;
}

#sidemenucontainer .marginsection {
	opacity: 0;
	-webkit-transition: opacity .35s ease-in-out .25s;
	-o-transition: opacity .35s ease-in-out .25s;
	-moz-transition: opacity .35s ease-in-out .25s;
	transition: opacity .35s ease-in-out .25s;
}

.menuopen #sidemenucontainer .marginsection {
	opacity: 1;
}

.venuesmap {
	height: 100vw;
	min-height: 650px;
	max-height: 750px;
}

.venuesmap-section-map-container {
	height: 100%;
	overflow: hidden;
}

.venuesmap-section-map {
	height: 100%;
	margin-top: -50px;
	height: -webkit-calc(100% + 100px);
	height: -moz-calc(100% + 100px);
	height: calc(100% + 100px);
}

.gm-style-pbc {
	display: none !important;
}

.gm-style .gm-style-iw-t {
	-webkit-transition: all .15s ease-in-out;
	-o-transition: all .15s ease-in-out;
	-moz-transition: all .15s ease-in-out;
	transition: all .15s ease-in-out;
	-webkit-transition-duration: .15s;
	   -moz-transition-duration: .15s;
	     -o-transition-duration: .15s;
	        transition-duration: .15s;
	-webkit-transform: scale(0);
	   -moz-transform: scale(0);
	    -ms-transform: scale(0);
	     -o-transform: scale(0);
	        transform: scale(0);
}

.gm-style .gm-style-iw-t.open {
	-webkit-transform: scale(1);
	   -moz-transform: scale(1);
	    -ms-transform: scale(1);
	     -o-transform: scale(1);
	        transform: scale(1);
}

.venuesmap-section-places {
	width: 100%;
	position: relative;
	margin-top: -50px;
	overflow: hidden;
}

.venuesmap-section-mobilecarousel {
	white-space: nowrap;
	display: table;
}

.venuesmap-section-mobilecarousel .element {
	width: -webkit-calc(19.4px * 6);
	width: -moz-calc(19.4px * 6);
	width: calc(19.4px * 6);
	margin-right: 17.992px;
	display: inline-table;
	white-space: initial;
	position: relative;
}

.venuesmap-section-mobilecarousel .placephoto {
	width: 100%;
	padding-top: 100%;
	background: #1a1a1a;
	margin-bottom: 1.2em;
	-webkit-background-size: cover;
	   -moz-background-size: cover;
	     -o-background-size: cover;
	        background-size: cover;
	margin-top: 40px;
}

.infowindowtitle {
	color: #e04f39;
	margin-bottom: .5rem;
	font-weight: bold;
	font-size: 2rem;
}

.active-location-button {
	height: 0px;
	background: #e04f39;
	position: absolute;
	width: 100%;
	overflow: hidden;
	margin-top: 40px;
	-webkit-transition: all .25s ease-in-out;
	-o-transition: all .25s ease-in-out;
	-moz-transition: all .25s ease-in-out;
	transition: all .25s ease-in-out;
}

.active .active-location-button {
	height: 40px;
	margin-top: 0;
}

.active-location-button a {
	color: white;
	padding: 1rem;
	padding-right: 3rem;
	text-align: center;
	display: block;
	width: 100%;
}

.active-location-button a:after {
	content: '';
}

.microtag {
	padding: 0px 12px;
	font-size: 1.2rem;
	background: #868686;
	color: white;
	display: inline-block;
	-webkit-border-radius: 5px;
	   -moz-border-radius: 5px;
	        border-radius: 5px;
	-webkit-transition: all .25s ease-in-out;
	-o-transition: all .25s ease-in-out;
	-moz-transition: all .25s ease-in-out;
	transition: all .25s ease-in-out;
}

.infowindow .microtag {
	font-size: .7em;
	padding: 4px 6px;
}

.screenelement .microtag {
	position: relative;
	margin-left: 1em;
	font-size: .6em;
	padding: 6px;
	line-height: 1em;
	top: -3px;
}

.active .microtag {
	background: #e04f39;
}

.active .microtag.livebullet {
	padding-left: 14px;
}

.active .microtag.livebullet:before {
	content: '';
	width: 6px;
	height: 6px;
	position: relative;
	background: white;
	-webkit-border-radius: 100px;
	   -moz-border-radius: 100px;
	        border-radius: 100px;
	left: -5px;
	display: inline-block;
	top: -1px;
	-webkit-animation: pulse 1.5s infinite forwards linear;
	   -moz-animation: pulse 1.5s infinite forwards linear;
	     -o-animation: pulse 1.5s infinite forwards linear;
	        animation: pulse 1.5s infinite forwards linear;
}

.microtag.white {
	background: white;
	color: #e04f39;
}

strong.larger {
	line-height: 1.7em;
}

strong.larger .microtag {
	margin-right: 7px;
}

.smallercontent {
	font-size: 0.8em;
	line-height: 1.3em;
	border-top: .7em solid transparent;
}

@-webkit-keyframes pulse {
	0% {
		opacity: 0.1;
	}
	10% {
		opacity: 1;
	}
	70%,
	100% {
		opacity: 0.1;
	}
}

@-moz-keyframes pulse {
	0% {
		opacity: 0.1;
	}
	10% {
		opacity: 1;
	}
	70%,
	100% {
		opacity: 0.1;
	}
}

@-o-keyframes pulse {
	0% {
		opacity: 0.1;
	}
	10% {
		opacity: 1;
	}
	70%,
	100% {
		opacity: 0.1;
	}
}

@keyframes pulse {
	0% {
		opacity: 0.1;
	}
	10% {
		opacity: 1;
	}
	70%,
	100% {
		opacity: 0.1;
	}
}

#mailing-list {
	background: #f5f5f5;
}

#mailing-list .formsection {
	margin-top: 5rem;
}

input[type=text], input[type=number], input[type=email] {
	width: 100%;
	border-bottom: 1px solid #e04f39;
	padding: 10px 0;
	width: 100%;
	background: transparent;
	padding-right: 60px;
	-webkit-border-radius: 0;
	   -moz-border-radius: 0;
	        border-radius: 0;
	-webkit-appearance: none !important;
	font-size: 16px;
    box-sizing: border-box;
}

.sidemenucontainer .formsection input {
	color: white;
	border-bottom: 1px solid white;
}

label {
    cursor: pointer;
}

.sidemenucontainer .formsection label {
	color: white;
}

.sidemenucontainer .formsection label:not(.required):after {
	color: white;
}

.infieldbutton {
	float: right;
	text-align: right;
	width: auto;
	text-transform: uppercase;
	color: #e04f39;
	font-size: 0.8em;
	cursor: pointer;
	padding: 12px 0px 8px 10px !important;
}

label.infield {
	width: auto;
}

.inputrow.infield {
	display: -webkit-box;
	display: -webkit-flex;
	display: -moz-box;
	display: -ms-flexbox;
	display: flex;
}

input[type=email] {
	text-transform: lowercase;
}

.isrequired + input {
    padding-right: 3.5em !important;
}

label:not(.required):after, label.isrequired:after {
	content: 'Optional';
	right: 0;
	position: absolute;
	text-transform: uppercase;
	font-size: 1.1rem;
	color: #B3B3B3;
    z-index: 10;
}

label.pre-select:not(.required):after {
    content: '';
}

label.pre-select {
    position: absolute;
    display: block;
    height: 5px;
    width: 5px;
    right: 10px;
    top: 3em;
    transform: rotate(45deg);
    border: 1px solid #e04f39;
    border-top: transparent;
    border-left: transparent;
    z-index: -1;
}

.pr label.pre-select {
    right: 20px;
}

label.isrequired:after {
    content: 'Required';
}

div:not(.required) input, div.isrequired input {
	padding-right: 0;
}

input::-moz-selection {
	color: white;
	background: #333;
}

input::selection {
	color: white;
	background: #333;
}

label {
	position: absolute;
	top: 11px;
	color: #808080;
	width: 100%;
	cursor: text;
}

.whitefield label {
    color: white !important;
}

.whitefield input {
    border-bottom-color: white;
    color: white;
}

select label {
    position: absolute;
    width: 30px;
    height: 30px;
    border: 1px solid red;
    display: block;
    top: 0;
    left: 0;
}

label,
label:after {
	-webkit-touch-callout: none;
	/* iOS Safari */
	-webkit-user-select: none;
	/* Safari */
	/* Konqueror HTML */
	-moz-user-select: none;
	/* Old versions of Firefox */
	-ms-user-select: none;
	/* Internet Explorer/Edge */
	user-select: none;
	-webkit-transition: all .25s ease-in-out;
	-o-transition: all .25s ease-in-out;
	-moz-transition: all .25s ease-in-out;
	transition: all .25s ease-in-out;
}

.inputrow {
	position: relative;
	margin-bottom: 1.75rem;
}

.inputrow:nth-of-type(1):last-of-type {
	margin-bottom: 0;
}

.formsection {
	margin-bottom: 4rem;
}

.fixedfield label, .fieldhastext label {
	font-size: .7em;
	margin-top: -15px;
	color: #B3B3B3;
	cursor: default;
}



.fixedfield input, .fieldhastext input {
	padding: 13px 0 7px 0;
}

.fixedfield input[type=date] {
	padding-top: 1em;
    color-scheme: dark;
}

.whitefield input[type=date] {
    color-scheme: dark;
}

.fixedfield label:after, .fieldhastext label:after {
	margin-top: 15px;
}



input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
textarea:-webkit-autofill,
textarea:-webkit-autofill:hover,
textarea:-webkit-autofill:focus,
select:-webkit-autofill,
select:-webkit-autofill:hover,
select:-webkit-autofill:focus {
	-webkit-text-fill-color: #1a1a1a;
	-webkit-box-shadow: 0 0 0px 10000px transparent inset;
	-webkit-transition: background-color 5000s ease-in-out 0s;
	transition: background-color 5000s ease-in-out 0s;
}

input:-webkit-autofill::selection,
.sidemenucontainer .formsection input:-webkit-autofill,
.sidemenucontainer .formsection input:-webkit-autofill:hover,
.sidemenucontainer .formsection input:-webkit-autofill:focus,
.sidemenucontainer .formsection textarea:-webkit-autofill,
.sidemenucontainer .formsection textarea:-webkit-autofill:hover,
.sidemenucontainer .formsection textarea:-webkit-autofill:focus,
.sidemenucontainer .formsection select:-webkit-autofill,
.sidemenucontainer .formsection select:-webkit-autofill:hover,
.sidemenucontainer .formsection select:-webkit-autofill:focus {
	-webkit-text-fill-color: white;
}

input.whitefield:-webkit-autofill,
input.whitefield:-webkit-autofill:hover,
input.whitefield:-webkit-autofill:focus,
textarea.whitefield:-webkit-autofill,
textarea.whitefield:-webkit-autofill:hover,
textarea.whitefield:-webkit-autofill:focus,
select.whitefield:-webkit-autofill,
select.whitefield:-webkit-autofill:hover,
select.whitefield:-webkit-autofill:focus,

input:-internal-autofill-selected {
    color: white !important;
	-webkit-text-fill-color: #FFF !important;
}

select {
	background: transparent;
	border: 0;
	border-bottom: 1px solid white !important;
	width: 100%;
	color: white;
	-webkit-border-radius: 0;
	   -moz-border-radius: 0;
	        border-radius: 0;
	-moz-box-shadow: none !important;
	     box-shadow: none !important;
	-webkit-box-shadow: none !important;
	height: 40px;
	padding: 0px;
	color: white;
	-webkit-appearance: none;
	cursor: pointer;
	font-size: 16px;
}

.whitebox select {
    color: #1a1a1a;
    border-bottom: 1px solid #e04f39 !important;
    padding-top: 6px;
    height: 43px;
}
			
select option {
	color: #1a1a1a;
}

select option:disabled {
	background: #e5e5e5;
}

#footer {
	font-size: .85em;
	line-height: 1.3em;
	text-align: center;
}

#footerlogo {
	margin-bottom: 6rem;
}

#footer .menu li {
	display: inline-block;
	margin-left: 7px;
	margin-right: 7px;
	margin-bottom: 15px;
}

#wp-footer-menu {
	padding-bottom: 2.25rem;
	margin-bottom: 3rem;
	position: relative;
}

#wp-footer-menu:after {
	content: '';
	position: absolute;
	width: 8rem;
	height: 1px;
	background: #e04f39;
	bottom: 0;
	left: 50%;
	margin-left: -4rem;
}

#footer-social .menu {
	margin-bottom: 1em;
}

#kerned a {
	color: #808080;
	display: block;
}

#kerned a:hover {
	color: #e04f39;
}

.messagebanner {
	visibility: hidden;
	position: fixed;
	background: #e04f39;
	color: white;
	top: 0;
	left: 0;
	-webkit-transform: translateY(-120%);
	   -moz-transform: translateY(-120%);
	    -ms-transform: translateY(-120%);
	     -o-transform: translateY(-120%);
	        transform: translateY(-120%);
	z-index: 1000000000;
	width: 100%;
	padding: 3rem;
	-webkit-transition: all .25s ease-in-out;
	-o-transition: all .25s ease-in-out;
	-moz-transition: all .25s ease-in-out;
	transition: all .25s ease-in-out;
}

.bannerclose {
	position: absolute;
	right: 30px;
	height: 1em;
	width: 1em;
	cursor: pointer;
	top: 50%;
	-webkit-transform: translateY(-50%);
	   -moz-transform: translateY(-50%);
	    -ms-transform: translateY(-50%);
	     -o-transform: translateY(-50%);
	        transform: translateY(-50%);
}

.bannerclose span,
.bannerclose span:after {
	position: absolute;
	height: 100%;
	border-right: 2px solid white;
	-webkit-transform: rotate(45deg);
	   -moz-transform: rotate(45deg);
	    -ms-transform: rotate(45deg);
	     -o-transform: rotate(45deg);
	        transform: rotate(45deg);
	left: 50%;
}

.bannerclose span:after {
	content: '';
	-webkit-transform: rotate(90deg);
	   -moz-transform: rotate(90deg);
	    -ms-transform: rotate(90deg);
	     -o-transform: rotate(90deg);
	        transform: rotate(90deg);
}

.hasmessagebanner .messagebanner {
	visibility: visible;
	-webkit-transform: translateY(0%);
	   -moz-transform: translateY(0%);
	    -ms-transform: translateY(0%);
	     -o-transform: translateY(0%);
	        transform: translateY(0%);
}

.shake {
	-webkit-animation: shake 0.85s cubic-bezier(.36, .07, .19, .97) both;
	   -moz-animation: shake 0.85s cubic-bezier(.36, .07, .19, .97) both;
	     -o-animation: shake 0.85s cubic-bezier(.36, .07, .19, .97) both;
	        animation: shake 0.85s cubic-bezier(.36, .07, .19, .97) both;
}

@-webkit-keyframes shake {
	10%,
	90% {
		-webkit-transform: translate3d(-10px, 0, 0);
		        transform: translate3d(-10px, 0, 0);
	}
	20%,
	80% {
		-webkit-transform: translate3d(8px, 0, 0);
		        transform: translate3d(8px, 0, 0);
	}
	30%,
	50%,
	70% {
		-webkit-transform: translate3d(-12px, 0, 0);
		        transform: translate3d(-12px, 0, 0);
	}
	40%,
	60% {
		-webkit-transform: translate3d(12px, 0, 0);
		        transform: translate3d(12px, 0, 0);
	}
}

@-moz-keyframes shake {
	10%,
	90% {
		-moz-transform: translate3d(-10px, 0, 0);
		     transform: translate3d(-10px, 0, 0);
	}
	20%,
	80% {
		-moz-transform: translate3d(8px, 0, 0);
		     transform: translate3d(8px, 0, 0);
	}
	30%,
	50%,
	70% {
		-moz-transform: translate3d(-12px, 0, 0);
		     transform: translate3d(-12px, 0, 0);
	}
	40%,
	60% {
		-moz-transform: translate3d(12px, 0, 0);
		     transform: translate3d(12px, 0, 0);
	}
}

@-o-keyframes shake {
	10%,
	90% {
		transform: translate3d(-10px, 0, 0);
	}
	20%,
	80% {
		transform: translate3d(8px, 0, 0);
	}
	30%,
	50%,
	70% {
		transform: translate3d(-12px, 0, 0);
	}
	40%,
	60% {
		transform: translate3d(12px, 0, 0);
	}
}

@keyframes shake {
	10%,
	90% {
		-webkit-transform: translate3d(-10px, 0, 0);
		   -moz-transform: translate3d(-10px, 0, 0);
		        transform: translate3d(-10px, 0, 0);
	}
	20%,
	80% {
		-webkit-transform: translate3d(8px, 0, 0);
		   -moz-transform: translate3d(8px, 0, 0);
		        transform: translate3d(8px, 0, 0);
	}
	30%,
	50%,
	70% {
		-webkit-transform: translate3d(-12px, 0, 0);
		   -moz-transform: translate3d(-12px, 0, 0);
		        transform: translate3d(-12px, 0, 0);
	}
	40%,
	60% {
		-webkit-transform: translate3d(12px, 0, 0);
		   -moz-transform: translate3d(12px, 0, 0);
		        transform: translate3d(12px, 0, 0);
	}
}

.gm-style .gm-style-iw-c {
	background: #1a1a1a;
	padding: 15px 30px !important;
	-webkit-border-radius: 4px;
	   -moz-border-radius: 4px;
	        border-radius: 4px;
	color: white;
	min-width: 250px !important;
	margin-top: -5px;
	text-align: center;
	padding: 0px !important;
}

.gm-style .gm-style-iw-d {
	overflow: hidden !important;
}

.gm-style .gm-style-iw-t::after {
	background: #1a1a1a;
	margin-top: -5px;
}

.gm-style .gm-style-iw-c button[title='close'] img {
	display: none;
}

.gm-style button {
	-webkit-filter: invert(100%);
	        filter: invert(100%);
	top: 0px !important;
	right: 0px !important;
	display: none !important;
}

.infowindow,
.infowindow a {
	color: white;
}

.infowindowimage {
	padding-top: 50%;
	background: black;
	-webkit-background-size: cover;
	   -moz-background-size: cover;
	     -o-background-size: cover;
	        background-size: cover;
	background-position: center center;
	display: none;
}

.infowindowcontent {
	margin: 1.3em;
}

.venuesmap-section-vertical {
	width: 100%;
	height: 100%;
	padding: 5rem 5rem 5rem 0;
	display: none;
}

.venuesmap-section-vertical-content {
	display: table-cell;
	vertical-align: middle;
}

.venuesmap-section-vertical-content div {
	display: block;
}

.vertical-map-logo {
	width: 30%;
	min-width: 130px;
	max-width: 200px;
	margin-bottom: 8rem;
}

.venuesmap-section-vertical h2,
.venuesmap-section-vertical p {
	-webkit-transition: color .25s ease-in-out;
	-o-transition: color .25s ease-in-out;
	-moz-transition: color .25s ease-in-out;
	transition: color .25s ease-in-out;
}

.venuesmap-section-vertical-content h2.mini {
	margin-bottom: 0;
}

.venuesmap-section-vertical-content p:last-of-type {
	margin-bottom: 10px;
	font-size: .8em;
}

.itemaction {
	cursor: pointer;
}

.screenelement-button {
	height: 0px;
	overflow: hidden;
	-webkit-transition: all .25s ease-in-out;
	-o-transition: all .25s ease-in-out;
	-moz-transition: all .25s ease-in-out;
	transition: all .25s ease-in-out;
	margin-bottom: 20px;
}

.active .screenelement-button {
	height: 50px;
	margin-bottom: 30px;
}

.orangebutton {
	background: #e04f39;
	color: white;
	padding: 10px 46px 10px 20px;
	display: table-cell;
	margin-bottom: 20px;
	position: relative;
	-webkit-transition: background .25s ease-in-out;
	-o-transition: background .25s ease-in-out;
	-moz-transition: background .25s ease-in-out;
	transition: background .25s ease-in-out;
}

.orangebutton:hover {
	background: #1a1a1a;
}

.orangebutton span.icon {
	position: absolute;
	width: 1.5rem;
	height: 1px;
	background: white;
	margin-left: 13px;
	top: 50%;
}

.orangebutton span.icon:after {
	content: '';
	width: .7rem;
	height: .7rem;
	position: absolute;
	-webkit-transform: rotate(45deg) translateY(-60%);
	-moz-transform: rotate(45deg) translateY(-60%);
	-ms-transform: rotate(45deg) translateY(-60%);
	-o-transform: rotate(45deg) translateY(-60%);
	transform: rotate(45deg) translateY(-60%);
	margin-left: 3px;
	border-top: 1px solid white;
	border-right: 1px solid white;
}

h4 {
	font-family: "GTBold", sans-serif;
	font-size: 2rem;
	margin-bottom: 1rem;
	line-height: 1.1em;
}

.food_section {
	background: #f5f5f5;
}

.dish {
	margin-top: 2rem;
	width: 100%;
}

.food_col .dish:first-of-type {
	margin-top: 0;
}

.food_col>.dish {
	padding-left: 0;
	padding-right: 0;
}

.food_group + .dish {
    margin-top: 5rem !important;
}

.food_group .dish:last-of-type {
	margin-bottom: 0;
}

.dish_details {
	/*display: table-cell;*/
}

.dish_prop {
	margin-left: .5em;
	position: relative;
	cursor: default;
	top: -6px;
	font-size: .8em;
}

.dish-prop-v:before,
.dish-prop-ve:before,
.dish-prop-g:before,
.dish-prop-d:before
{
	content: '';
	position: absolute;
	width: 10px;
	height: 10px;
	background: #1a1a1a;
	bottom: -12px;
	left: 50%;
	-webkit-transform: translateX(-50%) rotate(45deg);
	   -moz-transform: translateX(-50%) rotate(45deg);
	    -ms-transform: translateX(-50%) rotate(45deg);
	     -o-transform: translateX(-50%) rotate(45deg);
	        transform: translateX(-50%) rotate(45deg);
	-webkit-border-radius: 2px;
	   -moz-border-radius: 2px;
	        border-radius: 2px;
	display: none;
}

.dish_prop:hover:after,
.dish_prop:hover:before {
	display: inline-block;
}





.dish-prop-v:after {
	content: 'Vegetarian';
}

.dish-prop-ve:after {
	content: 'Vegan';
}

.dish-prop-g:after {
	content: 'Gluten free';
}

.dish-prop-d:after {
	content: 'Dairy free';
}

.dish-prop-v:after,
.dish-prop-ve:after,
.dish-prop-g:after,
.dish-prop-d:after
{
	position: absolute;
	left: 50%;
	-webkit-transform: translateX(-50%);
	   -moz-transform: translateX(-50%);
	    -ms-transform: translateX(-50%);
	     -o-transform: translateX(-50%);
	        transform: translateX(-50%);
	bottom: -27px;
	background: #1a1a1a;
	line-height: 1em;
	color: white;
	padding: 5px 8px 6px 8px;
	-webkit-border-radius: 4px;
	   -moz-border-radius: 4px;
	        border-radius: 4px;
	display: none;
	width: -webkit-max-content;
	width: -moz-max-content;
	width: max-content;
}




.dish_price {
	text-align: right;
    padding-left:1.25em;
    white-space: nowrap;
    font-size: .9em;
    
    position: relative;
    top: 0.025em;
}

h4.dish_title {
    
}

.dish_title {
	display: inline;
    font-size: 1.2em;
}

.dish_ingredients {
	display: block;
	margin-top: .4rem;
    padding-right: 3em;
    max-width: 600px;
}

.food_group {
	border: 1px solid #1a1a1a;
	padding: 22px;
	margin-bottom: 22px;
}

.food_line {
	border-top: 1px solid #1a1a1a;
	margin-top: 5rem;
	margin-bottom: 5rem;
}

.icon {
	height: 20px;
	margin-bottom: 2rem;
}

.icon.large {
	height: 40px;
}

.tab_title {
	text-transform: uppercase;
	color: #888;
	padding: .35em 0.7em;
	cursor: pointer;
	display: inline-block;\
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    margin-right: .3em;
    border-radius: 5px;
    font-size: .9em;
    transition: all .15s ease-in-out;
}

.tab_title:hover {
    background: #f2f2f2;
    color: #1a1a1a;
}

.tab_title:last-of-type {
	margin-right: 0;
}

.tab_title.active {
    padding: .35em 1.5em;
    background: #e04f39;
	color: white;
	font-weight: bold;
    cursor: default;
}

.tab_title.res_tab,
.res_tab.active {
	color: #e04f39;
}

.accordion_title {
	padding: 10px;
	border-top: 1px solid #1a1a1a;
	border-bottom: 1px solid transparent;
	color: #1a1a1a;
    background: #fafafa;
	/*text-transform: uppercase;*/
	cursor: pointer;
	position: relative;
	-webkit-transition: background .25s ease-in-out, color .25s ease-in-out;
	-o-transition: background .25s ease-in-out, color .25s ease-in-out;
	-moz-transition: background .25s ease-in-out, color .25s ease-in-out;
	transition: background .25s ease-in-out, color .25s ease-in-out;
}

.accordion_inner {
	position: relative;
}

.sub_accordion.open {
	border-bottom: 1px solid #1a1a1a;
}

.accordion_inner>h3 {
	padding-left: 22px;
	padding-right: 22px;
}

.accordion_inner h3:only-child,
.accordion_inner h3:last-child {
	margin-bottom: 0;
}

.accordion_group:last-of-type .accordion_inner>.accordion_title {
	border-bottom: 1px solid #1a1a1a;
}

.accordion_group.open>.accordion_inner>.accordion_title {
	border-color: #e04f39;
	color: white;
	background: #e04f39;
}

.sub_accordion.open>.accordion_inner>.accordion_title {
	border-color: transparent;
	color: white;
	background: #1e1e1e;
}

.sub_accordion .accordion_title,
.sub_accordion .accordion_inner {
	margin-bottom: 22px;
}

.sub_accordion .accordion_title {
	padding-left: 22px;
	text-transform: none;
}

.main_accordion .sub_accordion:nth-of-type(1) .accordion_title {
	border-top: 0px solid transparent;
}

.main_accordion .sub_accordion:nth-of-type(1) .accordion_title:nth-of-type(1) {
	margin-top: 2px;
}

.main_accordion .open.sub_accordion:nth-of-type(1) .accordion_title:nth-of-type(1) {
	margin-top: -1px;
}

.sub_accordion:nth-of-type(3) .accordion_title,
.sub_accordion:nth-of-type(4) .accordion_title,
.sub_accordion:nth-of-type(5) .accordion_title,
.sub_accordion:nth-of-type(6) .accordion_title {
	margin-top: -2px;
}

.sub_accordion .food_col {
	background: red;
}

.food_group .dish {
	padding-left: 0px;
	padding-right: 0px;
}

.accordion_group {
	height: 44px;
	overflow: hidden;
}

.accordion_group.open {
	height: auto;
	/*margin-top: -2px;*/
}

.accordion_group .plus {
	height: 13px;
	width: 1px;
	background: #1a1a1a;
	display: inline-block;
	position: absolute;
	right: 20px;
	top: 14px;
	-webkit-transition: -webkit-transform .25s ease-in-out;
	transition: -webkit-transform .25s ease-in-out;
	-o-transition: -o-transform .25s ease-in-out;
	-moz-transition: transform .25s ease-in-out, -moz-transform .25s ease-in-out;
	transition: transform .25s ease-in-out;
	transition: transform .25s ease-in-out, -webkit-transform .25s ease-in-out, -moz-transform .25s ease-in-out, -o-transform .25s ease-in-out;
}

.open.accordion_group .plus {
	-webkit-transform: rotate(135deg);
	   -moz-transform: rotate(135deg);
	    -ms-transform: rotate(135deg);
	     -o-transform: rotate(135deg);
	        transform: rotate(135deg);
}

.accordion_group .plus:after {
	content: '';
	width: 13px;
	height: 1px;
	background: #1a1a1a;
	display: inline-block;
	position: absolute;
	margin-left: -6px;
	margin-top: 6px;
}

.accordion_group.open .plus,
.accordion_group.open .plus:after {
	background: white;
}

.main_accordion>.accordion_inner>.accordion_inner {
	padding: 10px;
}

.main_accordion>.accordion_inner>.accordion_title {
	position: absolute;
	width: 100%;
	z-index: 1;
}

.main_accordion>.accordion_inner>.accordion_inner {
	padding-top: 66px;
	z-index: -1;
}

.reel {
	overflow: hidden;
}

.reel_inner {}

.reel_slider {
	display: table;
	white-space: nowrap;
}

.reel_element {
	display: inline-block;
	white-space: initial;
	vertical-align: top;
	float: none;
}

.reel_post_image {
	width: 100%;
	margin-bottom: 2.75rem;
	overflow: hidden;
}

.full_image {
	width: 100%;
	height: 100%;
	-webkit-background-size: cover;
	   -moz-background-size: cover;
	     -o-background-size: cover;
	        background-size: cover;
	background-position: center center;
	background-repeat: no-repeat;
	-webkit-transition: -webkit-transform .5s ease-in-out;
	transition: -webkit-transform .5s ease-in-out;
	-o-transition: -o-transform .5s ease-in-out;
	-moz-transition: transform .5s ease-in-out, -moz-transform .5s ease-in-out;
	transition: transform .5s ease-in-out;
	transition: transform .5s ease-in-out, -webkit-transform .5s ease-in-out, -moz-transform .5s ease-in-out, -o-transform .5s ease-in-out;
	padding-top: 100%;
}

.pretitle {
	text-transform: uppercase;
	font-family: "GTBold", sans-serif;
	letter-spacing: .2px;
	color: #e04f39;
	padding-bottom: .6em;
	display: block;
	font-size: .6em;
}

.leftimage .pretitle {
	margin-bottom: 2em;
}

.previewtext_2 {
	overflow: hidden;
	-o-text-overflow: ellipsis;
	   text-overflow: ellipsis;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	height: 2.45em;
}

.previewtext_2.altered,
.previewtext_3 {
	overflow: hidden;
	-o-text-overflow: ellipsis;
	   text-overflow: ellipsis;
	display: -webkit-box;
	-webkit-line-clamp: 3;
	-webkit-box-orient: vertical;
	height: 3.9em;
}

.previewtext_4 {
    overflow: hidden;
    -o-text-overflow: ellipsis;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    height: 5.3em;
}

.middleline {
	margin-bottom: 1em;
	display: block;
}

.middleline:after {
	content: '';
	width: 20%;
	height: 1px;
	background: #e04f39;
	display: inline-block;
	margin: auto;
	margin-top: 1.5em;
}

.dividerline {
	background: #e04f39;
	display: block;
	height: 1px;
	width: 40%;
	max-width: 80px;
}

.minibutton {
	padding-top: 2rem;
	display: inline-block;
	text-transform: uppercase;
	color: #1a1a1a;
	letter-spacing: 1px;
	font-size: .9em;
	-webkit-transition: color .25s ease-in-out;
	-o-transition: color .25s ease-in-out;
	-moz-transition: color .25s ease-in-out;
	transition: color .25s ease-in-out;
}

.reel_spacer {
	display: inline-block;
}

.minibutton:hover {
	color: #e04f39;
}

.reel_next,
.reel_prev {
	position: absolute;
	width: 100px;
	height: 100%;
	z-index: 1;
	cursor: pointer;
}

.reel_prev {
	left: 0;
	text-align: right;
	overflow: hidden;
}

.reel_next {
	right: 0;
	overflow: hidden;
}

.reelbutton {
	background: #1a1a1a;
	height: 50px;
	min-width: 50px;
	-webkit-transform: translateY(-50%);
	   -moz-transform: translateY(-50%);
	    -ms-transform: translateY(-50%);
	     -o-transform: translateY(-50%);
	        transform: translateY(-50%);
	display: inline-block;
	color: white;
	font-size: .7em;
	-webkit-transition: background .25s ease-in-out;
	-o-transition: background .25s ease-in-out;
	-moz-transition: background .25s ease-in-out;
	transition: background .25s ease-in-out;
}

.reelbutton span.message {
	padding: 14px;
	display: block;
}

.reelbutton .arrow {
	width: 20px;
	height: 1px;
	background: white;
	position: absolute;
	top: 50%;
	left: 50%;
	-webkit-transform: translateX(-50%);
	   -moz-transform: translateX(-50%);
	    -ms-transform: translateX(-50%);
	     -o-transform: translateX(-50%);
	        transform: translateX(-50%);
}

.reelbutton .arrow:after {
	content: '';
	width: 12px;
	height: 12px;
	position: absolute;
	-webkit-transform: rotate(45deg);
	   -moz-transform: rotate(45deg);
	    -ms-transform: rotate(45deg);
	     -o-transform: rotate(45deg);
	        transform: rotate(45deg);
	border-top: 1px solid white;
	border-right: 1px solid white;
	margin-top: -6px;
	margin-left: -14px;
	right: 2px;
}

.reel_prev .reelbutton {
	margin-top: 100px;
	-webkit-transform: rotate(180deg) translateY(50%);
	   -moz-transform: rotate(180deg) translateY(50%);
	    -ms-transform: rotate(180deg) translateY(50%);
	     -o-transform: rotate(180deg) translateY(50%);
	        transform: rotate(180deg) translateY(50%);
}

.largeyear {
	font-family: 'GTBold';
	font-size: 7rem;
	height: 7rem;
	color: #b3b3b3;
	line-height: 1em;
	margin-bottom: .7em;
}

.reel_sliders {
	font-size: 0px;
	line-height: 0;
	display: inline-block;
	position: relative;
	-webkit-transition: opacity .25s ease-in-out;
	-o-transition: opacity .25s ease-in-out;
	-moz-transition: opacity .25s ease-in-out;
	transition: opacity .25s ease-in-out;
}

.reel_slider_button {
	display: inline-block;
	position: relative;
	width: 3vw;
	height: 5px;
	background: #CCC;
	cursor: pointer;
	-webkit-transition: background .25s;
	-o-transition: background .25s;
	-moz-transition: background .25s;
	transition: background .25s;
	-webkit-box-sizing: content-box;
	   -moz-box-sizing: content-box;
	        box-sizing: content-box;
	margin-bottom: 10px;
	max-width: 35px;
	min-width: 20px;
}

.reel_slider_button:hover {
	background: #eaeaea;
}

.reel_slider_button.currentmarker,
.reel_slider_button.currentmarker:hover {
	position: absolute;
	background: #e04f39;
	z-index: 1;
	cursor: auto;
	-webkit-transition: left .25s ease-in-out;
	-o-transition: left .25s ease-in-out;
	-moz-transition: left .25s ease-in-out;
	transition: left .25s ease-in-out;
}

.reel_gridbutton {
	display: inline-block;
	width: 25px;
	height: 25px;
	margin-left: 1em;
	cursor: pointer;
}

.reel_gridbutton div {
	background: #CCC;
	height: 40%;
	width: 40%;
	float: left;
	margin: 5%;
	-webkit-transition: background .25s;
	-o-transition: background .25s;
	-moz-transition: background .25s;
	transition: background .25s;
}

.reel_gridbutton:hover div {
	background: #eaeaea;
}

.reel_gridbutton.active div {
	background: #e04f39;
}

.reel_tools {
	margin-top: 1rem;
}

.reel_transformed .reel_element {
	margin-bottom: 4em;
}

.fa.inbody {
	font-size: .6em;
	display: inline-block;
	position: relative;
	vertical-align: middle;
	padding-bottom: .3em;
	padding-right: .5em;
}

.featuredpost {
	background: #1a1a1a;
	padding-top: 75%;
	position: relative;
	-webkit-background-size: cover;
	   -moz-background-size: cover;
	     -o-background-size: cover;
	        background-size: cover;
	background-position: center center;
}

.featuredpost_inner {
	position: absolute;
	left: 50%;
	top: 50%;
	-webkit-transform: translate(-50%, -50%);
	   -moz-transform: translate(-50%, -50%);
	    -ms-transform: translate(-50%, -50%);
	     -o-transform: translate(-50%, -50%);
	        transform: translate(-50%, -50%);
	width: 60%;
	text-align: center;
	color: white;
}

.featuredpost_inner p:last-of-type {
	margin-bottom: 1em;
}

.featuredpost_inner .minibutton {
	color: white;
}

.featuredpost_inner .dividerline {
	display: inline-block;
}

.featuredpost_content {
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, .5);
	position: absolute;
	top: 0;
}

ul.categories {
	margin-top: 1em;
}

ul.categories a {
	padding: 5px 0;
	display: inline-block;
	color: #1a1a1a;
	-webkit-transition: color .25s ease-in-out;
	-o-transition: color .25s ease-in-out;
	-moz-transition: color .25s ease-in-out;
	transition: color .25s ease-in-out;
}

ul.categories a:hover {
	color: #e04f39;
}

ul.categories a.active {
	color: #e04f39;
	font-family: GTBold;
}

.subprimary {
	margin-bottom: 1em;
}

.subprimary ul.menu li a {
	font-size: 1em !important;
}

#dynamic_content {
	position: fixed;
	height: 0;
	width: 0;
	z-index: 10000000;
}

.notifications {
	position: fixed;
	top: 50%;
	left: 50%;
	-webkit-transform: translate(-50%, -50%);
	   -moz-transform: translate(-50%, -50%);
	    -ms-transform: translate(-50%, -50%);
	     -o-transform: translate(-50%, -50%);
	        transform: translate(-50%, -50%);
	width: 80%;
	color: white;
}

.notification {
	background: #e04f39;
	padding: 20px;
	margin-bottom: 30px;
	margin-top: 25vh;
	opacity: 0;
	display: none;
	-webkit-transition: all .5s ease-in-out;
	-o-transition: all .5s ease-in-out;
	-moz-transition: all .5s ease-in-out;
	transition: all .5s ease-in-out;
}

.notification.visible {
	display: block;
}

.notification.show {
	margin-top: 0;
	opacity: 1;
}

.notification a,
.notification a:hover {
	color: white;
	text-decoration: underline;
}

.notification:last-of-type {
	margin-bottom: 0;
}

.notification_heading {
	position: relative;
	min-height: 2.5em;
    padding-bottom: 1em;
}

.notification_title {
	font-family: "GTMedium", sans-serif;
	text-transform: uppercase;
	font-size: 1.9rem;
	line-height: 1.4em;
    
    padding-right: 1.5em;
    display: inline-block;
}

.notification_content {
	border-top: 1px solid white;
	padding-top: 1em;
}

.cross {
	position: absolute;
	right: -20px;
	top: -20px;
	padding: 2em;
	cursor: pointer;
}

.cross span {
	display: inline-block;
	height: 1px;
	background: white;
	width: 1.5em;
	position: absolute;
	top: 50%;
	left: 50%;
	-webkit-transform: rotate(45deg);
	   -moz-transform: rotate(45deg);
	    -ms-transform: rotate(45deg);
	     -o-transform: rotate(45deg);
	        transform: rotate(45deg);
	-webkit-transform-origin: center;
	   -moz-transform-origin: center;
	    -ms-transform-origin: center;
	     -o-transform-origin: center;
	        transform-origin: center;
	margin-left: -0.75em;
}

.cross span:nth-of-type(2) {
	-webkit-transform: rotate(-45deg);
	   -moz-transform: rotate(-45deg);
	    -ms-transform: rotate(-45deg);
	     -o-transform: rotate(-45deg);
	        transform: rotate(-45deg);
}

.hasnotifications #blackoverlay {
	left: 0;
	z-index: 10000;
}

.blogpost {}

.blogpost iframe {
	width: 100% !important;
	max-width: 100% !important;
	min-width: auto !important;
	margin-left: -50px;
	display: inline-block;
	margin-left: -20px !important;
	width: calc(100% + 40px) !important;
	max-width: calc(100% + 40px) !important;
}

.blogpost img {
	width: auto;
	height: auto;
}

.blogpost p {
	margin-bottom: 3.5rem;
}

.blogpost .wp-caption .wp-caption-text {
	font-size: .85em;
	color: #a5a5a5;
}

.blogpost .alignnone,
.blogpost .alignnone img,
.blogpost .aligncenter,
.blogpost .aligncenter img {
	width: 100% !important;
}

.blogpost .maincategory {
	font-family: GTBold;
	text-transform: uppercase;
	font-size: .7em;
	margin-bottom: .5em;
	display: inline-block;
}

.postinfo .middleline {
	margin-bottom: 3em;
	margin-top: 2em;
}

.blogpost ul {
	list-style: disc;
	margin-left: 1.2em;
}

.blogpost ol {
	list-style: decimal;
	margin-left: 1.2em;
}

.blogpost ul li,
.blogpost ol li {
	padding-left: 1.5em;
	margin-bottom: 1em;
}

.blogpost ul li:last-of-type,
.blogpost ol li:last-of-type {
	margin-bottom: 3.5em;
}

.slash {
	color: #e04f39;
}

.reviewaka {
	color: #b5b5b5;
}

.reviewimage {
	height: 10em;
	width: 10em;
	background-color: #3a3a3a;
	display: inline-block;
	-webkit-border-radius: 100%;
	   -moz-border-radius: 100%;
	        border-radius: 100%;
	-webkit-background-size: cover;
	   -moz-background-size: cover;
	     -o-background-size: cover;
	        background-size: cover;
	background-position: center center;
	margin-bottom: 1.5em;
}

.reviewtext {
	max-width: 750px !important;
	margin: auto;
	font-size: 1.1em;
	line-height: 1.3em;
	position: relative;
}

.reviews .halfblock-section-content p:last-of-type {
	margin-bottom: 2rem;
}

.reviewsub {
	font-size: .9em;
}

.livestatus {
	padding: 15px 18px;
	background: white;
	color: black;
	-webkit-border-radius: 5px;
	   -moz-border-radius: 5px;
	        border-radius: 5px;
	margin-bottom: 1em;
	margin-top: 2em;
}




#leftsidebar .whitebox {
    color: #1a1a1a;
    width: 100%;
    height: 100%;
    background-color: white;
}

#leftsidebar .whitebox a {
    color: #e04f39;
}

#members-form p:last-of-type {
	margin-bottom: 1em;
}

#members_header {
    padding: 3rem;
    padding-bottom:0;
    background-color: #e04f39;
    color: white;
}

#members_header a {
    color: white;
}

#members_body {
    padding: 3rem;
    padding-top:2rem;
}

.members_top_header {
    padding-bottom: 1.5em;
}

.members_top_header_left, .members_top_header_right {
    text-align: center;
    padding-bottom: 1em;
}

.logoutbutton {
    color: white !important;
    font-size: .6em;
    padding: 5px 9px 4px 9px;
    background: rgba(255,255,255,.3);
    border-radius: 4px;
    margin-left: .5em;
    text-transform: uppercase;
}

#pointsworth {
    font-size: 2.5em;
    line-height: initial;
    font-family: 'GTBold';
}

#leftsidebar #member_tabs a {
    color: white;
    text-transform: uppercase;
    font-size: .8em;
    line-height: unset;
    padding: .25em .7em;
    display: inline-block;
    border-top-left-radius: 5px;
    border-top-right-radius: 5px;
}

#member_tabs {
    position: relative; top: 1px;
}

#leftsidebar #member_tabs a.active {
    background: white;
    color: #e04f39;
}

.member_table {
    width: 100%;
}

.member_table tr {
    border-bottom: 1px solid #e04f39;
}

.member_table td {
    padding: .3em;
    padding-left: 0;
    font-size: .8em;
}

.member_table td:last-of-type {
    padding-right: 0;
}

.member_table thead {
    color: #e04f39;
}

.member_cardbanner {
    width: 100%;
    /*background: #f9f9f9;*/
    background: white;
    border: 1px solid #eee;
    color: #1a1a1a;
    box-shadow: 5px 5px 10px #efefef;
    margin-bottom: 1em;
    border-radius: 12px;
    padding-top: 65%;
    position: relative;
}

#wallet_banner {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url(https://balans.co.uk/wp-content/themes/balans/assets/images/strip@2x.png) no-repeat;
    background-size: contain;
    background-position: 0 15%;
    padding: 1em;
    padding-top: 45%;
}

#wallet_banner .wallet_button {
    width: 100%;
}

.barcodearea {
    height: 24%;
    width: 95%;
    padding-left: 2.5%;
    text-align: center;
    position: absolute;
    bottom: 10%;
}

.barcode {
    display: block;
    height: 100%;
    background-size: contain;
}

.food_menu_bar {
    margin-bottom:2rem;
    margin-top:7rem;
}

.smallerfont > .displaytable:not(:first-child), .accordion_inner h3:not(:first-child) {
    margin-top: 5rem !important;
}

.accordion_inner .food_group:not(:first-child) {
    margin-top: 3rem !important;
}

.food_col:not(:first-child) {
    margin-top: 4rem;
}

.accordion_group:last-child .food_col:last-child {
    border-bottom: 1px solid #1a1a1a;
    padding-bottom: 1em;
}

.restaurantopeninghours {
    white-space: nowrap;
}

/* TABLET "T" */

@media all and (min-width: 700px) {
    
    .displaytablecell.tvbottom {
        vertical-align: bottom;
    }
    .food_col:not(:first-child) {
        margin-top: 0;
    }

    .accordion_group:last-child .food_col:last-child {
        border-bottom: none;
        padding-bottom: 0;
    }

    /*.member_cardbanner {
        display: none;
    }*/
    
    .mainbutton.mobilewide {
        width:auto;
    }
    
    #members_container {
        padding: 10em 0;
    }

    #members_content {
        width: 90vw;
        max-width: 900px;
        left: 50%;
        transform: translateX(-50%);
    }
    
    .members_top_header_left {
        text-align: left;
        float: left;
    }
    
    .members_top_header_right {
        float: right;
    }

	.blogpost iframe {
		width: 100% !important;
		max-width: 100% !important;
		margin-left: 0px !important;
	}
	
	.hasnotifications #blackoverlay {
		left: auto;
	}
	.reviewtext:before,
	.reviewtext:after {
		display: inline-block;
		content: '';
		background-image: url(./assets/images/quotes.png);
		-webkit-background-size: contain;
		   -moz-background-size: contain;
		     -o-background-size: contain;
		        background-size: contain;
		background-repeat: no-repeat;
		width: 150px;
		height: 4em;
		position: absolute;
		top: -2em;
		left: -2em;
		opacity: .9;
	}
	.reviewtext:after {
		top: auto;
		left: auto;
		right: -2em;
		bottom: -2em;
		-webkit-transform: rotate(180deg);
		   -moz-transform: rotate(180deg);
		    -ms-transform: rotate(180deg);
		     -o-transform: rotate(180deg);
		        transform: rotate(180deg);
	}
	.blogpost .wp-caption.alignleft,
	.blogpost .wp-caption.alignright {
		width: 50% !important;
	}
	.blogpost .wp-caption.alignleft .wp-caption-text,
	.blogpost .wp-caption.alignright .wp-caption-text {
		margin-bottom: 1em;
	}
	.blogpost .alignleft {
		float: left;
		margin-right: 1em;
		padding-right: 1em;
	}
	.blogpost .alignright {
		float: right;
		margin-left: 1em;
		padding-left: 1em;
	}
	.notification {
		margin-top: 0;
		display: block;
		opacity: 1;
		position: relative;
		left: 120%;
		-webkit-transition: left .5s ease-in-out;
		-o-transition: left .5s ease-in-out;
		-moz-transition: left .5s ease-in-out;
		transition: left .5s ease-in-out;
	}
	.notification.inview {
		left: 0;
	}
	.notifications {
		top: auto;
		left: 57vw;
		bottom: 3vw;
		-webkit-transform: none;
		   -moz-transform: none;
		    -ms-transform: none;
		     -o-transform: none;
		        transform: none;
		width: 40vw;
	}
	p.sidebarsubtitle {
		font-size: 1.4em;
		margin-bottom: 2em;
	}
	#scrollmenu {
		display: block;
	}
	.reel_next:hover .reelbutton,
	.reel_prev:hover .reelbutton {
		background: #e04f39;
	}
	.reel_post_image:hover .full_image,
	.reel_element.mousein .full_image {
		-webkit-transform: scale(1.15);
		   -moz-transform: scale(1.15);
		    -ms-transform: scale(1.15);
		     -o-transform: scale(1.15);
		        transform: scale(1.15);
	}
	.accordion_inner {
		padding: 0 !important;
		margin: 0 !important;
		border: 0 !important;
		display: contents;
	}
	.accordion_inner>h3 {
		padding: 0;
		margin-top: -6px;
	}
	.sub_accordion.open {
		border: 0;
	}
    
	.menu_tab {
		-webkit-transition: opacity .5s ease-in-out;
		-o-transition: opacity .5s ease-in-out;
		-moz-transition: opacity .5s ease-in-out;
		transition: opacity .5s ease-in-out;
	}
	.moving .menu_tab {
		opacity: 0;
	}
	.menu_tab {
		display: none;
	}
	.menu_tab.active {
		display: block;
	}
	.dish_price {
		padding-left: 3rem;
	}
	.food_group {
		padding: 4.5rem;
		margin-bottom: 3rem;
		margin-left: 0;
		margin-right: 0;
	}
	.sub_accordion .dish {
		padding-left: 0px;
		padding-right: 0px;
	}
	.accordion_title {
		display: none;
	}
	.accordion_group {
		height: initial;
		margin-top: 0;
	}
	.food_col .accordion_group:not(:first-child) h3 {
		margin-top: 1em;
	}
	.food_group h3:first-child {
		margin-top: 0;
	}
	.mapsearch {
		top: 0;
		padding-top: 0;
		width: 50%;
		width: -webkit-fit-content;
		width: -moz-fit-content;
		width: fit-content;
		min-width: 230px;
	}
	.food_col {
		width: 33.3%;
		width: -webkit-calc(100% / 3);
		width: -moz-calc(100% / 3);
		width: calc(100% / 3);
		min-width: 33.3%;
		min-width: -webkit-calc(100% / 3);
		min-width: -moz-calc(100% / 3);
		min-width: calc(100% / 3);
		display: table-cell;
		padding-left: 3.5rem;
		padding-right: 3.5rem;
		vertical-align: top;
		float: left;
	}
	.food_col:nth-of-type(1) {
		padding-left: 0;
		padding-right: 3.5rem;
	}
	.food_col:nth-of-type(3) {
		padding-right: 0;
		padding-left: 3.5rem;
	}
	.food_col.halfcolumns {
		width: 50%;
	}
	.food_col.halfcolumns:nth-of-type(2) {
		padding-right: 0;
		padding-left: 3.5rem;
	}
	.food_group {
		padding: 3rem;
	}
	.food_line {
		margin-top: 3rem;
		margin-bottom: 3rem;
	}
	.headersocialmedia {
		display: inline-block;
	}
	#scrollmenu .headersocialmedia {
		margin-top: 1.3em;
		position: initial;
		float: right;
	}
	#scrollmenu .headersocialmedia a {
		color: #1a1a1a;
		-webkit-transition: color .25s ease-in-out;
		-o-transition: color .25s ease-in-out;
		-moz-transition: color .25s ease-in-out;
		transition: color .25s ease-in-out;
	}
	#scrollmenu .headersocialmedia a:hover {
		color: #e04f39;
	}
	.carousel .halfblock-section-content {
		padding: 10rem 5rem 18rem 5rem;
	}
	.reviews.carousel .halfblock-section-content {
		padding: 1rem 5rem 9rem 5rem;
	}
	.mainbanner .halfblock-section-content {
		padding: 10rem 5rem;
	}
	.halfblock .carousel-controls {
		-webkit-transform: none;
		   -moz-transform: none;
		    -ms-transform: none;
		     -o-transform: none;
		        transform: none;
	}
	.reviews .carousel-controls {
		-webkit-transform: translateX(-50%);
		   -moz-transform: translateX(-50%);
		    -ms-transform: translateX(-50%);
		     -o-transform: translateX(-50%);
		        transform: translateX(-50%);
	}
	.sectionimage .carousel-controls {
		display: inline-block;
	}
	header .carousel-controls {
		display: initial;
	}
	header .pagetitle {
		display: inline-block;
		white-space: nowrap;
		overflow: hidden;
		-o-text-overflow: ellipsis;
		   text-overflow: ellipsis;
		max-width: 45vw;
	}
	#wp-footer-menu:after {
		display: none;
	}
	#footer {
		text-align: left;
	}
	.flextable {
		display: -webkit-box;
		display: -webkit-flex;
		display: -moz-box;
		display: -ms-flexbox;
		display: flex;
		-webkit-box-pack: justify;
		-webkit-justify-content: space-between;
		   -moz-box-pack: justify;
		    -ms-flex-pack: justify;
		        justify-content: space-between;
	}
	.flextable div {
		height: -webkit-fit-content;
		height: -moz-fit-content;
		height: fit-content;
	}
	.spacer {
		margin-bottom: 0px;
	}
	.spacertop {
		margin-top: 0px;
	}
	#footer .menu li {
		display: block;
		margin: 0;
	}
	#footer .menu li a {
		padding-top: 2px;
		padding-bottom: 2px;
		display: inline-block;
	}
	#wp-footer-menu {
		padding-bottom: 0;
		margin-bottom: 0;
	}
	#mailing-list .formsection {
		margin-top: 0;
	}
	#sidemenu ul.menu li a {
		font-size: 3rem;
		display: inline-block;
	}
	.menuopen body {
		margin-left: -80vw;
	}
	.leftopen body {
		margin-left: 80vw;
	}
	#sidemenu {
		width: 80vw;
		right: -80vw;
	}
	#leftsidebar {
		width: 80vw;
		left: -80vw;
	}
	.sidecontainer {
		width: 80vw;
		left: -80vw;
	}
	.sidemenucontainer .logo img {
		width: 16rem;
	}
	.sectionimage img {
		margin-top: 0;
	}
	h1 {
		font-size: 3.3rem;
		padding-bottom: 3rem;
		margin-bottom: 4rem;
	}
	h3 {
		font-size: 3rem;
	}
    .food_col h3 {
        font-size: 2.4rem;
    }
	#footer h3 {
		font-size: 1em;
		margin-bottom: 4px;
		color: #e04f39;
	}
	.halfblock {
		margin-top: 0;
	}
	.leftimage+.halfblock .halfblock-section-overflow,
	.leftimage+.halfblock .halfblock-section-overflow span {
		display: none;
	}
	.leftimage+.halfblock {
		margin-top: 0;
	}
	.halfblock-section-inner {
		width: 50%;
	}
	.halfblock-section-image {
		display: inline-block;
	}
	.halfblock-section-content {
		text-align: left;
		padding: 20rem 5rem;
	}
	.halfblock-section-content p {
		max-width: 450px;
	}
	.reviews .halfblock-section-content p {
		max-width: initial;
	}
	.halfblock .carousel-controls {
		bottom: 9rem;
	}
	.halfblock.carousel {
		padding-bottom: 0;
	}
	.draftmenuitem a:before,
	.pendingmenuitem a:before {
		margin-top: 13px;
	}
	#footer .draftmenuitem a:before,
	#footer .pendingmenuitem a:before {
		margin-top: 0px;
	}
	#scrollmenu .draftmenuitem a:before,
	#scrollmenu .pendingmenuitem a:before {
		top: -6px;
		position: relative;
		margin-top: 13px;
		margin-left: -10px;
		margin-right: 10px;
		zoom: .6;
	}
}

/* SCREEN "S" */

@media all and (min-width: 1025px) {
    
    .food_menu_bar {
        margin-bottom:6rem;
        margin-top:6rem;
    }
    
    .spr label.isrequired:after, .spl label.isrequired:after {
        right: 10px;
    }
    
    #members_header {
        padding: 8rem;
        padding-bottom:0;
    }
    #members_body {
        padding: 8rem;
        padding-top:4rem;
    }

	.paddingsidemenucontainer {
		padding: 8rem;
    }
    
	.infowindowimage {
		display: block;
	}
	.venuesmap-section-vertical {
		display: table;
	}
	.iconul a {
		padding-left: 0;
		position: relative;
	}
	.iconul a:before {
		content: '';
		position: absolute;
		left: 0;
		width: 1em;
		height: 1em;
		margin-top: .2em;
		background-position: center left;
		background-repeat: no-repeat;
		-webkit-background-size: 1em 1em;
		   -moz-background-size: 1em;
		     -o-background-size: 1em;
		        background-size: 1em;
		-webkit-transition: all .25s ease-in-out;
		-o-transition: all .25s ease-in-out;
		-moz-transition: all .25s ease-in-out;
		transition: all .25s ease-in-out;
		opacity: 0;
	}
	.iconul:hover a {
		padding-left: 1.5em;
	}
	.iconul:hover a:before {
		opacity: 1;
	}
	.iconul.iconkey a:before {
		background-image: url('./assets/images/icons/key-orange.png');
	}
	#footerlogo {
		margin-bottom: 0;
	}
	.venuesmap {
		height: 100vh;
		max-height: unset;
		background: #f5f5f5;
	}
	.venuesmap-section-map-container {
		width: 50%;
		float: right;
	}
	.venuesmap-section-places {
		float: left;
		width: 50%;
		background: #f5f5f5;
		height: 100%;
		margin: 0;
	}
	.venuesmap-section-mobilecarousel {
		display: none;
	}
	.venuesmap+div.savespace {
		display: none;
	}
	.menuopen body {
		margin-left: -40vw;
	}
	.leftopen body {
		margin-left: 55vw;
	}
	#sidemenu {
		width: 40vw;
		right: -40vw;
	}
	#leftsidebar {
		width: 55vw;
		left: -55vw;
	}
	.sidecontainer {
		width: 55vw;
		left: -55vw;
	}
	.sidemenucontainer .logo img {
		width: 20rem;
	}
	#sidemenu ul.menu:hover li {
		opacity: .45;
	}
	#sidemenu ul.menu li:hover {
		opacity: 1;
	}
	.mainbutton:hover .edges span:nth-of-type(1) {
		width: 100%;
	}
	.mainbutton:hover .edges span:nth-of-type(2) {
		height: -webkit-calc(100% - 22px);
		height: -moz-calc(100% - 22px);
		height: calc(100% - 22px);
	}
	.mainbutton:hover .edges span:nth-of-type(3) {
		width: -webkit-calc(100% - 22px);
		width: -moz-calc(100% - 22px);
		width: calc(100% - 22px);
	}
	.mainbutton:hover .edges span:nth-of-type(4) {
		height: 100%;
	}
	.halfblock-section-content {
		text-align: left;
		padding: 16rem 5rem;
	}
	.mainbanner .halfblock-section-content {
		padding: 18rem 5rem 16rem 5rem;
	}
	.taller .halfblock-section-content {
		padding: 27rem 5rem;
	}
	.carousel .halfblock-section-content {
		padding: 16rem 5rem 22rem 5rem;
	}
	.carousel.taller .halfblock-section-content {
		padding: 20rem 5rem 30rem 5rem;
	}
	.reviews.carousel .halfblock-section-content {
		padding: 9rem 5rem 18rem 5rem;
	}
}

@media all and (min-width: 1500px) {
	.leftopen body {
		margin-left: 35vw;
	}
	#leftsidebar {
		width: 35vw;
		left: -35vw;
	}
	.sidecontainer {
		width: 35vw;
		left: -35vw;
	}
}