.shared-detail {
	--font-family-display: var(--font-display);
	--font-family-body: var(--font-body);
	--background-color: #faf9f2;
	--background-color-alt: var(--gray-200);
	--text-color: var(--gray-900);
	--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(--gray-800);
	--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);

	position: relative;
	z-index: 0;
	margin: 0 auto 0;
	background: var(--blue-dark);
	padding-block: 93px 39px;

	&:after {
		width: 100%;
		height: 219px;
		content: '';
		position: absolute;
		left: 0;
		display: block;
		top: 0;
		background: url(https://www.mobile.org/includes/public/assets/shared/leo/detail-hero-texture-sm.svg);
		z-index: -1;
		pointer-events: none;
	}

	@media (min-width: 64em) {
		&:after {
			background: url(https://www.mobile.org/includes/public/assets/shared/leo/detail-hero-texture-lg.svg);
			height: 464px;
		}
	}
}

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

.shared-detail .sv-share {
	display: block;
	margin-block: 4px 6px;
}

.shared-detail .detail-top-inner {
	display: flex;
	flex-direction: column;
	margin: 0 auto;
	padding-inline: 0;
	width: calc(100% - 40px);
	max-width: 1036px;
	box-shadow: 4px 4px 50px 0px rgba(8, 23, 42, 0.5);
}

.shared-detail .detail-top .detail-gallery {
	order: 1; /* Always want gallery coming first on mobile */
	position: relative;
	flex: 1 1 50%;
	padding: 10px;
	background: #faf9f2;

	&:after {
		content: '';
		background: url(https://www.mobile.org/includes/public/assets/shared/leo/detail-card-dots.svg);
		position: absolute;
		left: 0;
		bottom: 10px;
		width: 100%;
		height: 100%;
		background-size: contain;
		background-repeat: no-repeat;
		background-position: bottom;
		pointer-events: none;
	}
}

.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: 26px;
	right: 20px;
	padding: var(--space-2) var(--space-5);
	background-color: var(--blue-dark);
	font-family: var(--font-body);
	font-weight: 700;
	color: #ffffff;
	font-size: var(--text-lg);
	letter-spacing: 0.02em;
	line-height: 1;
	border-radius: 2em;
}

.shared-detail .detail-top .detail-gallery .gallery-count i {
	font-size: var(--text-base);
	margin-right: var(--space-1);
	margin-right: var(--space-2);
	font-size: 0.9375rem;
}

.shared-detail .detail-top .info-section {
	order: 2;
	flex: 1 1 50%;
	padding: 0 18px var(--space-5);
	background-color: var(--background-color);
}

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

	@media (min-width: 64em) {
		& {
			margin-bottom: var(--space-6);
		}
	}
}

@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 {
	margin-bottom: var(--space-2);
	font-family: var(--font-body);
	font-weight: 700;
	color: var(--blue-dark);
	font-size: 2rem;
	letter-spacing: -0.02em;
	line-height: 1.031;
}

.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-lg);
	font-weight: var(--font-weight-normal);
	line-height: var(--leading-relaxed);
	color: var(--text-color);
}

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

.shared-detail .detail-top .action-item {
	border-radius: var(--rounded-full);
	margin: 0;
	font-family: var(--font-body);
	font-weight: 700;
	color: var(--blue-dark);
	font-size: 0.8125rem;
	line-height: var(--leading-none);
	text-transform: uppercase;
	padding: 0;
	display: flex;
	align-items: center;
	text-decoration: none;

	i {
		margin-left: var(--space-1);
		color: var(--red);
		background: rgb(228 61 48 / 23%);
		width: 12px;
		height: 12px;
		border-radius: 50%;
		display: grid;
		place-items: center;
		font-size: 10px;
		font-weight: 900;
	}
}

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

.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, 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;
	text-decoration: none;
}

.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: 1036px;
	margin: 0 auto var(--space-8);
	padding: var(--space-6) 0 28px;
	background: rgb(255 255 255 / 10%);
	width: calc(100% - 60px);
	margin-top: var(--space-10);
}

.shared-detail .detail-info-bar .split-pane {
	padding-inline: 28px;

	&:nth-child(2) {
		h3 {
			margin-top: 0;
			margin-bottom: 0;
		}
	}

	& + .split-pane {
		padding-top: 30px;
		margin-top: 30px;
		border-top: 1px solid rgba(255, 255, 255, 0.1);
	}
}

.shared-detail .detail-info-bar .split-pane h3 {
	font-family: var(--font-script);
	font-weight: 400;
	color: rgb(255 255 255 / 85%);
	font-size: var(--text-4xl);
	letter-spacing: 0.01em;
	line-height: 1.1;
	margin-bottom: var(--space-2);
}

.shared-detail .detail-info-bar .split-pane:not(:has(*)) {
	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-lg);
	font-weight: var(--font-weight-normal);
	line-height: var(--leading-tight);
	margin: 0;
	list-style: none;
}

.shared-detail .detail-info-bar ul li {
	display: flex;
	align-items: baseline;
	margin-bottom: var(--space-3);
	color: #fff;
	font-family: var(--font-body);
	font-weight: 400;
	font-size: 1.0625rem;
	line-height: 1.176;
	text-decoration: none;

	a {
		color: inherit;
		font: inherit;
		text-decoration: none;

		@media (hover: hover) {
			&:hover {
				text-decoration: underline;
			}
		}
	}
}

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

.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-2);
	width: 18px;
	font-weight: 900;
	color: #ffffff;
	font-size: var(--text-sm);
}

.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-lg);
	font-weight: var(--font-weight-normal);
	line-height: var(--leading-tight);
	color: #fff;
}

.shared-detail .detail-info-bar 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 .detail-info-bar .social-icons {
	display: flex;
	list-style: none;
	margin-left: 0;
	gap: var(--space-3);
}

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

.shared-detail .detail-info-bar .social-icons a {
	font-size: 1.11113rem;
	background: var(--blue);
	color: var(--blue-dark);
	width: 40px;
	height: 40px;
	border-radius: 50%;
	display: grid;
	place-items: center;
	text-decoration: none;
	transition: background-color var(--transition-appendix), color var(--transition-appendix);

	@media (hover: hover) {
		&:hover {
			text-decoration: none;
			color: var(--blue);
			background: var(--blue-dark);
		}
	}
}

.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: var(--font-weight-bold);
}

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

	.drawers {
		display: grid;
		gap: 18px;
	}
}

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

		.drawers {
			gap: 0;
		}
	}
}

.shared-detail .detail-drawers .drawer > .content {
	display: none;
	padding: var(--space-1) 39px;
	color: var(--white);

	p,
	.content {
		color: var(--white);
	}
}

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

.shared-detail .detail-drawers .drawer.active > .content a {
	color: var(--white);
	text-decoration: underline;
}

.shared-detail .detail-drawers .drawer-button {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 0 39px;
	margin-bottom: var(--space-2);
	width: 100%;
	font-family: var(--font-body);
	font-weight: 700;
	color: #ffffff;
	font-size: 1.375rem;
	line-height: 1.4;
	text-transform: uppercase;

	.drawer-button-divider {
		position: absolute;
		bottom: -7px;
		left: 0;
		height: 1px;
		width: 100%;
		pointer-events: none;
		background-color: rgba(76, 194, 225, 0.25);
		margin-inline: 28px 28px;
		max-width: calc(100% - 56px);

		&:after,
		&:before {
			content: '';
			position: absolute;
			top: 0;
			left: 0;
			height: 4px;
			width: 4px;
			pointer-events: none;
			background-color: rgba(76, 194, 225, 0.25);
			rotate: 45deg;
			translate: -100% -50%;
		}
		&:after {
			left: unset;
			right: 0;
			translate: 100% -50%;
		}
	}

	.drawer.active & {
		margin-bottom: var(--space-6);
	}
	.drawer.active &#drawer_descriptionTab {
		margin-bottom: var(--space-2);
	}
}

.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 {
		flex-direction: row;
		align-items: stretch;
		/* padding-inline: 0; */
		box-shadow: 4px 4px 50px 0px rgba(8, 23, 42, 0.5);
	}

	.shared-detail .detail-top .info-section {
		display: flex;
		flex-direction: column;
		justify-content: center;
		padding: var(--space-12) var(--space-5);
	}

	.shared-detail .detail-info-bar {
		display: grid;
		padding: 57px 0 70px;
		margin-bottom: 0;
		grid-template-columns: 1fr 1fr;
	}

	.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-2) var(--space-12);

		p {
			margin-bottom: 22px;
		}
	}

	.shared-detail .detail-drawers .drawer-button {
		padding: var(--space-5) var(--space-10);
		margin-bottom: var(--space-3);
		font-size: var(--text-3xl);
		letter-spacing: 0.067em;
		line-height: 1.4;

		.drawer-button-divider {
			bottom: 6px;
		}
	}

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

	.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-top .info-section {
		padding: var(--space-12) 88px;
		gap: var(--space-1);
	}

	.shared-detail .detail-top h1 {
		font-size: 2.375rem;
		letter-spacing: -0.02em;
		line-height: 1.053;
	}

	.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: var(--font-weight-bold);
	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: var(--font-weight-bold);
}

@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: var(--font-weight-bold);
	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: var(--font-weight-bold);
	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: var(--font-weight-bold);
	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: var(--font-weight-bold);
	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);
}

.shared-detail .detail-drawers .img-cont {
	position: relative;
}

.shared-detail .detail-drawers .img-cont .trip-builder {
	position: absolute;
	inset: var(--space-4) var(--space-4) auto auto;
	z-index: 3;
}

.shared-detail .detail-drawers .img-cont .trip-builder a {
	text-decoration: none;
	font-size: var(--text-2xl);
	line-height: 1;
	color: var(--white);
}

.shared-detail .detail-drawers .img-cont .trip-builder a.remove {
	color: var(--sw-alert-color);
}

.shared-detail .detail-drawers .item .info-list a {
	color: var(--white);
}

@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);
	}
	.shared-detail .detail-info-bar {
		position: relative;

		&:after {
			content: '';
			position: absolute;
			top: 0;
			left: 50%;
			translate: -50%;
			height: 100%;
			width: 1px;
			pointer-events: none;
			background: rgba(255, 255, 255, 0.1);
		}
	}
	.shared-detail .detail-info-bar .split-pane {
		& + .split-pane {
			border-top: none;
		}
		&:nth-child(2) {
			margin: 0;
			padding-top: 0;

			h3 {
				margin-top: 0;
			}
		}
	}
	.shared-detail .detail-info-bar ul li {
		margin-bottom: 9px;
	}
	.shared-detail .detail-top .detail-gallery {
		padding: 17px 12px 17px 19px;

		&:after {
			bottom: 16px;
		}
	}
	.shared-detail .detail-top .detail-gallery .gallery-count {
		bottom: 38px;
		right: 30px;
	}
	.shared-detail .detail-top .action-item {
		font-size: 0.9375rem;
		letter-spacing: 0.067em;
		line-height: var(--leading-none);
	}
	.shared-detail .detail-info-bar .split-pane h3 {
		font-size: 2.5rem;
		letter-spacing: 0.01em;
	}
}
@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 .detail-info-bar .split-pane:nth-child(2) {
		padding-left: var(--space-20);
	}
	.shared-detail .detail-info-bar {
		padding-inline: 80px;
		margin-top: 60px;
	}
	.shared-detail .detail-info-bar .social-icons a {
		width: 45.455px;
		height: 45.455px;
		font-size: 1.25rem;
	}
	.shared-detail .detail-info-bar .social-icons {
		gap: var(--space-5);
		margin-top: var(--space-2);
	}
}

/*----- viator -----*/
.tourItem .rating {
	display: flex;
}

.tourItem .rating svg {
	width: var(--space-5);
	fill: var(--sw-text-color);
	margin-right: var(--space-2);
}

.tourItem .info-list li {
	margin-bottom: var(--space-3);
}

.tourItem .img-cont {
	flex: 1 0 auto;
}
