.shared-detail {
	--font-family-display: var(--font-display);
	--font-family-body: var(--font-body);
	--background-color: var(--gray-100);
	--background-color-alt: var(--gray-200);
	--text-color: var(--black);
	--text-color-alt: var(--gray-100);
	--visit-btn-bg: var(--sw-button-primary-bg);
	--visit-btn-bg-alt: var(--sw-button-primary-bg-hover);
	--dropdown-menu-text: var(--gray-800);
	--nearby-tab-bottom-border: var(--sw-selected-color);
	--nearby-tab-bottom-border-alt: var(--gray-400);
	--accent-color: var(--sw-key-color);
	--sw-text-color: var(--black);
	margin: 0 auto;
	max-width: 1280px;
	padding: 21px 0 0;
}

.shared-detail .leo-content > * {
	padding-inline: 20px;
	
}

@media (min-width: 40em) {
	.shared-detail .leo-content > * {
		padding-inline: 0;
	}
}

.sv-share {
	display: none; /* Hide the share button before its added onto page */
}

.shared-detail .sv-share {
	display: block;
}

.shared-detail .detail-top {
	display: grid;
	grid-template-columns: minmax(0, 1fr);
	margin-bottom: 40px;
	padding-inline: 20px;
}

@media (min-width: 40em) {
	.shared-detail .detail-top {
		gap: 24px;
		margin-bottom: 50px;
		padding-inline: 0;
	}
}

@media (min-width: 64em) {
	.shared-detail .detail-top {
		grid-template-columns: repeat(2, minmax(0, 1fr));
		gap: 30px;
		margin-bottom: 98px;
	}
}

.shared-detail .detail-top .detail-gallery {
	order: 1; /* Always want gallery coming first on mobile */
	position: relative;
	flex: 1 1 50%;
}

.shared-detail .detail-top .detail-gallery .glide__track {
	--border-radius: 20px 75px 20px 20px;
	aspect-ratio: 1 / 1;
	border-radius: var(--border-radius);
	overflow: hidden;
}

@media (min-width: 40em) {
	.shared-detail .detail-top .detail-gallery-cont .glide__track {
		border-radius: 20px 100px 20px 20px;
	}
}

.shared-detail .detail-top .detail-gallery .glide__arrows {
	position: absolute;
	top: 50%;
	width: 100%;
	translate: 0 -68%;
	display: flex;
	justify-content: space-between;
	pointer-events: none;
}

.shared-detail .detail-top .detail-gallery .glide__arrow {
	pointer-events: all;
	margin:  20px;
}

@media (min-width: 40em) {
	.shared-detail .detail-top .detail-gallery .glide__arrow {
		margin:  27px;
	}
}

.shared-detail .detail-top .detail-gallery img { 
	width: 100%;
    height: 100%;
    object-fit: cover;
}

.shared-detail .detail-top .detail-gallery iframe { 
	position: absolute;
	top: 0; 
}

.shared-detail .detail-top .detail-gallery-cont .gallery-count {
	position: absolute;
	width: 40px;
	aspect-ratio: 1;
	display: grid;
	place-items: center;
	background-color: var(--blue);
	left: 0;
	top: 0;
	pointer-events: none;
	border-radius: 10px 0;
}

.shared-detail .detail-top .detail-gallery-cont .gallery-count img {
	width: 24px;
	height: 24px;
}

.shared-detail .detail-top .detail-gallery-cont .pagination-text {
	color: var(--black);
	font-family: var(--font-body);
	font-weight: var(--font-weight-bold);
	letter-spacing: 0.02em;
	font-size: 1.25rem;
	min-height: 1em;
	width: fit-content;
	margin-left: auto;
	padding: 9px 24px 0;
	line-height: 1;
}

@media (min-width: 40em) {
	.shared-detail .detail-top .detail-gallery-cont .pagination-text {
		padding-top: 14px;
		min-height: unset;
	}

	.shared-detail .detail-top .detail-gallery-cont .pagination-text:empty {
		padding-top: 0;
	}
}

.shared-detail .detail-top .offer-type {
	font-weight: var(--font-weight-bold);
	color: var(--black);
}

.shared-detail .detail-top .info-section {
	display:  grid;
	gap: 18px;
	align-content: start;
}

@media (min-width: 40em) {
	.shared-detail .detail-top .info-section {
		gap: 20px;
	}
}

@media (min-width: 64em) {
	.shared-detail .detail-top .info-section {
		padding: 0;
	}
}

@media (min-width: 80em) {
	.shared-detail .detail-top .info-section {
		padding: 0 0 0 65px;
	}
}

.shared-detail .detail-top .info-section .top-actions,
.shared-detail .detail-top .info-section .bottom-actions {
	display: flex;
	align-items: center;
	position: relative;
}

.shared-detail .detail-top .info-section .bottom-actions {
	flex-direction: column;
	align-items: flex-start;
	flex-wrap: wrap;
	gap: 30px;
}

@media (min-width: 40em) {
	.shared-detail .detail-top .info-section .bottom-actions {
		flex-direction: row;
		align-items: center;
	}
}

.shared-detail .detail-top .info-section .top-actions {
	gap:  15px;
	height: 40px;
}

@media (min-width: 40em) {
	.shared-detail .detail-top .info-section .top-actions {
		gap:  20px;
	}
}

.shared-detail .detail-top .info-section .sv-share {
	padding: 0;
}

.shared-detail .detail-top .info-section .sv-share-trigger {
	position: relative;
	padding: 0;
	width: 40px;
	aspect-ratio: 1;
	display: inline-block;
	background-color: unset;
}

.shared-detail .detail-top .info-section .sv-share-trigger :is(span, i) {
	display: none;
}

.shared-detail .detail-top .info-section .sv-share-trigger:after {
	content: '';
	position: absolute;
	inset: 0;
	background-image: url(/includes/client_public/assets/shared/icons/share-lg-blue.svg);
	pointer-events: none;
	background-size: 100%;
}

.shared-detail .menu-item-name,
.shared-detail .menu-group,
.shared-detail .heading-medium,
.shared-detail .heading-large {
	font-family: var(--font-family-body);
	font-size: calc(40rem/16);
	font-weight: var(--font-weight-bold);
	line-height: 1.2;
    color: var(--black);
	letter-spacing: .02em;
}

.shared-detail .heading-medium {
	font-size: calc(30rem/16);
}

.shared-detail .menu-group {
	font-size: calc(20rem/16);
}

.shared-detail .menu-item-name {
	font-size: 1rem;
	line-height: 1.5;
}

@media (min-width: 40em) {
	.shared-detail .heading-large {
		font-size: calc(50rem/16);
	}

	.shared-detail .heading-medium {
		font-size: calc(40rem/16);
	}

	.shared-detail .menu-group {
		font-size: calc(30rem/16);
	}

	.shared-detail .menu-item-name {
		font-size: calc(20rem/16);
	}
}

@media (min-width: 64em) {
	.shared-detail .heading-large {
		font-size: calc(60rem/16);
	}
}

.shared-detail dl,
.shared-detail dt,
.shared-detail dd {
	font-family: var(--font-family-body);
	font-size: var(--text-lg);
	font-weight: 400;
	line-height: var(--leading-relaxed);
    color: var(--text-color);
}

.shared-detail dl dt {
	float: left;
	margin-right: var(--space-1);
	font-weight: bold;
}

.shared-detail .detail-top .action-item {
	font-family: var(--font-family-body);
	font-size: var(--text-base);
	font-weight: 400;
	line-height: var(--leading-tight);
	padding: var(--space-2) var(--space-8);
	background-color: var(--visit-btn-bg);
	color: var(--text-color-alt);
	border-radius: var(--rounded-full);
	margin: 0;
}

.shared-detail .detail-top .info-section .bottom-actions .button-default {
	padding: 12px 17px 9px;
}

@media (hover: hover) {
	.shared-detail .detail-top .info-section .bottom-actions .action-item:hover {
		text-decoration: none; /*reboot.css override*/
		background-color: var(--visit-btn-bg-alt);
	}
}

@media (min-width: 40em) {
	.shared-detail .detail-top .info-section .bottom-actions .button-default {
		padding: 15px 26px 14px;
		font-size: 1.25rem;
	}
}

.shared-detail .detail-top .info-section .bottom-actions .dropdown-menu {
	position: absolute;
	z-index: 9;
	margin: var(--space-1) 0 0 0;
	padding: var(--space-3) var(--space-4);
	color: var(--dropdown-menu-text);
	background-color: var(--background-color);
	border: 1px solid rgba(0,0,0,.15);
	border-radius: 4px;
	font-size: 14px;
}

@media (min-width: 20em) and (max-width: 30em) {
	.shared-detail .detail-top .info-section .bottom-actions .dropdown:nth-child(2) > .dropdown-menu {
		right: 0;
	}
}

@media (min-width: 40em) and (max-width: 60em) {
	.shared-detail .detail-top .info-section .bottom-actions .dropdown:nth-child(2) > .dropdown-menu {
		right: 0;
	}
}

@media (min-width: 64em) and (max-width: 68em) {
	.shared-detail .detail-top .info-section .bottom-actions .dropdown:nth-child(2) > .dropdown-menu {
		right: 0;
	}
}

.shared-detail .detail-top .info-section .bottom-actions .dropdown-menu a {
	display: block;
	width: 100%;
	padding: var(--space-2) 0;
	clear: both;
	white-space: nowrap;
}

.shared-detail .trip-builder .tb-button {
	padding: 0;
	background-color: unset;
}

.shared-detail .trip-builder .tb-button.view {
	margin-left: var(--space-2);
}

.shared-detail .sv-share-popover [data-sv-social-share] {
	--anchor-right: 0
}

.shared-detail .leo-content {
	max-width: 100%;
}

.shared-detail .video {
	margin-bottom: 60px;
}

.shared-detail .video-inner {
	max-width: 832px;
	height: 360px;
	margin: 0 auto;
	border-radius: 20px;
	overflow: hidden;
}

.shared-detail .video-inner .widen-video {
	object-fit: cover;
	height: 100%;
	width: 100%;
}

@media (min-width: 40em) {
	.shared-detail .video {
		margin-bottom: 80px;
	}

	.shared-detail .video-inner {
		height: unset;
		aspect-ratio: 584 / 329;
	}
}

@media (min-width: 64em) {
	.shared-detail .video {
		margin-bottom: 120px;
	}
}

.shared-detail .leo-content ul:not(.tags) {
	list-style-type: '◦';
	padding-left: 14px;
	display: grid;
	gap: 10px;
	margin-bottom: 10px
}

.shared-detail .leo-content :where(li:not(.tags li)) {
	display: flex;
	justify-content: space-between;
	--value-width: 70px;
	--value-padding: 8px;
	padding-left: 8px;
	position: relative;
}

.shared-detail .leo-content li .value {
	position: relative;
	display: inline-block;
	right: 0;
}

@media (min-width: 40em) {
	.shared-detail .leo-content ul:not(.tags) {
		padding-left: 16px;
		margin-bottom: 19px;
	}

	.shared-detail .leo-content :where(li:not(.tags li)) {
		--value-width: 98px;
	}
}

.shared-detail .leo-content :where(p, li:not(.tags li)) {
	font-size: 1rem;
	line-height: 1.5;
	letter-spacing: 0.02em;
	font-family: var(--font-body);
	font-weight: var(--font-weight-normal);
	color: var(--black);
}

.shared-detail .leo-content .heading-medium {
	margin-bottom: 12px;
}


@media (min-width: 40em) {
	.shared-detail .leo-content .heading-medium {
		margin-bottom: 19px;
	}
}

@media (min-width: 64em) {
	.shared-detail .leo-content .heading-medium {
		margin-bottom: 21px;
	}
}

.shared-detail .description-outer:not(:last-child) {
	margin-bottom: 24px;
}

@media (min-width: 40em) {
	.shared-detail .description-outer:not(:last-child) {
		margin-bottom: 30px;
	}
}

.shared-detail .description-outer.no-toggle .read-more,
.shared-detail .description-outer:is(.expanded, .no-toggle) .short,
.shared-detail .description-outer .long,
.shared-detail .description-outer.expanded .more,
.shared-detail .description-outer .less {
	display: none;
}

.shared-detail .description-outer.expanded .less {
	display: inline;
}

.shared-detail .description-outer:is(.expanded, .no-toggle) .long {
	display: block;
}

.shared-detail .description-outer .read-more {
	font-family: var(--font-display);
	background-color: transparent;
	color: var(--blue);
	text-transform: uppercase;
	font-size: 1rem;
	letter-spacing: 0.02em;
	padding: 0;
	line-height: 1;
	margin-top: 12px;
	display: inline-block;
}

.shared-detail .description-outer .read-more i {
	margin-left: 5px;
	font-size: 0.9rem;
	translate: 0 -1px;
	transition: rotate var(--transition-appendix);
	display: inline-block;
}

.shared-detail .description-outer.expanded .read-more i {
	rotate: 180deg;
}

.shared-detail .detail-columns {
	display: grid;
	gap: 26px;
	margin-bottom: 50px;
}

.shared-detail.offers .detail-columns {
	margin-bottom: 60px;
}

.shared-detail .detail-columns .right {
	display: grid;
	align-content: start;
	gap: 18px;
}

.shared-detail .group-name {
	font-weight: var(--font-weight-bold);
	font-size: 1rem;
	line-height: 1.5;
	letter-spacing: 0.02em;
	font-family: var(--font-body);
	margin-bottom: 10px;
}

@media (min-width: 40em) {
	.shared-detail .detail-columns {
		gap: 38px;
		margin-bottom: 60px;
	}

	.shared-detail.offers .detail-columns {
		margin-bottom: 80px;
	}

	.shared-detail .detail-columns .right {
		gap: 21px
	}

	.shared-detail .leo-content :where(p, li:not(.tags li)) {
		font-size: 1.25rem;
	}

	.shared-detail .description-outer .read-more {
		font-size: calc(22rem/16);
		margin-top: 23px;
	}

	.shared-detail .description-outer .read-more i {
		translate: 0 -2px;
	}

	.shared-detail .group-name {
		font-size: 1.25rem;
		margin-bottom: 20px;
	}
}

@media (min-width: 64em) {
	.shared-detail .detail-columns {
		display: grid;
		grid-template-columns: repeat(2, minmax(0, 1fr));
		gap: 80px;
		margin-bottom: 40px;
	}

	.shared-detail.offers .detail-columns {
		margin-bottom: 60px;
	}

	.shared-detail .detail-columns > *:only-child {
		grid-column: span 2;
	}
}

.shared-detail .meeting-rooms {
	margin-bottom: 60px;
}

.shared-detail .meeting-rooms .heading-large {
	margin-bottom: 40px;
}

.shared-detail .meeting-rooms h5 {
	font-family: var(--font-body);
	font-size: 1.25rem;
	line-height: 1.2;
	letter-spacing: 0.02em;
	font-weight: var(--font-weight-bold);
	margin-bottom: 10px;
}

.shared-detail .meeting-rooms .rooms {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(275px, 1fr));
	gap: 30px;
}

.shared-detail .meeting-rooms .room {
	box-shadow: 0px 0px 10px 2px rgba(0, 0, 0, 0.20);
	border-radius: 12px;
	padding: 39px 16px 40px;
}

.shared-detail .meeting-rooms ul.meeting-subtab {
	padding-inline: 8px;
	margin-bottom: 0;
}

.shared-detail .meeting-rooms li {
	--value-width: 58px;
	font-size: calc(14rem/16);
	line-height: 1.5;
}

@media (min-width: 40em) {
	.shared-detail .meeting-rooms {
		margin-bottom: 80px;
	}

	.shared-detail .meeting-rooms .heading-large {
		margin-bottom: 60px;
	}

	.shared-detail .meeting-rooms h5 {
		font-size: calc(30rem/16);
	}

	.shared-detail .meeting-rooms .meeting-subtab li {
		font-size: 1rem;
	}
}

@media (min-width: 64em) {
	.shared-detail .meeting-rooms {
		margin-bottom: 120px;
	}
}

.shared-detail .offers-and-events {
	margin-bottom: 60px;
}

.shared-detail .offers-and-events .heading-large {
	margin-bottom: 40px;
}

.shared-detail .offers-and-events .offers-and-events-grid {
	display: grid;
	gap: 30px;
	grid-template-columns: repeat(auto-fill, minmax(277px, 1fr));
}

.shared-detail .offers-and-events .item {
	box-shadow: 0px 0px 10px 2px rgba(0, 0, 0, 0.20);
	border-radius: 12px;
	overflow: hidden;
}
.shared-detail .offers-and-events .item .img-cont {
	margin: unset;
	min-height: 220px;
	overflow: hidden;
}

.shared-detail .offers-and-events .thumb {
	object-fit: cover;
	height: 100%;
	width: 100%;
}
.shared-detail .offers-and-events .item .inner {
	display: grid;
	height: 100%;
	grid-template-rows: auto minmax(0, 1fr);
}

.shared-detail .offers-and-events .item .content-section {
	padding: 40px 16px;
	height: 100%;
	display: grid;
}

.shared-detail .offers-and-events .item .content-section-inner {
	display: grid;
	gap: 20px;
	align-content: start;
	justify-items: start;
	margin-bottom: 20px;
}

.shared-detail .offers-and-events .item h4 {
	font-family: var(--font-body);
	font-weight: var(--font-weight-bold);
	line-height: 1.2;
	font-size: 1.25rem;
	letter-spacing: 0.02em;
	color: var(--black);
}

.shared-detail .offers-and-events ul.info-list {
	padding: 0;
}

.shared-detail .offers-and-events ul.info-list li {
	align-items: center;
	font-size: 1rem;
	line-height: 1;
	font-weight: var(--font-weight-bold);
	gap: 10px;
	padding: 0;
}

.shared-detail .offers-and-events ul.info-list li img {
	translate: 0 -1px;
	flex-shrink: 0;
}

.shared-detail .offers-and-events .slide-footer {
	align-self: end;
}

@media (min-width: 40em) {
	.shared-detail .offers-and-events {
		margin-bottom: 80px;
	}

	.shared-detail .offers-and-events .heading-large {
		margin-bottom: 60px;
	}

	.shared-detail .offers-and-events .item h4 {
		font-size: calc(30rem/16);
	}
}

@media (min-width: 64em) {
	.shared-detail .offers-and-events {
		margin-bottom: 120px;
	}
}

.shared-detail .map-cont {
	margin-bottom: 60px;
	padding-inline: 0;
}

.shared-detail .map-cont:last-child {
	margin-bottom: 30px;
}

.shared-detail .map-cont .heading-large {
	text-align: center;
	margin-bottom: 30px;
}

.shared-detail .gMapHolder { 
	height: 500px; 
}


@media (min-width: 40em) {
	.shared-detail .map-cont {
		margin-bottom: 80px;
	}
	
	.shared-detail .map-cont:last-child {
		margin-bottom: 40px;
	}

	.shared-detail .map-cont .heading-large {
		margin-bottom: 40px;
	}

	.shared-detail .map-cont .gMapContainer {
		border-radius: 12px;
		overflow: hidden;
	}
}

@media (min-width: 64em) {
	.shared-detail .map-cont {
		margin-bottom: 90px;
	}

	.shared-detail .map-cont:last-child {
		margin-bottom: 30px;
	}

	.shared-detail .gMapHolder { 
		height: 640px; 
	}
}

.shared-detail .detail-info-bar {
	max-width: 1200px;
	margin: 0 auto var(--space-8);
	padding: var(--space-5);
	display: none;
}

.shared-detail .detail-info-bar .split-pane {
	margin-bottom: var(--space-4);
}

.shared-detail .detail-info-bar .split-pane:empty {
	display: none;
}

.shared-detail .detail-info-bar .split-pane:last-child {
	margin-bottom: 0;
}

.shared-detail ul.info-list {
	color: var(--black);
	font-family: var(--font-family-body);
	font-weight: var(--font-weight-bold);
	font-size: 1rem;
	line-height: 1;
	margin: 0;
	list-style: none;
	letter-spacing: .02em;
}

.shared-detail ul.info-list a {
	color: var(--black);
	text-decoration: underline;
}

.shared-detail ul.info-list a:hover {
	text-decoration: none;
}

.shared-detail ul.info-list li {
	display: flex;
	align-items: baseline;
	margin-bottom: 10px;
}

.shared-detail ul.info-list li > div {
	display: flex;
	align-items: baseline;
	gap: 10px;
}

.shared-detail ul.info-list li .location-wrapper {
	line-height: 1.4;
}

.shared-detail ul.info-list li > div > img {
	translate: 0 6px;
	min-width: 24px;
	min-height: 24px;
}

.shared-detail ul.info-list li:last-child {
	margin-bottom: 0;
}

.shared-detail ul li .two-line-wrap {
	display: block;
}

.shared-detail ul li .two-line-wrap > * {
	display: block;
	line-height: 1.4;
}

.shared-detail ul li .two-line-wrap a {
	display: inline-block;
	text-decoration: underline;
}

.shared-detail ul li .two-line-wrap a:hover {
	text-decoration: none;
}

.shared-detail .detail-info-bar ul li .meta-label {
	margin-right: var(--space-1);
	font-weight: bold;
}

.shared-detail .detail-info-bar ul.info-list li i {
	margin-right: var(--space-1);
    width: 18px;
	font-size: var(--text-base);
	color: var(--accent-color);
}

.shared-detail .detail-info-bar ul.info-list li:hover a {
	text-decoration: none; /*reboot.css override*/
}

.shared-detail dl,
.shared-detail dt,
.shared-detail dd {
	font-family: var(--font-family-body);
	font-size: var(--text-lg);
	font-weight: 400;
	line-height: 1.5;
	color: var(--text-color);
	letter-spacing: .02em;
}

.shared-detail dl dt {
	float: left;
	margin-right: var(--space-1);
	font-weight: bold;
}

.shared-detail .detail-info-bar .open-table {
	margin-bottom: var(--space-3);
}

.shared-detail .social-icons {
	display: flex;
	list-style: none;
	margin-left: 0;
	gap: 15px;
	margin-bottom: 18px;
}

.shared-detail .social-icons li {
	font-size: 1.25rem;
	margin-bottom: 0;
}

.shared-detail .social-icons a {
	font-size: var(--text-xl);
	color: var(--blue);
	transition: color var(--transition-appendix);
}

@media (hover: hover) {
	.shared-detail .social-icons a:hover {
		color: var(--blue-dark);
	}
}

@media (min-width: 40em) {
	.shared-detail .social-icons {
		margin-bottom: 15px;
	}
}

.shared-detail .detail-info-bar ul.hours-of-operation li {
	margin-bottom: 0;
	justify-content: space-between;
}

.shared-detail .detail-info-bar ul.hours-of-operation li.current {
	font-weight: 700;
}

.shared-detail .detail-drawers {
	max-width: 1160px;
	margin: 0 auto;
	margin-bottom: var(--text-xl);
}

@media (min-width: 40em) {
	.shared-detail .detail-drawers {
		margin-bottom: var(--space-20);
	}
}

.shared-detail .detail-drawers .drawer > .content {
	display: none;
	padding: var(--space-5);
}

.shared-detail .detail-drawers .drawer.active > .content {
	display: block;
}

.shared-detail .detail-drawers .drawer-button {
	display: flex;
    align-items: center;
    justify-content: flex-start;
	background-color: var(--background-color);
	padding: var(--space-5);
	margin-bottom: var(--space-3);
	width: 100%;
	font-family: var(--font-family-body);
	font-size: var(--text-2xl);
	font-weight: 700;
	line-height: var(--leading-none);
}

.shared-detail .detail-drawers .drawer-button i {
	margin-left: var(--space-4);
	font-size: var(--text-lg);
}

.shared-detail .detail-drawers .social-cont {
	max-width: 300px;
	margin: 0 auto;
}

.shared-detail .detail-drawers .social-cont .social-title {
	font-size: var(--text-xl);
	font-weight: bold;
	margin-bottom: var(--space-5);
}

.shared-detail .detail-drawers .social-cont .tweet {
	display: flex;
	margin-bottom: var(--space-5);
}

.shared-detail .detail-drawers .social-cont .buddy-icon {
	width: 48px;
	margin-right: var(--space-3);
}

.shared-detail .detail-drawers .social-cont .buddy-icon img {
	border-radius: var(--rounded-circle);
}

.shared-detail .detail-drawers .social-cont .tweet-text {
	flex: 1;
}

.shared-detail .detail-drawers .social-cont .date {
	font-weight: bold;
}

.shared-detail .detail-drawers .social-cont .actions {
	display: flex;
	justify-content: space-between;
	margin-top: var(--space-1);
}

.shared-detail .social-cont.twitter-cont {
	max-height: 850px;
	overflow-y: auto;
}

@media (min-width: 40em) {
	.shared-detail {
		margin: 0 auto;
		padding-inline: 80px;
		padding-top: 40px;
	}

	.shared-detail .detail-info-bar {
		display: flex;
		padding: var(--space-20) 0;
		margin-bottom: 0;
	}

	.shared-detail .detail-info-bar .split-pane {
		margin-bottom: 0;
		padding: 0 var(--space-5);
		flex: 1;
	}
	
	.shared-detail .detail-drawers .drawer > .content {
		padding: var(--space-10) var(--space-16);
	}
	
	.shared-detail .detail-drawers .drawer-button {
		padding: var(--space-5) var(--space-16);
		margin-bottom: var(--space-3);
	}

	.shared-detail .detail-drawers .social-cont {
		flex: 1;
		max-width: 500px;
	}
}

@media (min-width: 40em) and (max-width: 64em) {
	.shared-detail .detail-info-bar .hours-of-operation li {
		display: block;
	}
	
	.shared-detail .detail-info-bar .hours-of-operation li span.day {
		display: flex;
		width: auto;
		padding-right: 5px;
	}
}

@media (min-width: 64em) {
	.shared-detail .detail-drawers .active #socialFeedsTab {
		display: flex;
		justify-content: space-between;
	}

	.shared-detail .detail-drawers #socialFeedsTab > div {
		flex: 1;
	}

	.shared-detail .detail-drawers .social-cont .tweets {
		max-height: 800px;
		overflow-y: auto;
		padding-right: var(--space-4);
	}
}

.whats-nearby {
	padding: 0;
}

.whats-nearby .wrapper {
	padding: var(--space-10) 0;
	background-color: var(--background-color);
	border-top: 4px solid var(--background-color-alt);
}

@media (min-width: 40em) {
	.whats-nearby .wrapper {
		padding: var(--space-20) 0;
	}
}

.whats-nearby .wrapper > .inner {
	margin: 0 auto;
	padding: 0 var(--space-5);
	max-width: var(--width-base);
}

.whats-nearby .section-title {
	margin: 0 auto;
	margin-bottom: var(--space-6);
	padding: 0 var(--space-5);
	max-width: var(--width-base);
	font-family: var(--font-family-display);
	font-size: var(--text-3xl);
	font-weight: 700;
	line-height: var(--leading-tight);
}

.whats-nearby .tab-group {
	display: flex;
	margin: 0 auto;
	margin-bottom: -4px;
	padding: 0 var(--space-5);
	max-width: var(--width-base);
	overflow-x: auto;
	scroll-snap-type: x mandatory;
}

.whats-nearby .tab {
	margin: 0;
	padding: var(--space-4) var(--space-8);
	color: currentColor;
	background: transparent;
	border-top: 4px solid transparent;
	border-bottom: 4px solid transparent;
	white-space: nowrap;
	scroll-snap-align: start;
}

.whats-nearby .tab[aria-expanded="true"] {
	border-bottom-color: var(--nearby-tab-bottom-border);
}

@media (hover: hover) {
	.whats-nearby .tab:hover {
		border-bottom-color: var(--nearby-tab-bottom-border-alt);
	}	
}

.whats-nearby .tab-pane {
	display: block;
	margin: 0;
	width: 100%;
}

.whats-nearby .layoutjs .content {
	margin: 0;
	padding: 0;
}

.shared-detail .detail-drawers .drawer.active > .content > div > div {
	margin-bottom: var(--space-5);
}

.shared-detail .detail-drawers .drawer.active > .content > div > div .content-section h4 a,
.shared-detail .detail-drawers .drawer.active > .content > div > div .content-section h4 {
	font-family: var(--font-body);
	font-size: var(--text-xl);
	font-weight: 700;
	line-height: var(--leading-relaxed);
	color: inherit;
	margin-bottom: var(--space-2);
	word-break: break-word;
}

.shared-detail .detail-drawers .drawer.active > .content > div > div .inner {
	max-width: var(--width-compact);
}

.shared-detail .detail-drawers .drawer.active > .content > div > div .img-cont {
	margin-bottom: var(--space-2);
}

@media (min-width: 64em) {
	.shared-detail .detail-drawers .drawer.active > .content > div > div .inner {
		max-width: unset;
	}

	.shared-detail .detail-drawers .drawer.active > .content > div > div .img-cont {
		margin-bottom: 0;
	}
}

/*----- yelp snippet -----*/

.shared-detail .yelp-snippet {
	margin-bottom: 8px;
}

.shared-detail .yelp-snippet .yelp-top {
	display: flex;
	align-items: center;
	gap: 8px;
}

.shared-detail .yelp-snippet .yelp-logo {
	order: -1;
	width: 60px;
}

.shared-detail .yelp-snippet .yelp-bottom {
	font-size: var(--text-xs);
	color: var(--gray-700);
}

@media (min-width: 64em) {
	.shared-detail .yelp-snippet {
		margin-bottom: 26px;
	}

	.shared-detail .yelp-snippet .yelp-logo {
		width: 70px;
	}

	.shared-detail .yelp-snippet .yelp-bottom {
		font-size: var(--text-sm);
	}
}

/*----- yelp reviews -----*/

.shared-detail #yelpTab .reviews-provider-header {
	display: flex;
	align-items: center;
	gap: 12px;
}

.shared-detail #yelpTab .reviews-rating-line-text {
	font-size: var(--text-xs);
	color: var(--gray-700);
}

.shared-detail #yelpTab h4 {
	font-family: var(--font-display);
	font-weight: bold;
	font-size: var(--text-2xl);
	line-height: 1.1;
	color: var(--black);
}

.shared-detail #yelpTab .review {
	margin: 24px 0;
}

.shared-detail #yelpTab h4 + .review {
	margin-top: 12px;
}

.shared-detail #yelpTab .review-user-image {
	width: 100%;
}

.shared-detail #yelpTab .review-user {
	margin: 12px 0 8px;
	font-family: var(--font-body);
	font-weight: bold;
	font-size: var(--text-xs);
	line-height: 1.1;
	color: var(--black);
}

.shared-detail #yelpTab .review-rating {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 32px;
	margin-bottom: 12px;
	font-size: var(--text-xs);
	color: var(--gray-700);
}

.shared-detail #yelpTab .review-links {
	margin-top: 12px;
}

.shared-detail #yelpTab .review {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(0, 4fr);
	align-items: center;
	gap: 24px;
}

.shared-detail #yelpTab .review-meta,
.shared-detail #yelpTab .review-user-image {
	position: relative;
}

.shared-detail #yelpTab .review-user-image {
	z-index: 1;
}

.shared-detail #yelpTab .review-user {
	position: absolute;
	inset: auto 0 0 auto;
	z-index: 2;
	padding: 4px 8px;
	margin: 0;
	background: rgba(0, 0, 0, 0.75);
	color: var(--white);
}

@media (min-width: 40em) {
	.shared-detail #yelpTab .review-user {
		font-size: var(--text-base);
	}
}
@media (min-width: 64em) {
	.shared-detail #yelpTab h4 {
		font-size: var(--text-4xl);
	}

	.shared-detail #yelpTab .review-rating img {
		width: 100px;
	}

	.shared-detail #yelpTab .review-rating {
		font-size: var(--text-sm);
	}
}

.shared-detail .tripadvisor-snippet {
	margin-block: 26px
}

.shared-detail .open-table {
	margin-block-end: 26px;
}

.shared-detail .tripadvisor-snippet:empty {
	display: none;
}

.shared-detail .tripadvisor-snippet .rank-string {
	display: none;
}

.shared-detail .tripadvisor-snippet h4 {
	font-family: var(--font-body);
	font-size: 0.75rem;
	font-weight: var(--font-weight-bold);
	letter-spacing: 0;
	margin-bottom: 6px;
}

.shared-detail .tripadvisor-snippet .reviews-rating-line {
	display: flex;
	align-items: flex-start;
	line-height: 1;
	overflow: hidden;
	gap: 5px;
}

.shared-detail .tripadvisor-snippet .reviews-rating-line > a {
	display: block;
	line-height: 1;
	margin-left: -8px;
}

.shared-detail .tripadvisor-snippet .reviews-rating-line img {
	width: 112px;
}

.shared-detail .tripadvisor-snippet .reviews-rating-line-text {
	font-size: 0.83rem;
	line-height: 1;
	display: block;
}

.shared-detail .tripadvisor-snippet .reviews-rating-line-text a {
	text-decoration: underline;
	color: var(--blue);
	line-height: 1;
}

@media (min-width: 40em) {
	.shared-detail .tripadvisor-snippet,
	.shared-detail .open-table {
		margin-block-end: 22px
	}
}

/* Magical Dining */
.shared-detail .magic-dining .detail-columns {
	margin-bottom: 60px;
}
.shared-detail .magic-dining-content-section {
	margin-bottom: 30px;
}

.shared-detail .right .magic-dining-content-section {
	margin-bottom: 0;
}

.shared-detail .magic-dining-content-section:last-child {
	margin-bottom: 0;
}

.shared-detail .content {
	font-size: 1rem;
}

.shared-detail .content-small {
	font-size: calc(14rem/16);
}

.shared-detail .content-italic {
	font-style: italic;
}

.shared-detail .menu-header {
	margin-bottom: 40px;
}

.shared-detail .menu-group + .menu-group {
	margin-top: 40px;
}

.shared-detail .menu-group + .disclaimer {
	margin-top: 30px;
}

.shared-detail .menu-group-header {
	margin-bottom: 24px;
}

.shared-detail .menu-group-header.upgrades {
	margin-bottom: 2px;
}

.shared-detail .menu-group-title {
	margin-bottom: 10px;
}

.shared-detail .menu-item-header {
	display: flex;
	align-items: center;
	gap: 20px;
	margin-bottom: 4px;
}

.shared-detail .menu-item + .menu-item {
	margin-top: 15px;
}

.shared-detail .menu-item .menu-item-header p {
	padding-bottom: .5rem;
}

.shared-detail .diets {
	flex-shrink: 0;
	display: flex;
	gap: 10px;
}

.shared-detail .diets > * {
	flex-shrink: 0;
}

.shared-detail .dietary-symbols {
	display: flex;
	gap: 18px;
	flex-wrap: wrap;
	margin-bottom: 9px;
}

.shared-detail .dietary-symbols span {
	display: flex;
	align-items: center;
	gap: 6px;
}

.shared-detail .hours li span:first-child {
	width: 83px;
	display: inline-block;
}

.shared-detail .parking li {
	--value-width: 40px;
	max-width: 438px;
}

.shared-detail .important-information {
	margin-top: 10px;
}

.shared-detail .important-information > p {
	margin-bottom: 29px;
}

.shared-detail .important-information .small-info {
	display: grid;
	gap: 20px;
}

.shared-detail .magic-dining .right .button-default {
	margin-top: 16px;
}

@media (min-width: 40em) {
	.shared-detail .magic-dining .detail-columns {
		margin-bottom: 80px;
	}

	.shared-detail .magic-dining-content-section {
		margin-bottom: 40px;
	}

	.shared-detail .menu-group-header {
		margin-bottom: 20px;
	}

	.shared-detail .menu-item + .menu-item {
		margin-top: 19px;
	}

	.shared-detail .menu-group + .disclaimer {
		margin-top: 42px;
	}

	.shared-detail .dietary-symbols {
		margin-bottom: 14px;
	}

	.shared-detail .content-small {
		font-size: 1rem;
	}

	.shared-detail .important-information {
		margin-top: 22px;
	}

	.shared-detail .important-information .small-info {
		gap: 24px;
	}

	.shared-detail .magic-dining .right .button-default {
		margin-top: 20px;
	}
}

@media (min-width: 64em) {
	.shared-detail .magic-dining .detail-columns {
		margin-bottom: 60px;
	}

	.shared-detail .magic-dining-content-section {
		margin-bottom: 60px;
	}

	.shared-detail .magic-dining .right {
		gap: 42px;
	}

	.shared-detail .menu-group-title {
		margin-bottom: 11px;
	}

	.shared-detail .menu-group + .disclaimer {
		margin-top: 62px;
	}

	.shared-detail .dietary-symbols {
		margin-bottom: 17px;
	}
}
