.shared-detail {
	--font-family-display: var(--font-body);
	--font-family-body: var(--font-body);
	--background-color: var(--white);
	--background-color-alt: var(--white);
	--text-color: var(--sw-text-color);
	--text-color-alt: var(--white);
	--visit-btn-bg: var(--sw-button-primary-bg);
	--visit-btn-bg-alt: var(--sw-button-primary-bg-hover);
	--dropdown-menu-text: var(--white);
	--nearby-tab-bg: var(--sw-button-secondary-bg);
	--nearby-tab-bg-hover: var(--sw-button-secondary-bg-hover);
	--nearby-tab-bg-selected: var(--sw-selected-color);
	--accent-color: var(--sw-key-color);

	margin: 0 auto;
}

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

.shared-detail .sv-share {
	display: block;
	gap: 9px;
	padding: 0;
	margin-left: -12px;
}

.shared-detail .sv-share .sv-share-trigger {
	color: var(--off-white);
	font-size: 1.0625rem;
	font-weight: 800;
	font-style: italic;
	text-transform: uppercase;
	text-shadow: 1px 2px 5px rgba(0, 0, 0, 0.15);
	transition: background-color var(--transition-appendix);
}

.shared-detail .sv-share .sv-share-trigger i {
	font-size: 0.9375rem;
	color: var(--off-white);
}

@media (hover: hover) {
	.shared-detail .sv-share .sv-share-trigger:hover {
		background-color: var(--red);
	}
}

.shared-detail .sv-share-popover [data-sv-social-share] {
	left: 0;
	translate: unset;
}

@media (min-width: 64em) {
	.shared-detail .sv-share .sv-share-trigger {
		font-size: var(--text-lg);
		line-height: var(--leading-none);
	}
	
	.shared-detail .sv-share .sv-share-trigger i {
		font-size: var(--text-base);
	}
}

.shared-detail .detail-top {
	position: relative;
	padding: var(--space-24) 0;
	padding-bottom: var(--space-16);
	background: url(/includes/public/assets/shared/leo-details-hero.svg);
	background-size: cover;
	background-repeat: no-repeat;
	background-position: center bottom;
}

@media (min-width: 40em) {
	.shared-detail .detail-top {
		background-repeat: repeat-x;
	}
}

@media (min-width: 64em) {
	.shared-detail .detail-top {
		padding: 0;
		background-repeat: repeat-x;
	}
}

.shared-detail .detail-top-inner {
	display: flex;
	flex-direction: column;
	padding: 0 var(--space-5);
}

.shared-detail .detail-top .gallery-wrapper {
	order: 1; /* Always want gallery coming first on mobile */
	position: relative;
	flex: 1 1 50%;
	padding: calc(48px + (86 - 48) * ((100vw - 375px) / (640 - 375))) calc(20px + (34 - 20) * ((100vw - 375px) / (640 - 375)));
	background: url(/includes/public/assets/shared/art-frame.svg);
	background-size: 100%;
	background-repeat: no-repeat;
	background-position: center;
}

@media (min-width: 40em) {
	.shared-detail .detail-top .gallery-wrapper {
		padding: calc(90px + (143 - 90) * ((100vw - 640px) / (1024 - 640))) calc(34px + (54 - 34) * ((100vw - 640px) / (1024 - 640)));
	}
}

@media (min-width: 64em) {
	.shared-detail .detail-top .gallery-wrapper {
		align-self: flex-end;
		flex: 1 1 79%;
		background: url(/includes/public/assets/shared/art-frame-lg.svg);
		background-size: 100%;
		background-repeat: no-repeat;
		background-position: center;
		padding: min(calc(92px + (98 - 92) * ((100vw - 1024px) / (1440 - 1024))), 98px) min(calc(33px + (37 - 33) * ((100vw - 1024px) / (1440 - 1024))), 37px);
		translate: 0 140px;
	}
}

.shared-detail .detail-top .detail-gallery > a {
	position: relative;
}

.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 .gallery-count {
	position: absolute;
	bottom: 5px;
	right: 8px;
	color: var(--text-color-alt);
	font-family: var(--font-family-body);
	font-size: 0.9375rem;
	font-weight: 800;
	line-height: 1.2;
	background: rgba(0, 0, 0, 0.40);
	backdrop-filter: blur(11.25px);
	padding: 10px var(--space-4);
	border: 1px dashed var(--off-white);
	border-radius: 4px;
}

.shared-detail .detail-top .detail-gallery .gallery-count i {
	font-size: 0.9375rem;
	margin-right: 8px;
}

@media (min-width: 64em) {
	.shared-detail .detail-top .detail-gallery .gallery-count {
		font-size: var(--text-base);
		right: var(--space-3);
		bottom: 10px;
		padding: var(--space-3) var(--space-5);
	}

	.shared-detail .detail-top .detail-gallery .gallery-count i {
		font-size: var(--text-base);
	}
}

.shared-detail .detail-top .info-section {
	order: 2;
	flex: 1 1 50%;
	padding: var(--space-3) 0 0;
}

.shared-detail .detail-top .top-actions .trip-builder {
	cursor: pointer;
}

.shared-detail .detail-top .top-actions .trip-builder i {
	position: relative;
	font-size: var(--text-2xl);
}

.shared-detail .detail-top .top-actions .trip-builder a i:after {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	font: var(--fa-font-solid);
	content: '\f004';
	color: var(--white);
	z-index: -1;
}

.shared-detail .detail-top .top-actions .trip-builder a[data-type="Remove"] i:after {
	color: var(--sw-alert-color);
	z-index: 1; 
}

.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-wrap: wrap;
}

.shared-detail .detail-top .info-section .top-actions {
	justify-content: space-between;
	margin-bottom: var(--space-1);
}

@media (hover: hover ) {
	.shared-detail .detail-top .info-section .top-actions span a:hover {
		text-decoration:  none; /*reboot.css override*/
	}
}

.shared-detail .detail-top h1 {
	font-family: var(--font-family-display);
	font-size: 1.8125rem;
	font-weight: 800;
	font-style: italic;
	line-height: var(--leading-none);
	color: var(--white);
	text-transform: uppercase;
	text-shadow: 1px 2px 5px rgba(0, 0, 0, 0.15);
}

@media (min-width: 64em) {
	.shared-detail .detail-top h1 {
		font-size: 2.5rem;
	}
}

.shared-detail .detail-top .priority-info {
	margin-top: var(--space-1);
}

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

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

@media (min-width: 64em) {
	.shared-detail .detail-top .priority-info {
		margin-top: var(--space-3);
	}

	.shared-detail .detail-top dl,
	.shared-detail .detail-top dt,
	.shared-detail .detail-top dd {
		font-size: 1.5625rem;
	}
}

.shared-detail .detail-top .priority-info a {
	color: var(--white);
}

.shared-detail .detail-top .action-item {
	font-family: var(--font-family-body);
	font-size: 0.9375rem;
	font-weight: 800;
	font-style: italic;
	line-height: var(--leading-tight);
	padding: 13px 26px;
	background-color: var(--visit-btn-bg);
	color: var(--text-color-alt);
	text-transform: uppercase;
	border-radius: 8px;
	margin: 0;
	transition: background-color var(--transition-appendix), color var(--transition-appendix);
}

.shared-detail .detail-top .info-section .bottom-actions > * {
	margin-top: var(--space-3);
	margin-right: var(--space-4);
	transition: background-color var(--transition-appendix);
	box-shadow: 1px 2px 5px 0px rgba(0, 0, 0, 0.15);
}

@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: 64em) {
	.shared-detail .detail-top .action-item {
		font-size: var(--text-lg);
		padding: 17px 30px;
	}

	.shared-detail .detail-top .info-section .bottom-actions > * {
		margin-top: var(--space-5);
	}
}

.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;
}

@media (hover: hover) {
	.shared-detail .detail-top .info-section .bottom-actions .dropdown-menu a {
		color: var(--sw-text-color);
	}
}

.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 .detail-info-bar {
	max-width: 1200px;
	margin: 0 auto;
	padding: 44px var(--space-5) var(--space-6);
}

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

.shared-detail .detail-info-bar .split-pane + .split-pane {
	margin-top: var(--space-8);
}

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

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

.shared-detail .detail-info-bar ul {
	font-family: var(--font-family-body);
	font-size: var(--text-xl);
	font-weight: 400;
	line-height: var(--leading-none);
	margin: 0;
	list-style: none;
}

.shared-detail .detail-info-bar ul li {
	display: flex;
	align-items: baseline;
	margin-bottom: var(--space-4);
}

.shared-detail .detail-info-bar ul li > div {
	display: flex;
	align-items: center;
}

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

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

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

.shared-detail .detail-info-bar ul li .two-line-wrap a {
	display: inline-block;
}

.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-5);
	width: 20px;
	font-size: var(--text-xl);
	color: var(--accent-color);
}

@media (min-width: 64em) {
	.shared-detail .detail-info-bar ul {
		font-size: 1.5625rem;
	}

	.shared-detail .detail-info-bar ul li {
		margin-bottom: var(--space-6);
	}

	.shared-detail .detail-info-bar ul.info-list li i {
		width: 22px;
		font-size: 1.375rem;
	}
}

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

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

@media (min-width: 64em) {
	.shared-detail .detail-info-bar dl,
	.shared-detail .detail-info-bar dt,
	.shared-detail .detail-info-bar dd {
		font-size: 1.5625rem;
	}
}

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

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

.shared-detail .detail-info-bar .social-icons li {
	margin-right: 0;
	margin-bottom: 0;
}

.shared-detail .detail-info-bar .social-icons a {
	height: 40px;
	width: 40px;
	display: flex;
	justify-content: center;
	align-items: center;
	font-size: 0.9375rem;
	color: var(--brown);
	background: url(/includes/public/assets/shared/leo-social-icon-bg.svg);
	background-repeat: no-repeat;
	background-size: cover;
	text-decoration: none;
	transition: background var(--transition-appendix), color var(--transition-appendix);
}

@media (hover: hover) {
	.shared-detail .detail-info-bar .social-icons a:hover {
		text-decoration: none;
		color: var(--white);
		background: url(/includes/public/assets/shared/social_icon_bg-hover.svg);
		background-size: cover;
	}
}

@media (min-width: 64em) {
	.shared-detail .detail-info-bar .social-icons {
		gap: 10px;
	}

	.shared-detail .detail-info-bar .social-icons a {
		height: 70px;
		width: 70px;
		font-size: var(--text-xl);
	}
}

.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: 1200px;
	padding: 0 var(--space-5);
	margin: 0 auto;
}

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

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

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

.shared-detail .detail-drawers .drawer-button {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-bottom: var(--space-4);
	width: 100%;
	font-family: var(--font-family-body);
	font-size: 1.875rem;
	font-weight: 800;
	font-style: italic;
	line-height: var(--leading-none);
	color: var(--sw-text-color);
	background-color: transparent;
	padding: var(--space-4) 0;
	border-bottom: 1px dashed var(--slate);
}

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

.shared-detail .detail-drawers .gMapHolder { 
	height: 280px; 
}

.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;
	}

	.shared-detail .detail-top-inner {
		max-width: 1196px;
		margin: 0 auto;
	}
	
	.shared-detail .detail-top .info-section {
		display: flex;
		flex-direction: column;
		justify-content: start;
	}
	
	.shared-detail .detail-info-bar {
		display: flex;
		padding: var(--space-12) 0;
		margin-bottom: 0;
	}
	
	.shared-detail .detail-info-bar .split-pane {
		margin-bottom: 0;
		padding: 0 var(--space-5);
		flex: 1;
	}

	.shared-detail .detail-info-bar .split-pane + .split-pane {
		margin-top: 0;
	}
	
	.shared-detail .detail-drawers .gMapHolder { 
		height: 400px; 
	}

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

@media (min-width: 64em) {
	.shared-detail .detail-drawers .drawer-button {
		font-size: 2.5rem;
		padding: var(--space-3) 0;
		margin-bottom: var(--space-4);
	}

	.shared-detail .detail-drawers .drawer > .content {
		padding: var(--space-8) var(--space-12) var(--space-4);
	}
}

@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-top-inner {
		flex-direction: row;
		align-items: start;
	}

	.shared-detail .detail-top .info-section {
		padding: 198px var(--space-20) var(--space-10);
		padding-right: 0;
	}

	.shared-detail .detail-info-bar {
		padding-top: 200px;
		padding-bottom: var(--space-24);
	}

	.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;
	margin-bottom: var(--space-10);
}

.whats-nearby .whats-nearby-slider {
	opacity: 0;
	transition: opacity var(--transition-appendix);
}

.whats-nearby .whats-nearby-slider.loaded {
	opacity: 1;
}

.whats-nearby .whats-nearby-slider.no-slider {
	display: none;
}

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

.whats-nearby .title-cont {
	margin: 0 auto;
	margin-bottom: var(--space-6);
	max-width: var(--width-base);
	padding: 0 var(--space-5);
	display: grid;
	justify-content: center;
	gap: var(--space-2)
}

.whats-nearby .section-title {
	font-family: var(--font-family-display);
	font-size: var(--text-3xl);
	font-weight: 700;
	line-height: var(--leading-tight);
	text-align: center;
}

.whats-nearby .section-subtitle {
	font-family: var(--font-family-display);
	font-size: var(--text-xl);
	line-height: var(--leading-tight);
	text-align: center;
} 

.whats-nearby .tab-group {
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
	margin: 0 auto;
	margin-bottom: var(--space-8);
	padding: 0 var(--space-5);
	max-width: var(--width-base);
	gap: var(--space-4);
}

.whats-nearby .tab {
	margin: 0;
	padding: var(--space-3) var(--space-8);
	color: var(--text-color);
	white-space: nowrap;
	background-color: var(--nearby-tab-bg);
	border-radius: var(--rounded-full);
	font-size: var(--text-base);
	font-weight: 700;
}

@media (hover: hover) {
	.whats-nearby .tab:hover {
		background-color: var(--nearby-tab-bg-hover);
		color: var(--text-color);
	}
}

.whats-nearby .tab[aria-expanded="true"] {
	color: var(--text-color-alt);
	background-color: var(--nearby-tab-bg-selected);
}

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

.whats-nearby .item .image {
	position: relative;
	margin-bottom: var(--space-2);
}

.whats-nearby .item img {
	width: 100%;
}

.whats-nearby .item .image .mini-date-container {
	position: absolute;
	top: 0;
	left: 0;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	background-color: var(--sw-mini-date-bg);
	color: var(--sw-mini-date-color);
	padding: var(--space-1) var(--space-4);
	pointer-events: none;
}

.whats-nearby .item .image .mini-date-container .month {
	font-family: var(--font-family-body);
	font-size: var(--text-base);
	font-weight: 700;
	line-height: var(--leading-none);
	text-transform: uppercase;
}

.whats-nearby .item .image .mini-date-container .day {
	font-family: var(--font-family-body);
	font-size: var(--text-3xl);
	font-weight: 700;
	line-height: var(--leading-none);
}

.whats-nearby .item .info h4,
.whats-nearby .item .info h4 a { 
	font-family: var(--font-family-display);
	font-size: var(--text-xl);
	font-weight: 700;
	line-height: var(--leading-normal);
	color: var(--text-color);
	-webkit-hyphens: auto;
	word-break: break-word;
	hyphens: auto;
}

.whats-nearby .glide__arrows {
	position: absolute;
	left: 0;
	translate: 0 -50%;
	z-index: 1;
	width: 100%;
	display: flex;
	justify-content: space-between;
}

.whats-nearby .no-results {
	text-align: center;
}

@media (min-width: 40em) {
	.whats-nearby .whats-nearby-slider.one-slide .glide__slides {
		display: grid;
		grid-template-columns: repeat(2, minmax(0, 1fr));
		gap: 20px;
	}
}

@media (min-width: 64em) {
	.whats-nearby .whats-nearby-slider.one-slide .glide__slides {
		grid-template-columns: repeat(3, minmax(0, 1fr));
	}
}

.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: 800;
	font-style: italic;
	line-height: var(--leading-tight);
	color: inherit;
	margin-bottom: var(--space-2);
	word-break: break-word;
	text-decoration: underline;
	text-decoration-color: transparent;
	text-underline-offset: 2px;
	transition: text-decoration-color var(--transition-appendix);
}

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

.shared-detail .detail-drawers .drawer.active > .content > div > div .info-list-label {
	font-weight: 800;
}

@media (hover: hover) {
	.shared-detail .detail-drawers .drawer.active > .content > div > div .content-section h4 a:hover {
		text-decoration-color: currentColor;
	}

	.shared-detail .detail-drawers dl.drawers dd.active > .content > div > div a:hover {
		text-decoration: underline;
	}
}

.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;
	}
}

.shared-detail .detail-drawers > dl.drawers > dd > .content#descriptionTab p {
	line-height: 1.4;
}

@media (min-width: 64em) {
	.shared-detail .detail-drawers > dl.drawers > dd > .content#descriptionTab p {
		line-height: var(--leading-normal);
	}
}

.shared-detail .detail-drawers > dl.drawers > dd > .content#mapTab a {
	font-weight: 800;
	font-style: italic;
}

@media (hover: hover) {
	.shared-detail .detail-drawers > dl.drawers > dd > .content#mapTab a:hover {
		text-decoration: underline;
	}
}
/*----- 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);
	}
}