.shared-detail {
	--font-family-display: var(--font-display);
	--font-family-body: var(--font-body);
	--background-color: var(--pearl-light);
	--background-color-alt: var(--white);
	--text-color: var(--teal);
	--text-color-dark: var(--teal-dark);
	--text-color-alt: var(--black);
	--text-color-tertiary: var(--blue-17);
	--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);
	--drawer-icon-color: var(--teal-dark);

	margin: 0 auto var(--space-10);
	overflow: hidden;
}

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

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

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

.shared-detail .sv-share .sv-share-trigger {
	gap: 2px;
	padding: 0;
	font-size: 0.875rem;
	color: var(--text-color-dark);
	font-weight: var(--font-weight-bold);
}

.shared-detail .sv-share .sv-share-trigger i {
	color: var(--text-color-dark);
}

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

@media screen and (min-width: 64em) {
	.shared-detail .sv-share .sv-share-trigger,
	.shared-detail .sv-share .sv-share-trigger i {
		font-size: 1rem;
	}
}

.shared-detail .detail-top {
	position: relative;
}

.shared-detail .detail-top::before,
.shared-detail .detail-top::after {
	content: '';
	display: block;
	pointer-events: none;
	height: 100%;
    width: 100%;
	position: absolute;
	z-index: -1;
}

.shared-detail .detail-top .bg-img {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 238px;
}

.shared-detail .detail-top .bg-img::after {
	position: absolute;
	inset: 0;
	display: block;
	content: "";
	backdrop-filter: blur(8px);
}

.shared-detail .detail-top::after {
	background: 
		linear-gradient(0deg, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)),
		linear-gradient(0deg, rgba(235, 100, 98, 0.3), rgba(235, 100, 98, 0.3));
	top: 0;
	left: 0;
    height: 100%;
}

.shared-detail .detail-top-inner {
	position: relative;
}

.shared-detail .detail-top-inner::after {
	content: '';
    pointer-events: none;
    background-color: var(--background-color);
    display: block;
    height: 100%;
    width: 100%;
    position: absolute;
    top: 27%;
    left: 0;
    z-index: 0;
}

.shared-detail .detail-top-inner {
	display: flex;
	flex-direction: column;
    margin: 0 auto;
}

.shared-detail .detail-top .detail-gallery {
	order: 1; /* Always want gallery coming first on mobile */
	position: relative;
	flex: 1 1 50%;
	padding: 90px 20px 0;
	z-index: 1;
}

.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: 0px;
    right: 20px;
	padding: 18.5px 26.5px;
    color: var(--white);
	background-color: var(--teal-dark);
	font-family: var(--font-family-body);
	font-size: 1.0625rem;
	font-weight: var(--font-weight-normal);
	line-height: var(--leading-none);
}

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

@media screen and (min-width: 40em) {
	.shared-detail .detail-top {
		padding: 0 0;
	}

	.shared-detail .detail-top::before {
		background: url(https://assets.simpleviewinc.com/simpleview/image/upload/v1/clients/houston-redesign/leo_detail_bg_desk_8acd963b-8522-4232-b595-e8fa5f26651a.png);
		background-size: 150%;
        background-position: 55% 30%;
	}

	.shared-detail .detail-top-inner::after {
		display: none;
	}

	.shared-detail .detail-top .detail-gallery {
        padding: 22px 0;
	}
	
	.shared-detail .detail-top .detail-gallery::after {
		content: '';
        pointer-events: none;
        display: block;
        background-color: var(--background-color);
        height: 100%;
        width: calc(100% - 100px);
        position: absolute;
        z-index: -1;
        top: 0;
        right: 0;
    }

	.shared-detail .detail-top .detail-gallery .gallery-count {
		right: 0;
		bottom: 22px;
	}
}

@media screen and (min-width: 64em) {
	.shared-detail .detail-top {
		overflow: hidden;
		padding: 0 20px;
	}

	.shared-detail .detail-top .bg-img {
		height: 560px;
	}
	
	.shared-detail .detail-top-inner {
		max-width: 1200px;
		padding: 100px 20px 0;
	}


	.shared-detail .detail-top .detail-gallery {
		position: relative;
		flex: 1 1 72%;
		padding: 44px 0;
		z-index: 0;
	}

	.shared-detail .detail-top .detail-gallery .gallery-count {
		bottom: 44px;
		right: 0;
		font-size: 1.25rem;
	}

	.shared-detail .detail-top .detail-gallery .gallery-count i {
		font-size: 1.125rem;
	}
}

.shared-detail .detail-top .info-section {
	position: relative;
	order: 2;
	flex: 1 1 50%;
	padding: 30px 35px 52px;
	background-color: var(--background-color);
	z-index: 1;
}

.shared-detail .detail-top .info-section-border {
	background: var(--red);
    height: 80%;
    width: 1px;
    position: absolute;
    left: 20px;
}

.shared-detail .detail-top .info-section::before {
	content: '';
	pointer-events: none;
	background-color: var(--background-color);
	height: 140px;
	position: absolute;
	top: -140px;
	left: 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 {
	display: flex;
	flex-direction: column;
	flex-wrap: nowrap;
	align-items: stretch;
	gap: 10px;
	width: max-content;
}

.shared-detail .detail-top .info-section .bottom-actions .action-item {
	flex: 0 0 auto;
	width: 100%;
}

.shared-detail .detail-top .info-section .top-actions {
	justify-content: space-between;
}

@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: 2.5rem;
	font-weight: var(--font-weight-bold);
	line-height: 1.2;
    color: var(--text-color-dark);
}

@media screen and (min-width: 40em) {
	.shared-detail .detail-top h1 {
		font-size: 1.75rem;
	}
}

@media screen and (min-width: 64em) {
	.shared-detail .detail-top .info-section-border {
		height: calc(100% - 90px);
		left: 41px;
	}
}

@media screen and (min-width: 90em) {
	.shared-detail .detail-top h1 {
		font-size: 3.25rem;
	}
}

.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 {
	font-family: var(--font-family-body);
	font-size: var(--text-base);
	font-weight: var(--font-weight-extrabold);
	line-height: var(--leading-tight);
	padding: 10px 25.5px;
	background-color: var(--visit-btn-bg);
	color: var(--text-color);
	text-transform: uppercase;
	letter-spacing: 0.0625rem;
	margin: 0;
	box-shadow: 6px 6px var(--green);
	border: 1px solid var(--teal-dark);
}

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

.shared-detail .detail-top .info-section .bottom-actions > *:first-child {
	margin-top: 0;
}

@media (hover: hover) {
	.shared-detail .detail-top .action-item:hover {
		box-shadow: 3px 3px var(--green);
		transform: translate(2px, 2px);
		transition: transform var(--transition-appendix);
	}

	.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 screen and (min-width: 64em) {
	.shared-detail .detail-top .action-item {
	font-size: 0.875rem;
	}
}

.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 .detail-info-bar {
    position: relative;
	max-width: 1080px;
	margin: 0 auto var(--space-16);
	padding: 30px 22px 20px;
	background-color: var(--background-color-alt);
	z-index: 1;
}

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

.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: 1rem;
	font-weight: var(--font-weight-normal);
	line-height: var(--leading-tight);
	margin: 0;
    list-style: none;
	color: var(--text-color-tertiary);
}

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

.shared-detail .detail-info-bar ul li div a,
.shared-detail .detail-info-bar ul li div div a,
.shared-detail .detail-info-bar ul li a {
	margin-bottom: var(--space-3);
	color: var(--text-color-tertiary);
}

.shared-detail .detail-info-bar ul li a {
	color: var(--text-color-dark);
}

.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 > :has(div) {
	display: flex;
	align-items: flex-start;
	line-height: 1;
}

.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: flex;
	flex-direction: column;
	gap: 4px;
	color: var(--text-color-tertiary);
}

.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;
	min-width: 29px;
	font-size: 14px;
	color: var(--green);
	background-color: var(--teal-dark);
	height: 28px;
	width: 28px;
	border-radius: 50%;
	display: flex;
	justify-content: center;
	align-items: center;
}

@media (hover: hover) {
	.shared-detail .detail-info-bar ul li a:hover,
	.shared-detail .detail-info-bar ul li .two-line-wrap a:hover {
		opacity: var(--hover-opacity);
	}
}

@media screen and (min-width: 64em) {
	.shared-detail .detail-info-bar ul.info-list li i {
		font-size: 1rem;
	}
}

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

.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: var(--text-color-tertiary);
}

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

.shared-detail .detail-info-bar .social-icons li {
	margin-right: var(--space-5);
	margin-bottom: 0;
}

.shared-detail .detail-info-bar .social-icons a {
	font-size: 1.5rem;
}

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

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

.shared-detail .drawers {
	padding: 0 20px;
}

.shared-detail .detail-drawers .drawer-button {
	position: relative;
	display: flex;
    align-items: center;
    justify-content: space-between;
	background-color: var(--background-color-alt);
	font-family: 'Barlow Condensed', sans-serif;
	/* font-family: var(--font-barlow-condensed); */
	font-weight: var(--font-weight-bold);
	max-width: 1080px;
	padding: 20px 20px 18px;
	margin-bottom: 20px;
	width: 100%;
	font-size: 2rem;
	font-weight: var(--font-weight-bold);
	line-height: var(--leading-none);
	color: var(--text-color-dark);
	border-bottom: 1px solid var(--red);
}

.shared-detail .detail-drawers .drawer-button i {
	margin-left: var(--space-4);
	font-size: 2rem;
	color: var(--drawer-icon-color);
}

.shared-detail .detail-drawers .drawer.active .drawer-button {
	margin-bottom: var(--space-3);
	color: var(--red);
	background-color: var(--pearl-fe);
}

.shared-detail .detail-drawers .drawer.active .drawer-button::after {
	content: '';
	pointer-events: none;
	background-color: var(--pearl-fe);
    width: calc(100% + 80px);
    height: 90px;
    position: absolute;
    top: -10px;
    z-index: -1;
    left: -40px
}

@media (hover: hover) {
	.shared-detail .detail-drawers .drawer:not(.active) .drawer-button:hover {
		opacity: var(--hover-opacity);
	}
}

@media screen and (min-width: 64em) {
	.shared-detail .detail-drawers .drawer .drawer-button {
		padding: 20px 0 18px;
		font-size: 2.5rem;
	}

	.shared-detail .detail-drawers .drawer.active .drawer-button::after {
		height: 80px;
		top: 0;
	}
}

.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;
		z-index: 2;
		padding: 80px 20px;
	}
	
	.shared-detail .detail-top .info-section {
		display: flex;
		flex-direction: column;
		justify-content: center;
		padding: 50px 35px;
	}
	
	.shared-detail .detail-info-bar {
		position: relative;
		display: flex;
		padding: 0;
	}

	.shared-detail .detail-info-bar::before {
        content: '';
        pointer-events: none;
        background-color: var(--background-color-alt);
        height: 210px;
        width: 10000%;
        position: absolute;
        top: -210px;
        right: -100%;
        z-index: -1;
	}
	
	.shared-detail .detail-info-bar .split-pane {
		margin-bottom: 0;
		padding: 0 var(--space-5);
		flex: 1;
	}
	
	.shared-detail .detail-drawers .drawer > .content {
		padding: 40px 32px;
	}
	
	.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: 48px 26px 48px 96px;
	}

	.shared-detail .detail-info-bar {
		padding-bottom: 92px;
		margin-bottom: 0;
	}

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

@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);
	}
}

/*----- 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;
}