@-o-viewport { width: device-width; }
@-ms-viewport { width: device-width; zoom: 1; min-zoom: 1; user-zoom: zoom; }
@viewport { width: device-width; viewport-fit: cover; zoom: 1; min-zoom: 1; user-zoom: zoom; }

@view-transition {
	navigation: auto;
}

@font-face {
	font-family: emoji;
	src: local('Apple Color Emoji'),
		 local('Android Emoji'),
		 local('Segoe UI'),
		 local('Segoe UI Symbol'),
		 local(EmojiSymbols),
		 local(Symbola),
		 local('OpenMoji'),
		 local(emoji);
	unicode-range: U+1F300-1F5FF, U+1F600-1F64F, U+1F680-1F6FF, U+2600-26FF;
}

:root {
	--metaThemeColor: #434343;
	--metaThemeColorDarkMode: #000;
	--lightTextColor: #fff;
	--darkTextColor: #000;
	--hueTextColor: color-mix(in srgb, var(--metaThemeColor) 90%, rgba(0,0,0,0.5));
	--lightmodeBackgroundColor: #fff;
	--darkmodeBackgroundColor: #000;
	accent-color: var(--metaThemeColor);
	--DoorDashButtonColor: var(--metaThemeColor);
}

html {
	font-size: 100%;
	-webkit-text-size-adjust: 100%;
	-ms-text-size-adjust: 100%;
	text-size-adjust: none;
	-moz-osx-font-smoothing: grayscale;
	-webkit-font-smoothing: antialiased;
	-webkit-overflow-scrolling: touch;
	-ms-overflow-style: scrollbar;
	scroll-behavior: smooth;
	scrollbar-width: auto;
	scrollbar-color: var(--metaThemeColor) var(--lightmodeBackgroundColor);
	margin-top: -22px; /* ugly fix */
}

html, body {
	width: 100%;
	height: 100%;
	background-color: var(--lightmodeBackgroundColor);
    color: var(--darkTextColor);
}

body {
	-webkit-font-smoothing: antialiased;
    -ms-text-size-adjust: 100%;
    -webkit-text-size-adjust: 100%;
    -webkit-overflow-scrolling: touch;
    text-rendering: optimizeLegibility;
    background-color: var(--lightmodeBackgroundColor);
    color: var(--darkTextColor);
    font-size: 16px;
    line-height: 1.7;
	
	display: block;
	margin: 0;
	padding: 0;
	border: 0;
	width: 100%;
	height: auto;
	min-height: 100%;
	
	text-align: center;
	font-size: 110%;
	-webkit-text-size-adjust: none;
	-ms-text-size-adjust: none;
	text-size-adjust: none;
	-moz-osx-font-smoothing: grayscale;
	-webkit-font-smoothing: antialiased;
	-ms-overflow-style: scrollbar;
	-webkit-overflow-scrolling: touch;
	-ms-touch-action: auto;
	touch-action: auto;
	font-family: sans-serif, -apple-system, BlinkMacSystemFont, system-ui, 'Segoe UI', Roboto, Oxygen-Sans, Ubuntu, Cantarell, Lucida Sans, Lucida Grande, Lucida Sans Unicode, HelveticaNeue-Light, HelveticaNeue, Helvetica, Arial, Verdana, sans-serif, caption, noto, 'Segoe UI Emoji', 'Segoe UI Symbol', 'emoji', 'Apple Color Emoji','EmojiSymbols', "Apple Symbols", "Segoe UI Emoji", "Apple Color Emoji", "Noto Color Emoji", 'Symbola';
	z-index: -1;
}

.no-highlight, .no-interaction, [hidden], [disabled], :disabled {
	-ms-user-select: none;
	-moz-user-select: none;
	-webkit-user-select: none;
	-khtml-user-select: none;
	-o-user-select: none;
	user-select: none;
}

.no-interaction, [hidden], [disabled], :disabled {
	pointer-events: none;
	touch-action: none;

	nav-index: -1;
	-moz-user-focus: ignore;
	user-focus: ignore;
	-moz-user-input: none;
	user-input: none;

	interactivity: inert;
}

/* UI Toolkit */

h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.4em;
}

h5 {
    font-size: 24px;
}

hr {
	border-style: solid;
}

address {
	font-style: normal;
}

p a {
	//color: var(--metaThemeColor);
	text-decoration: none;
    border-bottom: 1px solid currentColor;
}

img, iframe, picture, video, audio, dialog {
	max-width: 98%;
	max-width: calc(100% - 4vw);
	max-width: 100%;
}

dialog {
	max-width: 98%;
	max-width: calc(100% - 4vw);
	max-width: min(calc(100% - 4vw),86%,500px);
}

::backdrop {
	background-color: rgba(0,0,0,0.9);
	background-color: rgba(25, 25, 25, 0.75);
}

.mediabox {
	display: block;
	position: relative;
    height: auto;
	width: auto;
	min-height: 300px;
    min-width: 300px;
    max-width: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	align-content: center;
	flex-direction: column;
	overflow: hidden;
	overflow: clip;
}

svg.icon, svg.icon path {
    width: 24px;
    height: 24px;
	width: 1em;
	height: 1em;
	fill: currentColor;
}

svg.icon[data-filename="resy"] {
    width: 3em;
}
/*
svg.icon[data-filename="resy"] path {
	fill: #ff462d;
}
*/
.col iframe,
.col .mediabox {
	border-radius: 4px;
}

.col .mediabox {
	overflow: hidden;
}

em {
	color: var(--metaThemeColor);
}

@keyframes openDown {
	0% {
		//transform: scaleY(0.1);
		max-height: 1em;
		display: block;
	}

	100% {
		//transform: scaleY(1);
		max-height: 100%;
		display: block;
	}
}

@keyframes fadeIn {
	0% {
		opacity: 0;
	}
	100% {
		opacity: 1;
	}
}

@keyframes imageSlider {
  0% {
    opacity:1;
  }
  17% {
    opacity:1;
  }
  25% {
    opacity:0;
  }
  92% {
    opacity:0;
  }
  100% {
    opacity:1;
  }
}

.antispam {
    display: none;
}

.button {
	font-size: 12px;
    letter-spacing: 1px;
    font-weight: 700;
    display: inline-block;
    text-transform: uppercase;
	text-decoration: none;
    padding: 10px 24px;
    color: var(--darkTextColor);
	border-width: 5px;
	border-style: solid;
	border-color: currentColor;
    background: none;
    backface-visibility: hidden;
	margin-top: 24px;
	width: auto;
	max-width: 100%;
    max-width: calc(100% - 60px);
	border-radius: 8px;
}

section .button, body > footer .button {
	background-color: var(--lightmodeBackgroundColor);
}

.button.thin {
	margin-top: 10px;
	margin-bottom: 10px;
	padding: 4px 8px;
	border-width: 4px;
}

ul.event-list {
	list-style-type: none;
	text-align: left;
	padding: 0;
    margin: 0;
}

ul.event-list > li > span.event-date {
	font-weight: bold;
}

ul.event-list > li > span.event-time {
	font-size: 0.8em;
}

ul.event-list > li > span.event-musician {
	font-size: 1.2em;
}

ul.event-list > li > .event-time::before,
ul.event-list > li > .event-musician::before {
	content: " - ";
	display: inline-block;
	margin-right: 0.2em;
	opacity: 0.5;
}

ul.hours {
	text-align: center;
	margin: 0;
    padding: 0;
}

ul.hours > li {
	display: inline-block;
}

ul.hours > li > .days {
    display: inline-block;
	width: 100%;
	font-weight: bold;
}

[data-section="hours"] .parking {
	font-size: 0.9em;
}

footer .parking {
	font-size: 0.8em;
}

[data-section="address"] > .alignr > address {
	width: 100%;
    text-align: center;
}

[data-section="address"] > .alignr > address .find-us-box {
    text-align: left;
    display: flex;
	flex-wrap: wrap;
    width: 80%;
    margin-left: auto;
    margin-right: auto;
	font-size: 24px;
    font-weight: 700;
    line-height: 1.4em;
    letter-spacing: 1px;

	align-content: center;
	justify-content: center;
	align-items: flex-start;
}

@supports (backdrop-filter: saturate(180%) blur(20px)) or (backdrop-filter: blur(20px))  or (-webkit-backdrop-filter: blur(20px)) {
	.parallax-darker .button {
		color: var(--lightTextColor);
		border-color: currentColor;
		background-color: rgba(0,0,0,0.4);
	}

	.parallax .button,
	#intro-text .button,
	header #top-nav li a,
	#intro-text ul.social-links > li[class^="social-"] > a,
	#collapsible-nav summary {
		backdrop-filter: saturate(180%) blur(20px);
		-webkit-backdrop-filter: saturate(180%) blur(20px);
	}
}

@supports ( (--a: 0)) {
	#menu-post .button {
		color: var(--lightTextColor);
		border-color: currentColor;
	}

	#menu-post .button {
		background-color: var(--metaThemeColor);
	}

	.button:hover, .button:focus, #menu-post .button:hover, #menu-post .button:focus {
		color: var(--lightTextColor);
		border-color: rgba(255,255,255,0.5);
		background-color: var(--metaThemeColor);
	}

	.button:active {
		border-color: rgba(255,255,255,0.5);
	}
}

/*
Resy
*/

.button[data-resy="true"] svg.icon[data-filename="resy"] {
	height: 1em;
	width: 2em;
	border-radius: 2px;
	margin-bottom: -0.1em;
}

.button[data-resy="true"]:hover svg.icon[data-filename="resy"] {
	fill: currentColor;
}

.button[data-resy="true"] svg.icon[data-filename="resy"], .button[data-resy="true"] svg.icon[data-filename="resy"] path {
	fill: #ff462d;
}

header #intro-text .button.sister:nth-of-type(1) {
	border-right-style: dashed;
	margin-right: -5px;
}

header #intro-text .button.sister:nth-of-type(1) ~ .button.sister:nth-of-type(2) {
	border-left-style: dashed;
	margin-left: -5px;
}

input, textarea {
	margin-bottom: 16px;
    padding: 8px;
    width: 90%;
	border-width: 2px;
	border-style: solid;
	border-color: color-mix(in srgb, var(--metaThemeColor) 40%, var(--lightmodeBackgroundColor));
	border-radius: 4px;
	font-size: 100%;
    margin: 0;
    vertical-align: baseline;
	color: color-mix(in srgb, var(--darkTextColor) 90%, #000);
    caret-color: color-mix(in srgb, currentColor 90%, #000);
}

input:focus, textarea:focus {
	border-color: var(--metaThemeColor);
	border-color: color-mix(in srgb, var(--metaThemeColor) 50%, var(--darkmodeBackgroundColor));
	outline-color: var(--metaThemeColor);
	outline-color: color-mix(in srgb, var(--metaThemeColor) 50%, var(--darkmodeBackgroundColor));
}

input::placeholder, textarea::placeholder {
	opacity: 0.5;
	font-size: 0.9em;
	color: color-mix(in srgb, var(--metaThemeColor) 50%, var(--darkTextColor));
}

.grecaptcha-badge {
	margin-top: 20px;
	width: 256px;
	height: 60px;
	display: block;
	box-shadow: var(--metaThemeColor) 0px 0px 5px;
	border-radius: 2px;
	overflow: hidden;
}

select {
  /* opt into customizing select */
	&, &::picker(select) {
		appearance: base-select;
	}

	/* set the off stage styles */
	&:not(:open)::picker(select) {
		opacity: 0;
		transform: scale(.95);
	}
	
	/* set the on stage styles */
	&:open::picker(select) {
		opacity: 1;
		transform: scale(1);
	}

  /* reset some picker styles */
  &::picker(select) {
    background: light-dark(white, var(--surface-2));
    border-radius: 4px;
    padding: 0;
    margin-block: 5px;
    box-shadow: 1px 1px 1px rgba(0,0,0,0.5);
    
    @media (forced-colors: none) {
      border: none;
    }
  }

	  /* transition the selected option changing */
  selectedcontent > * {
    transition: 
      transform 1s,
      display 1s allow-discrete, 
      opacity 1s;
    
    @starting-style {
      opacity: 0;
      transform: translateY(10px);
    }
    opacity: 1;
  }

	& option {
		display: flex;
		align-items: center;
		cursor: pointer;
		outline-offset: -1px;
		background-color: color-mix(in srgb, var(--metaThemeColor) 50%, var(--darkTextColor));
		color: var(--lightTextColor);
		
		&::checkmark {
			font-weight: bold;
		}

		&:focus-visible {
			outline-offset: -1px;
		}

		&:is(:focus, :hover) {
			background: oklch(from var(--link) l c h / 25%);
			color: inherit;
		}

		&:is(:checked) {
			background-color: color-mix(in srgb, var(--metaThemeColor) 70%, var(--darkTextColor));
			color: var(--lightTextColor);
			font-weight: bold;
		}
	}
}

/*
Mailchimp
*/

/* MailChimp Form Embed Code - Classic - 12/17/2015 v10.7 */
#mc_embed_signup form {display:block; position:relative; text-align:left; margin: 20px;}
#mc_embed_signup h2 {font-weight:bold; padding:0; margin:15px 0; font-size:1.4em;}

#mc_embed_signup .small-meta {font-size: 11px;}
#mc_embed_signup .nowrap {white-space:nowrap;}

#mc_embed_signup .mc-field-group {clear:left; position:relative; width:96%; padding-bottom:3%; min-height:50px; display:grid;}
#mc_embed_signup .size1of2 {clear:none; float:left; display:inline-block; width:46%; margin-right:4%;}

#mc_embed_signup .mc-field-group label {display:block; margin-bottom:3px;}
#mc_embed_signup .mc-field-group input {display:block; width:100%; padding:8px 0; text-indent:2%;}
#mc_embed_signup .mc-field-group select {display:inline-block; width:99%; padding:5px 0; margin-bottom:2px;}
#mc_embed_signup .mc-address-fields-group {display:flex; flex-direction:row; justify-content:space-evenly; width:96%; gap:15px;}
#mc_embed_signup .mc-sms-phone-group {display:flex; flex-direction:row; justify-content:space-evenly; width:96%; gap:15px; padding-top:5px;}

#mc_embed_signup .datefield, #mc_embed_signup .phonefield-us{padding:5px 0;}
#mc_embed_signup .datefield input, #mc_embed_signup .phonefield-us input{display:inline; width:60px; margin:0 2px; letter-spacing:1px; text-align:center; padding:5px 0 2px 0;}
#mc_embed_signup .phonefield-us .phonearea input, #mc_embed_signup .phonefield-us .phonedetail1 input{width:40px;}
#mc_embed_signup .datefield .monthfield input, #mc_embed_signup .datefield .dayfield input{width:30px;}
#mc_embed_signup .datefield label, #mc_embed_signup .phonefield-us label{display:none;}

#mc_embed_signup .indicates-required {text-align:right; font-size:11px; margin-right:4%;}   
#mc_embed_signup .clear {clear:both;}
#mc_embed_signup .foot {display:grid; grid-template-columns: 3fr 1fr; width:96%; align-items: center;}
@media screen and (max-width:400px) {#mc_embed_signup .foot {display:grid; grid-template-columns: 1fr; width:100%; align-items: center;}}

@media screen and (max-width:400px) {#mc_embed_signup .referralBadge {width:50%;}}

#mc_embed_signup .brandingLogo {justify-self:right;}
@media screen and (max-width:400px) {#mc_embed_signup .brandingLogo {justify-self:left;}}

#mc_embed_signup .mc-field-group.input-group ul {margin:0; padding:5px 0; list-style:none;}
#mc_embed_signup .mc-field-group.input-group ul li {display:block; padding:3px 0; margin:0;}
#mc_embed_signup .mc-field-group.input-group label {display:inline;}
#mc_embed_signup .mc-field-group.input-group input {display:inline; width:auto; border:none;}

#mc_embed_signup div#mce-responses {float:left; top:-1.4em; padding:0em .5em 0em .5em; overflow:hidden; width:90%; margin: 0 5%; clear: both;}
#mc_embed_signup div.response {margin:1em 0; padding:1em .5em .5em 0; font-weight:bold; float:left; top:-1.5em; z-index:1; width:80%;}
#mc_embed_signup #mce-error-response {display:none;}
#mc_embed_signup #mce-success-response {color:#529214; display:none;}
#mc_embed_signup label.error {display:block; float:none; width:auto; margin-left:1.05em; text-align:left; padding:.5em 0;}

#mc-embedded-subscribe {clear:both; width:auto; display:block; margin:1em 0 1em 5%;}
#mc_embed_signup #num-subscribers {font-size:1.1em;}
#mc_embed_signup #num-subscribers span {padding:.5em; border:1px solid #ccc; margin-right:.5em; font-weight:bold;}

#mc_embed_signup #mc-embedded-subscribe-form div.mce_inline_error {display:inline-block; margin:2px 0 1em 0; padding:3px; background-color:rgba(255,255,255,0.85); border-radius: 3px; font-size:14px; font-weight:normal; z-index:1; color:#e85c41;}
#mc_embed_signup #mc-embedded-subscribe-form input.mce_inline_error {border:2px solid #e85c41;}

.asterisk {font-size:150%; font-weight:normal; position:relative; top:5px;}
#mc_embed_signup {clear: left;}
#mc_embed_signup .helper_text { display: inline-block; font-size: 14px; font-weight: normal; opacity: 0.5; }
#mc_embed_signup .button { cursor: pointer; }

/*
DoorDash
*/

div[class^="storefront-sdk-emotion-"] {
	z-index: 10 !important;
}

/*
Social links
*/

ul.social-links {
	text-align: center;
    margin: 0;
	padding: 4px;
    font-size: 0;
    margin-top: 32px;
	list-style: none;
}

ul.social-links > li {
	display: inline-block;
    font-size: 14px;
	padding: 0;
	margin: 0;
	margin-left: 2px;
    margin-right: 2px;
}

ul.social-links > li[class^="social-"] > a {
    color: var(--metaThemeColor);
	background-color: var(--lightmodeBackgroundColor);
    text-align: center;
	position: relative;
	overflow: hidden;
    border-radius: 50%;
	border-width: 2px;
	border-style: solid;
	border-color: currentColor;
}

@media (min-resolution: 1dpi) {
	ul.social-links > li[class^="social-"] > a > svg {
		width: 70%;
		height: 70%;
		fill: currentColor;
	}

	ul.social-links > li[class^="social-"] > a > svg path {
		fill: currentColor;
	}

	
	ul.social-links > li[class^="social-"] > a {
		width: 30px;
		height: 30px;
	}

	@supports (display: flex) {
		ul.social-links > li[class^="social-"] > a {
			display: flex;
			flex-direction: column;
			flex-wrap: wrap;
			align-content: center;
			justify-content: center;
			align-items: center;
		}
	}
}

@supports ( (--a: 0)) {
	ul.social-links > li[class^="social-"] > a:hover,
	ul.social-links > li[class^="social-"] > a:focus {
		color: var(--lightTextColor);
		border-color: var(--metaThemeColor);
		background-color: var(--metaThemeColor);
	}
}

ul.social-links > li[class^="social-"] > a:active {
	border-color: rgba(255,255,255,0.5);
}

#intro-text ul.social-links > li[class^="social-"] > a {
    color: var(--lightTextColor);
    text-align: center;
	background-color: var(--darkmodeBackgroundColor);
	background-color: color-mix(in srgb, var(--darkmodeBackgroundColor) 50%, transparent);
	
	border-width: 2px;
	border-style: solid;
	border-color: currentColor;
}

@supports ( (--a: 0)) {
	#intro-text ul.social-links > li[class^="social-"] > a:hover,
	#intro-text ul.social-links > li[class^="social-"] > a:focus {
		color: var(--lightTextColor);
		border-color: var(--metaThemeColor);
		background-color: var(--metaThemeColor);
	}

	#intro-text ul.social-links > li[class^="social-"] > a:active {
		border-color: color-mix(in srgb, var(--lightTextColor) 50%, transparent);
	}
}

#intro-text ul.social-links > li[class^="social-"] > a > svg path {
	fill: currentColor;
}



.gmaps iframe {
	border-radius: 8px;
}

.parallax {
	position: relative;
    min-height: 100px;
	background-attachment: fixed;
	background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
}

.parallax:empty {
	background-color: var(--darkmodeBackgroundColor);
	height: 60vh;
}

@supports (-webkit-touch-callout: default) { /* iOS only */
	.parallax {
		background-attachment: scroll;
	}
}

.parallax-darker {
    background-color: #444444;
    background-blend-mode: overlay;
}

.parallax-darker .alignr,
.parallax-darker .alignc,
.parallax-darker .aligncc {
	background-color: color-mix(in srgb, var(--darkmodeBackgroundColor) 50%, transparent);
}

.widget-background {
	display: block;
	z-index: 0;
	z-index: -1;
	background-color: var(--lightmodeBackgroundColor);
	-webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	background-attachment: scroll;
	object-fit: cover;
	object-position: center;
	width: 100%;
	height: 100%;
	margin: 0;
	padding: 0;
	position: absolute;
	top: 0;
	left: 0;
	content-visibility: auto;
	contain: paint;
	overflow: hidden;
    overflow: clip;
}

.widget-background b {
	display: block;
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	-webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	background-attachment: scroll;
	opacity: 0.5;
}

.widget-background:not([style],[src], picture) {
    display: block;
    z-index: 0;
	background-color: var(--lightmodeBackgroundColor);
    height: 1000px;
	height: 100vh;
    margin: 0;
    margin-bottom: -1000px;
	margin-bottom: -100vh;
}

.mediabox > img,
.widget-background > img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
	position: absolute;
	top: 0;
	left: 0;
}

.parallax-darker .widget-background {
	background-color: var(--darkmodeBackgroundColor);
}

figure#specials-img-slider.widget-background {
	background-color: transparent;
}

@supports (position: sticky) or (position: -webkit-sticky) {
	.widget-background, 
	.img-slider.widget-background {
		display: block;
		z-index: 0;
		background-attachment: scroll;
		position: -webkit-sticky;
		position: sticky;
		height: 100vh;
		margin-bottom: -100vh;
	}
}

.image-space {
	display: block;
	width: 100%;
	height: 200px;
	height: 60%;
	height: 60vh;
	border: 0;
	color: transparent;
	opacity: 0;
}

.alignc {
    text-align: center;
	display: flex;
    flex-wrap: wrap;
    flex-direction: row;
    justify-content: center;
	justify-content: space-evenly;
    align-items: stretch;
    align-content: flex-start;
	row-gap: 10px;
	position: relative;
}

.alignce {
	text-align: center;
    position: relative;
    margin: 0 auto;
}

details .content .alignc {
	clear: both;
    flex-grow: 2;
    align-self: center;
    width: 100%;
	flex-direction: column;
    align-content: center;
	padding-bottom: 1em;
}

.aligncc {
	text-align: center;
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    justify-content: center;
    align-items: stretch;
    align-content: center;
    row-gap: 10px;
    position: relative;
    padding-top: 50px;
    padding-bottom: 50px;
}

.aligncs {
	display: flex;
	flex-direction: column;
	flex-wrap: wrap;
	align-content: center;
	justify-content: center;
	align-items: center;
}

.alignr {
    text-align: center;
	display: flex;
    flex-wrap: wrap;
    flex-direction: row;
    justify-content: center;
    align-items: stretch;
    align-content: flex-end;
	row-gap: 10px;
	column-gap: 20px;
	padding-top: 54px;
    padding-bottom: 54px;
	text-align: left;
	position: relative;
}

.aligns {
    text-align: center;
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    justify-content: center;
    align-items: stretch;
    row-gap: 10px;
    box-sizing: border-box;
    padding-left: 1em;
    padding-right: 1em;
}

@supports (position: sticky) or (position: -webkit-sticky) { /* Safari fix */
	.alignr,
	.alignc,
	.aligncc,
	body > footer {
		transform: translate3d(0,0,0);
	}
}

.side-by-side {
	justify-content: space-evenly;
    row-gap: 0px;
    column-gap: 0px;
    padding-top: 0px;
    display: flex;
}

.side-by-side > header {
	background-color: color-mix(in srgb, var(--darkmodeBackgroundColor) 70%, transparent);
    color: var(--lightTextColor);
    padding-top: 20px;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: auto;
    z-index: 1;
    text-align: center;
    padding-bottom: 20px;
}

.side-by-side > header > h1 {
	color: var(--lightTextColor);
	text-shadow: 2px 2px 2px rgb(0,0,0,0.9);
	margin: 0;
}

.side-by-side .mediabox {
	height: 300px;
}

.side-by-side .home-title {
	font-size: 30px;
    font-size: min(12vw,30px);
}

.side-by-side .widget-background {
	z-index: -1;
}

.side-by-side .col {
	flex-basis: 49vw;
	max-width: 49vw;
	margin: 0;
    padding: 0;
}

.side-by-side .col .home-subtitle::before {
    content: '';
    display: block;
    height: 100px;
}

.side-by-side a {
	display: inline-block;
}

@media (min-width: 992px) {
	.deal {
		width: 33.33333333%;
	}
}

@supports selector(:has(*)) {
	[data-section="gallery"] {
		display: none;
	}

	[data-section="gallery"]:has(.img-grid a.lightbox) {
		display: block;
	}

	body:has(dialog[open]) {
		overflow: hidden;
	}
}

.img-grid {
	display: grid;
	justify-items: center;
	align-items: center;
	justify-content: center;
	align-content: center;
    grid-auto-columns: 25%;
	grid-template-columns: auto auto auto auto;
	
	display: flex;
	gap: 20px;
	flex-direction: row;
	flex-wrap: wrap;
}

.img-grid a.lightbox {
	display: block;
	height: 300px;
	width: 300px;
    border-radius: 4px;
	background-color: var(--darkmodeBackgroundColor);
	overflow: hidden;
	position: relative;
}

.img-grid a.lightbox img,
.img-grid a.lightbox picture {
    height: auto;
	width: auto;
}

.img-grid a.lightbox:has(light-source) {

}

.img-grid a.lightbox[data-type="video"]::after {
    content: "Play";
	background-image: url("data:image/svg+xml, %3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 26 26'%3E%3Cpolygon class='play-btn__svg' points='9.33 6.69 9.33 19.39 19.3 13.04 9.33 6.69'/%3E%3Cpath class='play-btn__svg' d='M26,13A13,13,0,1,1,13,0,13,13,0,0,1,26,13ZM13,2.18A10.89,10.89,0,1,0,23.84,13.06,10.89,10.89,0,0,0,13,2.18Z'/%3E%3C/svg%3E ");
    background-repeat: no-repeat;
	background-size: 25% 25%;
	background-position: center;
	display: grid;
	color: transparent;
    align-content: center;
    justify-content: center;
    align-items: center;
    justify-items: center;
    text-align: center;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

@supports (object-fit: cover) {
	.img-grid a.lightbox img,
	.img-grid a.lightbox picture {
		width: 100%;
		height: 100%;
		object-position: center;
		object-fit: cover;
	}
}

.img-grid iframe {
	border-radius: 4px;
	max-width: 80%;
}

.break {
	display: block;
	clear: both;
	width: 100%;
	height: 1px;
	flex-basis: 100%;
	flex-grow: 4;
	opacity: 0;
}

.tagline-one {

}

.tagline-two {
	font-size: 24px;
	font-size: 1.36em;
    font-style: italic;
    margin-bottom: 24px;
}

.tagline-three {
	font-size: 24px;
    font-style: italic;
    margin-bottom: 24px;
}

body > main > section {

}

body > header {
	display: block;
	position: relative;
	clear: both;
	height: auto;
	min-height: 20%;
	min-height: 20vh;
    width: 100%;
	overflow-x: hidden;
    z-index: 100;
	padding: 0;
    margin: 0;
    border: 0;
	padding-top: calc(8px + 4vw);
	
	text-align: center;
}

body > header > .widget-background,
body > header > .widget-background:not([style],[src]) {
	display: none;
}

header > #logo {
	display: block;
	
	margin: 0 auto;
	margin-top: 20px;
	margin-bottom: 12px;
	
	width: 30%;
	width: 60vh;
    height: auto;

	min-width: 200px;
	min-width: min(4vw, 200px);

	min-height: 256px;

    max-width: 100%;

	max-width: 90%;
	max-width: 98%;	

	max-height: 600px;

	border: 0;
	filter: drop-shadow(12px 12px 25px rgba(0,0,0,0.5));
	clear: both;
	
	z-index: 1;
}

header > #logo[class^="bg-"] {
	border-radius: 4px;
}

header > #logo.bg-white {
	filter: drop-shadow(0px 0px 8px rgba(255,255,255,0.7));
}

header > #logo.bg-black {
	filter: drop-shadow(0px 0px 8px rgba(0,0,0,0.7));
}

header > #logo > picture,
header > #logo > picture > img,
header > #logo > svg {
	display: block;
	
	width: 100%;
	//height: 100%;
	min-height: 256px;

    max-height: inherit;
	height: 100%;
	
	max-width: 100%;
}

body > header > nav {
	contain: content;
	container-name: top-menu;
	container-type: inline-size;
	padding-top: 80px;
    padding-bottom: 50px;
}

header > nav > #top-nav {
	
	display: flex;
    flex-wrap: wrap;
    flex-direction: row;
    justify-content: center;
    align-items: stretch;
    align-content: flex-start;
	row-gap: 10px;

	padding: 0;
	padding-left: 0;
    margin-bottom: 0;
	margin-left: 0;
	
	margin: 0 auto;

    list-style: none;
	text-align: center;
	border: 0;

	background-color: transparent; /* I've no idea why but if this isn't here then this element gets a white background */
}

header > nav > #top-nav > li {
	display: inline-block;
    position: relative;
    margin-left: 32px;
	margin-left: 1vw;
    font-size: 15px;
    margin-top: 2px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
}

header > nav > #top-nav > li > a {
	color: var(--lightTextColor);
	position: relative;
    display: block;
	text-decoration: none;

	background-color: var(--metaThemeColor);
	border-color: var(--metaThemeColor);

    padding: 4px 12px;
	
    letter-spacing: inherit;
    font-size: inherit;
	margin: 0;
	
	max-width: 100%;
	max-width: 100%;
    min-height: 1em;
    padding-top: calc(0.1em + 1vh);
    padding-bottom: calc(0.1em + 1vh);
	
	background-size: cover;
    background-origin: border-box;
    background-position: center;
}

header > nav > #top-nav > li > a[aria-current="page"] {
	text-decoration-line: underline;
    text-decoration-color: rgba(255,255,255,0.4);
    text-decoration-thickness: 1px;
    text-decoration-style: dashed;
    text-decoration-skip-ink: auto;
	border-color: currentColor;
    border-style: solid;
	
	text-decoration-color: currentColor;
    text-decoration-thickness: 2px;
    text-decoration-style: solid;
	text-underline-offset: 4px;
}

header > nav > #top-nav > li > a:hover,
header > nav > #top-nav > li > a:focus {
	background-image: linear-gradient(45deg, var(--metaThemeColor), rgba(255,255,255,0.2));
	background-color: color-mix(in srgb, var(--metaThemeColor) 50%,transparent);
    -webkit-text-stroke: 1px rgba(0,0,0,0.1);
}

header > nav > #top-nav > li > a:active {
	mix-blend-mode: luminosity;
    text-shadow: 0px 0px 10px rgb(255 255 255 / 50%);
	border-width: 5px;
	border-style: solid;
	border-color: rgba(255,255,255,0.5);
}

header > nav > #top-nav > li > a.button:hover::after,
header > nav > #top-nav > li > a.button:focus::after,
header > nav > #top-nav > li > a.button:active::after {
    display: none;
    border-width: 2px;
	border-style: solid; 
	border-color: rgba(255,255,255,0.5);
    content: " ";
    position: absolute;
    z-index: -1;
    top: 0px;
    left: 0px;
    right: 0px;
    bottom: 0px;
    border-radius: 4px;
}

header > nav > #top-nav > li > a[aria-current="page"] {
	display: none;
}

header #top-note.button {
	color: var(--lightTextColor);
	border-color: currentColor;
	background-color: var(--metaThemeColor);
}

header #top-note.button:hover,
header #top-note.button:focus {
	border-color: rgba(255,255,255,0.5);
}

header span#top-note {
    display: block;
    border-radius: 24px;
    color: var(--metaThemeColor);
    background-color: var(--lightmodeBackgroundColor);
	border-width: 4px;
	border-style: solid;
	border-color: var(--metaThemeColor);
    width: max-content;
    max-width: calc(100% - 10px);
	padding: 4px;
    padding-left: 14px;
    padding-right: 14px;
    height: 2em;
    margin: 0 auto;
    position: relative;
}

header span#top-note b {
	font-weight: bolder;
	font-size: 1.1em;
}

header #top-note.button[data-event="christmas"] {
    background-color: #8f0000;
    border-color: #007b00;
    box-shadow: 0 0 40px var(--lightTextColor);
    position: relative;
}

#top-note[data-event="christmas"]::after,
#top-note[data-event="christmas"]::before {
    content: '🎁';
    display: inline-block;
    position: relative;
}

#top-note[data-event="christmas"]::after {
    right: 0;
    left: auto;
}

#top-note[data-event="christmas"]::before {
    left: 0;
    right: auto;
}

@container top-menu (max-width: 830px) {

	header nav #top-nav {
		text-align: center;
		display: flex;
		flex-wrap: wrap;
		flex-direction: column;
		justify-content: center;
		align-items: stretch;
		align-content: flex-start;
		row-gap: 10px;

		border-radius: 4px;
		
		top: 0;
	}

	header nav #top-nav li {
		margin: 0;
		width: 100%;
	}

	header nav #top-nav li a {

		letter-spacing: 2px;
		border-style: solid;

		width: calc(100% - 40px);
		display: inline-block;
	}
}

header #menu-post {
    display: block;
    position: relative;
	background-color: var(--metaThemeColor);
    padding-bottom: 26px;
	padding-top: 0px;
    width: 100%;
	min-height: 10px;
	height: auto;
	box-sizing: border-box;
}

header #menu-post hr {
	border-style: solid;
    border-color: #000;
    border-width: 2px;
    margin-top: 1.6em;
	
    border-color: transparent;
	margin: 0;
	border-width: 0;
}

header #menu-post > span[role="button"]:has(iframe) {
	display: block !important;
    margin: 0 auto;
    margin-top: 20px;
    background: transparent !important;
}

header #menu-post > span[role="button"] > iframe {
    display: block;
    color: var(--lightTextColor);
	border-style: solid !important;
	border-width: 5px !important;
	border-color: currentColor !important;
    background: none;
    min-width: 159px;
    width: auto;
    max-width: 100%;
    max-width: calc(100% - 60px);
    border-radius: 8px;
}

header #menu-post > span[role="button"] > iframe:hover,
header #menu-post > span[role="button"] > iframe:focus {
    border-color: rgba(255,255,255,0.5) !important;
}

header #notice {
	position: fixed;
	position: sticky;
	top: 0;
	left: 0;
	background: red;
    min-height: 2.3em;
    width: 100%;
    z-index: 9001;
	text-align: center;
    font-weight: bold;
    font-size: 1.25em;
    letter-spacing: 0px;
    color: white;
	margin-bottom: 0;
	
	display: none;
}

.img-slider {
	display: block;
	clear: both;
	z-index: -1;
	overflow: hidden;
	border: 0;
	margin: 0;
	padding: 0;
	position: absolute;
	top: 0;
	left: 0;
	pointer-events: none;
	user-select: none;
	touch-action: none;

	background-color: var(--metaThemeColor);
}

header > .img-slider {
	width: 100%;
	height: 100%;
}

main .img-slider:not(:has(.mediabox)),
.img-slider:empty { /* stop gap solution */
    display: none;
}

.img-slider > .mediabox {
	display: block;
	position: absolute;
    top: 0;
    left: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
}

.widget-background.img-slider > .mediabox {
	display: block;
    z-index: 0;
	height: 100vh;
	margin-bottom: -100vh;
}

.img-slider > .mediabox {
	animation-name: imageSlider;
    animation-duration: 16s;
    animation-iteration-count: infinite;
}

.img-slider > .mediabox:only-child {
	animation-name: none;
	animation-duration: 0s;
	animation-delay: 0s;
}

.img-slider > .mediabox:last-child {
    z-index: -1;
}

.img-slider > .mediabox:nth-child(1) {
	animation-delay: 8s;
}

.img-slider > .mediabox:nth-child(2) {
	animation-delay: 4s;
}

.img-slider > .mediabox:nth-child(3) {
	animation-delay: 0;
}

.img-slider > .mediabox:nth-child(4) {
	animation-delay: 12s;
}

.img-slider > .mediabox:nth-child(5) {
	animation-delay: 14s;
}

.home-subtitle {
    font-size: 16px;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 2px;
	line-height: 1.2em;
	margin: 0;
    padding: 0;
}

.home-title {
	margin: 0;
    padding: 0;
	position: relative;
    display: inline-block;
    margin-bottom: 36px;
	font-size: 54px;
	font-size: min(12vw, 54px);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.home-title::before {
    content: '';
    width: 100%;
    height: 1px;
    background-color: currentColor;
    bottom: 0;
    left: 0;
    position: absolute;
}

.home-title::after {
    content: '';
    width: 100%;
    height: 5px;
    background-color: currentColor;
    bottom: -7px;
    left: 0;
    position: absolute;
}

.center-titles {
	flex-basis: 100%;
    clear: both;
    align-self: center;
    padding-left: 4vw;
    padding-right: 4vw;
    width: calc(100% - 8vw);
	text-align: center;
}

.parallax-darker {
	color: var(--lightTextColor);
    background-color: #444444;
}

.parallax-darker .home-subtitle,
.parallax-darker .home-title {
	color: var(--lightTextColor);
}

.parallax-darker .home-title::before,
.parallax-darker .home-title::after {
	background-color: currentColor;
}

.parallax-darker h5 {
	color: var(--lightTextColor);
    letter-spacing: 1px;
}

.parallax-darker a {
	color: var(--lightTextColor);
	border-color: currentColor;
}

.find-us-box a.address-link {
	display: inline-block;
	display: inline-table;
}

.deal-box {
	padding-top: 0;
	max-width: 950px;
    margin: 0 auto;
}

.deal-box .deal {
    width: 300px;
}

.deal-box .deal svg.icon,
.deal-box .deal svg.icon path {
	width: 2.7em;
	height: 2.7em;
}

.deal-box .deal-section {
	width: 100%;
	//background-color: var(--metaThemeColor);
	//color: var(--lightTextColor);
	text-align: left;
	box-sizing: border-box;
    padding: 1em;
}

.deal-box .deal-section h5 {
	margin: 0;
}

.deal-box .deal-section .small-feature-icon,
.deal-box .deal-section .small-feature-desc {
	display: inline-block;
}

.deal-box .deal-section > .feature-deals {
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
    justify-content: flex-start;
    align-items: flex-start;
    align-content: flex-start;
    row-gap: 2px;
    column-gap: 1em;
    position: relative;
	margin: 0;
    padding: 0;
}

.deal-box .deal-section > .feature-deals > .deal {
    min-width: 200px;
    width: auto;
    border-radius: 8px;
    padding-left: 4px;
    padding-right: 4px;
    box-sizing: border-box;
}

.deal-box .deal-section > .feature-deals > .bar {
	display: inline-block;
	width: 100%;
	min-height: 1em;
}

section#food-menu {
	padding-top: 0px;
}

section#food-menu details#menu-details {
	position: relative;
}

section#food-menu details#menu-details .menu-bg,
section#food-menu details#menu-details .widget-background {
	display: block;
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	min-height: 100%;
	height: auto;
	opacity: 0.4;
	z-index: 0;
	pointer-events: none;
	background-color: var(--metaThemeColor);
}

section#food-menu details#menu-details summary {
	z-index: 1;
}

section#food-menu details#menu-details .content {
	z-index: 1;
    position: relative;
}

section#food-menu details#menu-details:not([open]) > summary::before {
    display: inline-block;
    content: "View Our ";
	top: 0;
    left: 0;
    position: relative;
    border: 0;
    margin-right: 0.2em;
}

section#food-menu details#menu-details[open] > summary::before {
    display: inline-block;
    content: "Close ";
	top: 0;
    left: 0;
    position: relative;
    border: 0;
    margin-right: 0.2em;
	transform: none;
}

section#food-menu details#menu-details[open] > summary::after {
    display: inline-block;
    content: "Close Menu";
	position: fixed;
    right: 0;
    bottom: 0;
	color: currentColor;
	font-size: 20px;
}

section#food-menu details#menu-details[open] > summary:hover::after {
	color: currentColor;
}

.button.PDFmenu {
	margin: 1em;
	position: relative;
}

.button.PDFmenu sup {
	border-radius: 4px;
    background-color: color-mix(in srgb, var(--metaThemeColor) 40%, transparent);
    padding: 0.3em;
	margin-left: 0.2em;
}

.button.PDFmenu sup:empty {
    display: none;
}

#our-menu {
	padding: 0;
    margin: 0;
	text-align: left;
    margin-top: 36px;
}

#our-menu li {
	margin: 0;
    padding: 0;
    list-style: none;
    margin-bottom: 24px;
	
    width: 80%;
	width: calc(100% - 18vw);
	margin-left: auto;
	margin-right: auto;
    text-align: center;
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    justify-content: center;
    align-items: stretch;
    align-content: stretch;
    row-gap: 25%;
    column-gap: 20px;	
}

#our-menu h2 {
	text-align: center;
	position: relative;
}

#our-menu h2::before,
#our-menu h2::after {
	content: "-";
	margin: 1em;
}

main details {
	transform-origin: 0 0;
	box-sizing: border-box;
	border-width: 1px;
    border-style: none;
    border-color: none;
	border-top-style: none;
	background-color: var(--lightmodeBackgroundColor);
	position: relative;
}

main details[open] {
	border-style: dotted;
    border-color: rgba(0,0,0,0.2);
	border-top-style: none;
}

main details summary {
	color: var(--darkTextColor);
	font-size: 32px;
    font-weight: 700;
    letter-spacing: 1px;
	text-indent: 0.3em;
	margin: 0;
    padding: 8px 24px;
	padding-top: 8px;
	padding-bottom: 8px;
	padding-left: 24px;
	padding-right: 24px;
    text-transform: uppercase;
    cursor: pointer;
    border-width: 5px;
	border-style: solid;
	border-color: currentColor;
    background-color: var(--lightmodeBackgroundColor);
	box-sizing: border-box;
	position: relative;
	border-width: 0;
}

main details summary:hover, main details summary:focus {
	color: var(--lightTextColor);
	background-color: var(--metaThemeColor);
}
		
main details[open] > summary {

}

section#food-menu details#menu-details > summary {
	display: none; //For old browsers
}

@supports selector(::marker) or selector(::-webkit-details-marker) {
	section#food-menu details#menu-details > summary {
		display: block;
	}

	details > summary::marker,
	details > summary::-webkit-details-marker {
		display: none;
		font-size: 0;
	}

	details[open] > summary::before {
		transform: rotate(90deg);
	}

	details > summary::before {
		content: '';
		border-width: 0.7rem;
		border-style: solid;
		border-color: transparent transparent transparent currentColor;
		position: absolute;
		top: 1.3rem;
		left: 1rem;
		transform: rotate(0);
		transform-origin: .2rem 50%;
	}

	details > summary:hover::before, details > summary:focus::before {
		border-color: transparent transparent transparent var(--lightTextColor);
	}
}

main #food-menu #menu-details > summary {
    border-color: var(--metaThemeColor);
    border-top-width: 1px;
    border-bottom-width: 1px;
    border-style: dotted;
}

main details .content {
	padding-top: 20px;
	padding-bottom: 10px;
	padding-left: 2vw;
	padding-right: 2vw;
    width: calc(100% - 4vw);
	
	display: flex;
    flex-wrap: wrap;
    flex-direction: row;
    row-gap: 25%;
    column-gap: 20px;
	
	justify-content: space-evenly;
    align-items: flex-start;
    align-content: flex-start;

	box-sizing: border-box;
	width: 100%;
}

section#food-menu details#menu-details > .content {
padding-top: 0;
    width: auto;
	
	display: block;

    flex-wrap: wrap;
    flex-direction: row;
    row-gap: 25%;
    column-gap: 20px;
	
	justify-content: space-evenly;
    align-items: flex-start;
    align-content: flex-start;
}

.menu-section p {
    margin: 0;
}

.menu-section aside[data-maybe-raw="true"] {
	font-size: 0.7em;
    padding-top: 20px;
    padding-bottom: 10px;
    padding-left: 2vw;
    padding-right: 2vw;
    width: calc(100% - 4vw);
}

.menu-section aside[data-maybe-raw="true"] strong {
	font-size: 1.6em;
    font-weight: normal;
}

.menu-section .menu-post {
    display: block;
    width: 48%;
	margin-bottom: 24px;
	flex-grow: 1;
}

.menu-section .menu-post .menu-post-img {
    display: block;
    float: left;
    position: relative;
    top: -5px;
}

.menu-section .menu-post .menu-post-img img {
    border-radius: 99em;
    height: 60px;
    width: 60px;
	display: block;
	vertical-align: middle;
	margin: 0;
	padding: 0;
	border: 0;
	z-index: 3;
}

.menu-section .menu-post-desc {
	position: relative;
	
	text-align: left;
	color: var(--darkTextColor);
    line-height: 1.4em;
    position: relative;
    /* margin-left: 70px; */
    padding: 0;
    display: block;

	display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-content: flex-start;
    justify-content: flex-start;
    align-items: flex-start;
}

.menu-section .menu-title,
.menu-section .menu-price {
	font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
	border-radius: 4px;
    padding-left: 0.1em;
    padding-right: 0.1em;
}

.menu-section .menu-post-desc span[data-maybe-raw="true"] {

}

.menu-section .menu-dots {
	position: relative;
	top: 0.9em;
    margin: 0;
    border: 0;
    height: 5px;
    display: block;
    background-image: radial-gradient(currentColor 40%, transparent 10%);
    background-position: 0 0;
    background-size: 4px 4px;
	background-size: 0.24em 0.24em;
    background-repeat: repeat-x;
	z-index: -1;
	
	width: fit-content;
    flex-grow: 1;
    opacity: 0.5;
}

.menu-section .menu-price {
    display: inline-block;
}

.menu-section span[itemprop="priceCurrency"][content="USD"] {
	display: inline-block;
	display: none;
}

.menu-section .menu-post-desc .menu-text {
	font-size: 14px;
    font-style: italic;
	clear: both;
	flex-grow: 3;
	flex-basis: 100%;
}

.menu-section .menu-post-desc aside[itemprop="offers"] {

}

.menu-section .menu-post-desc .menu-badge {
	border-radius: 4px;
	font-weight: bold;
	text-transform: uppercase;
	padding: 0.2em;
    font-size: 0.7em;
    text-indent: 0.3em;
	margin: 0.2em;
	border-width: 0.2em;
    border-color: #000;
    border-style: solid;
}

.menu-section .menu-post-desc .menu-badge[itemtype="https://schema.org/GlutenFreeDiet"] {
	background-color: #006272;
	border-color: #006272;
	color: #fff; //For old browsers
	color: var(--lightTextColor);
}

.menu-section .menu-post-desc .menu-badge[itemtype="https://schema.org/VeganDiet"] {
	background-color: #017f00;
	border-color: #017f00;
	color: #fff; //For old browsers
	color: var(--lightTextColor);
}

.menu-section .menu-post-desc .menu-badge[itemtype="https://schema.org/VeganDiet"]::before {
	//content: "â“¥";
	margin: 0.2em;
}

.menu-section .menu-break {
	flex-grow: 2;
    width: 100%;
    clear: both;
    min-height: 5em;
}

[data-section="specials"] .home-title {
	text-align: center;
    font-size: 38px;
	font-size: 2.2em;
	flex-basis: 100%;
	align-self: center;
	margin-top: 1em;
    margin-bottom: 1em;
}

.home-features {
    background: #f4f4f4;
    padding: 54px 0;
}

.col {
	position: relative;
    min-height: 1px;
	margin: 0;
    padding: 0;
	box-sizing: border-box;
	padding-top: 2em;
	padding-left: 2vw;
    padding-right: 2vw;
    max-width: calc(100% - 4vw);
	flex-basis: 60vh;
}

#contact .col {
	flex-basis: 60vh;
}

#private-events .col {
	flex-basis: 80vh;
}

body > footer .alignc {
	column-gap: 24vh;
}

body > footer .col {
	flex-basis: 20vw;
	min-width: 230px;
	word-break: break-word;
}

body > footer .col:has(h5:only-child) {
	display: none;
}

body > footer #footer-logo svg,
body > footer #footer-logo img,
body > footer #footer-logo picture {
	width: 20%;
    height: auto;
    min-width: 200px;
	min-width: max(4vw, 200px);
	max-width: 90%;
	margin-left: auto;
	margin-right: auto;
}

body > footer > .copyright > svg.icon {
	width: 128px;
	height: 128px;
}

address sub,
.food-menu sub {
    font-size: 11px;
}

dialog[open]::backdrop {
	opacity: 1;
}

dialog[open][hidden]::backdrop {
	opacity: 0;
}

dialog[open] {
	opacity: 1;
}

dialog[hidden] {
	display: block;
	opacity: 0;
}

dialog.lightbox {
	border-radius: 12px;
	border-width: 4px;
	border-style: solid;
	border-color: var(--darkmodeBackgroundColor);
	max-width: 86%;
	max-height: 86%;
}

dialog.lightbox > .close.button {
	position: absolute;
    top: 0.2em;
    right: 0.2em;
	float: right;
    color: var(--lightTextColor);
    margin: 0;

	z-index: 999;
	border-radius: 50%;
    padding: 4px;
    height: 2em;
    width: 2em;
    text-align: center;
    letter-spacing: normal;
    text-transform: none;
    font-size: 1em;
    line-height: 0.1;
	border-color: var(--metaThemeColor);
    background-color: var(--metaThemeColor);
}

dialog.lightbox > .close.button:hover,
dialog.lightbox > .close.button:focus {
	border-color: currentColor;
}

dialog.lightbox > article > .mediabox {
	max-height: 80vh;
    border-radius: 8px;
}

dialog.lightbox > article > iframe {
	display: block;
	width: 70vw;
	height: 70vh;
	border-radius: 12px;
	background-color: transparent;
}

div > div > iframe[title="Resy - Book Now"] {
    border-radius: 10px;
}

.copyright {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-align: center;
    margin-top: 16px;
	display: block;
	clear: both;
	width: 100%;
	position: absolute;
	padding-bottom: 20px;
	/* color: var(--metaThemeColor); */
}

.copyright[data-bump="true"] {
	padding-bottom: 94px;
	padding-bottom: calc(94px + 1.5em);
}

.copyright svg path,
.copyright svg polygon,
.copyright svg rect {
    fill: currentColor;
}

#back-to-top {
    display: block;
    padding: 1px;
    cursor: pointer;

	-webkit-text-stroke: 1px;

    position: absolute;
    position: fixed;

    bottom: 5px;
    right: 5px;
	bottom: calc(64px + env(safe-area-inset-bottom, 0px));
	right: calc(10px + env(safe-area-inset-right, 0px));
    z-index: 10;
    width: 34px;
    height: 34px;
    text-align: center;
    text-decoration: none;
	font-size: 35px;
    font-weight: bolder;
    line-height: 48px;
    border-radius: 50%;
	color: var(--lightTextColor);
    background-color: var(--metaThemeColor);
	border-width: 1px;
	border-style: solid;
	border-color: currentColor;
    box-shadow: rgba(0,0,0,0.1) 3px 3px 4px;

	display: flex;
    flex-wrap: wrap;
    align-content: center;
    justify-content: center;
    align-items: center;
}

#back-to-top > svg {
	display: block;
	width: 70%;
	height: 70%;
}

#back-to-top:hover,
#back-to-top:focus {
    border: 1px solid var(--metaThemeColor);
}

#back-to-top:active {
    border: 1px solid var(--metaThemeColor);
    line-height: 50px;
}

.order-pricing-disclaimer {
	font-size: 11px;
}

.thanksgiving-link,
.christmas-link {
	background-color: var(--lightmodeBackgroundColor);
}

.dialog-iframe .iframe #private-events .col {
	background-color: color-mix(in srgb, var(--metaThemeColor) 5%, rgba(255, 255, 255, 0.5));
	border-radius: 12px;
	margin-top: 6vh;
	padding: 4px;
}

.christmas-link {
	background-color: #ff7878;
	background-image: linear-gradient(315deg, #ff7878 0%, #74d680 74%);
	background: linear-gradient(white, white) padding-box, linear-gradient(315deg, #ff7878 0%, #74d680 74%) border-box;
	border: 5px solid transparent;
}

.christmas-link:hover,
.christmas-link:focus,
.christmas-link:active {
	background: linear-gradient(315deg, #ff7878 0%, #74d680 74%);
	text-shadow: 0px 0px 2px red;
	border-color: var(--lightmodeBackgroundColor);
}

/*
   iPhone X and other devices with strange screens
*/
@supports(padding: env(safe-area-inset-top)) {
    #menu-button {
		top: calc(12px + env(safe-area-inset-top));
		left: env(safe-area-inset-left);
    }
}

/*
	Animationsz
*/
@media not (prefers-reduced-motion: reduce) {
	body {
		scroll-behavior: smooth;
	}

	.button,
	details > summary,
	li[class^="social-"] > a {
		transition-property: color, background-color, fill, border, transform;
		transition-duration: 0.5s;
		transition-timing-function: ease-in-out;
	}

	.button svg.icon path,
	details > summary svg.icon path,
	li[class^="social-"] > a svg.icon path {
		transition-property: color, background-color, fill, border, transform;
		transition-duration: 0.5s;
		transition-timing-function: ease-in-out;
	}

	/*
		Details animations
	*/
	@supports selector(::details-content) and (interpolate-size: allow-keywords) {
		details {
			interpolate-size: allow-keywords;
		}

		::details-content {
			content-visibility: visible; /* Make it always visible */
			display: block;
			height: 0;
			padding: 0;
			margin: 0;
			border: none;
			overflow: clip;
		}
		
		[open]::details-content {
			display: block;
			height: auto;
			/* height: calc-size(auto, size + 0.5rem); *//* calc-size because we need to add a length */
		}
	}


	details {
		transition-behavior: allow-discrete;
	}

	.no-js main details[open] {
		animation-name: openDown;
		animation-duration: 0.5s;
	}
	
	@starting-style {
		main details[open] {
			max-height: 1em;
		}
	}

	details > summary::before {
		transition-duration: 0.25s;
		transition-property: transform;
		transition-timing-function: ease;
	}

	@supports selector(::details-content) {
		@starting-style {
			[open]::details-content {
				display: block;
				height: 0px;
			}
		}

		::details-content {
			transition-behavior: allow-discrete;
			transition-property: height, display;
			transition-duration: 0.5s, 0.5s;
			transition-timing-function: ease;
		}
	}

	/*
		Dialog animations
	*/
	@starting-style {
		dialog[open], dialog[open]::backdrop {
		  opacity: 0;
		}
	}
	
	dialog,
	dialog::backdrop {
		transition-property: opacity, transform, display, overlay;
		transition-duration: 1s;
		transition-timing-function: ease-out;
		transition-behavior: allow-discrete;
		opacity: 0;
	}
	
	dialog::backdrop {
		animation: none;
	}

	/*
		Scroll animations
	*/
	@supports(animation-timeline: view()) {
	}

	/*
		View Transitions
	*/

	@supports(view-transition-name: logo) {
		#logo {
			view-transition-name: logo;
		}
		
		#navigation {
			view-transition-name: navigation;
		}

		body > header {
			view-transition-name: header;
		}

		body > main {
			view-transition-name: main;
		}

		header > nav > #top-nav > li:has(a[aria-current="page"]) {
			opacity: 0;
			height: 0;
			width: 0;
			transform: scale3d(0, 0, 0);
			font-size: 0;
			padding: 0;
			border-width: 0;
			overflow: hidden;
		}

		header > nav > #top-nav > li > a[aria-current="page"] {
			display: block;
			opacity: 0;
			height: 0;
			width: 0;
			transform: scale3d(0, 0, 0);
			font-size: 0;
			padding: 0;
			border-width: 0;
			overflow: hidden;
		}
	}
}

/*
	PWA
*/
@media all and (display-mode: standalone) {
	html,
	body {
		-ms-scroll-chaining: none;
		overscroll-behavior: contain;
	}
}