.shared-detail {
	--font-family-display: var(--font-display);
	--font-family-body: var(--font-body);
	--background-color: #fff;
	--background-color-alt: #fff;
	--text-color: var(--text-black);
	--text-color-alt: var(--gray-100);
	--visit-btn-bg: var(--dark-pink);
	--visit-btn-bg-alt: var(--dark-pink);
	--dropdown-menu-text: var(--text-black);
	--nearby-tab-bottom-border: var(--primary-color-700);
	--nearby-tab-bottom-border-alt: var(--gray-400);
	--accent-color: var(--dark-pink);
	--vist-btn-light: #faf4e8;

	margin: 0 auto var(--space-10);
	padding: 0 var(--space-5);
	position: relative;
	padding-top: var(--space-12);
}

.shared-detail:after {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 248px;
	background-image: linear-gradient(75deg, rgb(0, 165, 173) 0%, rgb(0, 131, 138) 33%, rgb(0, 111, 149) 66%, rgb(51, 63, 72) 100%);
	z-index: -1;
}

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

.shared-detail .detail-top {
	display: flex;
	flex-direction: column;
}

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

.shared-detail .detail-top .detail-gallery img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	border-radius: 30px 5px;
}

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

.shared-detail .detail-top .detail-gallery .gallery-count {
	position: absolute;
	bottom: var(--space-2);
	right: var(--space-3);
	padding: 0;
	color: var(--text-color-alt);
	background-color: rgba(0, 0, 0, .7);
	font-size: 0.5625rem;
	line-height: var(--leading-none);
	height: 50px;
	width: 50px;
	border-radius: 50%;
	display: flex;
	justify-content: center;
	align-items: center;
	flex-direction: column;
	border: 1px solid #fff;
	letter-spacing: 0.02em;
	font-weight: 500;
	font-family: var(--font-display);
	gap: 6px;
}

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

@media (min-width: 64em) {
	.shared-detail .detail-top .detail-gallery .gallery-count {
		width: 67px;
		height: 67px;
		font-size: var(--text-xs);
		gap: var(--space-2);
		bottom: var(--space-6);
		right: var(--space-6);
	}

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

.shared-detail .detail-top .info-section {
	order: 2;
	flex: 1 1 50%;
	padding: 36px 0;
	margin-bottom: 26px;
	background-color: #fff;
	text-align: center;
	position: relative;
}

.shared-detail .detail-top .info-section:after {
	content: "";
	position: absolute;
	left: 50%;
	transform: translateX(-50%);
	bottom: 0;
	width: 100%;
	height: 1px;
	background-image: linear-gradient(to right, #333 10%, rgb(0 0 0 / 0%) 0%);
	background-position: top;
	background-size: 6px 1px;
	background-repeat: repeat-x;
}

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

.shared-detail .detail-top .info-section .top-actions [data-tb-button] {
	cursor: pointer;
}

.shared-detail .detail-top .info-section .top-actions [data-tb-button] span+span {
	margin-left: var(--space-2);
}

@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: var(--text-3xl);
	font-weight: 500;
	line-height: var(--leading-tight);
	color: var(--text-color);
	max-width: 333px;
	margin: 0 auto;
}

@media (min-width: 780px) {
	.shared-detail .detail-top h1 {
		margin: 0 0 var(--space-4) 0;
	}
}

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

@media (min-width: 64em) {
	.shared-detail .detail-top h1 {
		font-size: var(--text-4-5xl);
		letter-spacing: -0.03em;
		padding-right: var(--space-2);
		margin-bottom: var(--space-4);
	}

	.shared-detail .detail-top .detail-gallery {
		margin-top: 75px;
	}
}

.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: 400;
	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 .TB {
	background: #faf4e8;
	min-width: 270px;
	max-width: 270px;
	white-space: nowrap;
	padding: var(--space-3) 76px;
	border-radius: var(--rounded-full);
	display: flex;
	flex-direction: column;
	color: var(--dark-pink);
	font-family: var(--font-family-display);
	font-size: var(--text-base);
	line-height: var(--leading-tight);
}

.shared-detail .detail-top .TB a {
	color: var(--dark-pink);
	cursor: pointer;
}

.shared-detail .detail-top .TB a[data-type="Remove"],
.shared-detail .detail-top .TB a[data-type="Add"] {
	position: relative;
	transform: translateX(-7px);
}

.shared-detail .detail-top .TB a[data-type="Remove"] {
	padding-right: var(--space-6);
}

.shared-detail .detail-top .TB>span:first-child {
	transform: translateX(-7px);
}

.shared-detail .detail-top .TB a[data-type="Remove"]::after,
.shared-detail .detail-top .TB a[data-type="Add"]::after {
	position: absolute;
	right: -8px;
	top: -2px;
	height: 20px;
	width: 20px;
	pointer-events: none;
	font-family: "Font Awesome 5 Free";
	font-weight: 500;
	content: "\f004";
	font-size: var(--text-base);
}

.shared-detail .detail-top .TB a[data-type="Remove"]::after {
	font-weight: 600;
	right: -3px;
	top: -4px;
}

.shared-detail .detail-top .action-item {
	font-family: var(--font-family-display);
	font-size: var(--text-base);
	font-weight: 100;
	line-height: var(--leading-tight);
	padding: 14px 76px 11px;
	background-color: var(--visit-btn-bg);
	color: #efdbb2;
	border-radius: var(--rounded-full);
	margin: 0;
	min-width: 270px;
	display: block;
	white-space: nowrap;
}

.shared-detail .detail-top .action-item i {
	margin-left: var(--space-1);
}

.shared-detail .detail-top .info-section .bottom-actions .addThis,
.shared-detail .detail-top .info-section .bottom-actions>div>* {
	margin-top: 11px;
}

.shared-detail .detail-top .info-section .bottom-actions .addThis {
	margin-top: var(--space-4);
}

@media (min-width: 780px) {
	.shared-detail .detail-top .info-section .bottom-actions {
		display: flex;
		flex-direction: row;
		justify-content: space-between;
		padding: 0;
		align-items: flex-start;
		margin-bottom: 57px;
		gap: var(--space-1);
	}

	.shared-detail .detail-top .info-section .bottom-actions .addThis a,
	.shared-detail .detail-top .info-section .bottom-actions .addThis .share-buttons {
		margin-top: 0;
	}

	.shared-detail .detail-top .info-section:after {
		content: none;
	}

	.shared-detail .detail-top .info-section .bottom-actions {
		position: relative;
	}

	.shared-detail .detail-top .info-section .bottom-actions:after {
		content: "";
		position: absolute;
		left: 50%;
		transform: translateX(-50%);
		bottom: -40px;
		width: 100%;
		height: 1px;
		background-image: linear-gradient(to right, #333 10%, rgb(0 0 0 / 0%) 0%);
		background-position: top;
		background-size: 6px 1px;
		background-repeat: repeat-x;
	}
}

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

.shared-detail .detail-top .info-section .bottom-actions .dropdown {
	display: flex;
}

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

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

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

.shared-detail .info-section .detail-info-bar {
	max-width: 375px;
	margin: 0 auto;
	padding: var(--space-5) 28px;
}

@media (min-width: 780px) {
	.shared-detail .info-section .detail-info-bar {
		order: 1;
		margin: 0;
		padding: var(--space-5) 0;
	}

	.shared-detail .info-section .detail-info-bar .split-pane {
		padding: 0;
	}
}

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

.shared-detail .detail-info-bar .split-pane.secondary {
	padding-bottom: var(--space-5);
	position: relative;
}

.shared-detail .detail-info-bar .split-pane.secondary::after,
.shared-detail .detail-info-bar .split-pane.custom::after {
	content: "";
	position: absolute;
	left: 50%;
	transform: translateX(-50%);
	bottom: 0;
	width: 100%;
	height: 1px;
	background-image: linear-gradient(to right, #333 10%, rgb(0 0 0 / 0%) 0%);
	background-position: top;
	background-size: 6px 1px;
	background-repeat: repeat-x;
}

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

.shared-detail .detail-info-bar .split-pane.custom {
	margin-top: 30px;
	padding-bottom: var(--space-6);
	position: relative;
}

@media (min-width: 64em) {

	.shared-detail .detail-info-bar .split-pane.secondary::after,
	.shared-detail .detail-info-bar .split-pane.custom::after {
		content: none;
	}

	.shared-detail .detail-info-bar .split-pane {
		position: relative;
	}

	.shared-detail .detail-info-bar .split-pane+.split-pane:after {
		content: "";
		position: absolute;
		left: -23px;
		top: 50%;
		transform: translateY(-50%);
		width: 2px;
		height: 100%;
		background-image: linear-gradient(to bottom, #333 10%, rgb(0 0 0 / 0%) 0%);
		background-position: right;
		background-size: 1px 6px;
		background-repeat: repeat-y;
	}

	.shared-detail .detail-info-bar .split-pane+.split-pane.secondary+.split-pane:last-child::after {
		left: 24px;
	}

	.shared-detail .detail-top .info-section .bottom-actions {
		display: flex;
		flex-direction: row;
		justify-content: space-between;
		padding-right: 7px;
		align-items: flex-start;
		margin-bottom: 57px;
	}

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

.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: 400;
	line-height: var(--leading-tight);
	margin: 0;
	list-style: none;
}

.shared-detail .detail-info-bar ul li {
	display: flex;
	align-items: center;
	margin-bottom: 28px;
}

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

.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.email,
.shared-detail .detail-info-bar ul li .two-line-wrap>* {
	font-size: var(--text-base);
	font-family: var(--font-body);
	font-weight: 500;
	color: var(--text-color);
	text-align: left;
}

.shared-detail .detail-info-bar ul li.email {
	margin-top: -2px;
	margin-bottom: 0;
}

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

.shared-detail .detail-info-bar ul li .street-address {
	margin-bottom: 6px;
}

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

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

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

.shared-detail .detail-info-bar ul.info-list li i.fa-map-marker-alt {
	margin-top: 3px;
}

.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: 400;
	line-height: var(--leading-tight);
	color: var(--text-color);
}

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

.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: var(--space-3) auto;
}

.shared-detail .t360-cont {
	margin: var(--space-5) auto;
}

@media (min-width: 64em) {
	.shared-detail .t360-cont {
		max-width: 902px;
		margin: var(--space-5) auto var(--space-20);
	}

	.shared-detail .detail-drawers {
		margin-bottom: var(--space-20);
		max-width: 902px;
	}

	.shared-detail .detail-drawers .drawer-button i {
		margin-right: var(--space-1);
	}

	.shared-detail .detail-info-bar .social-icons {
		justify-content: center;
	}
}

@media (min-width: 1300px) {

	.shared-detail .detail-info-bar .social-icons {
		margin-left: -30px;
	}
}

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

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

.shared-detail .detail-drawers>dl.drawers>dd.active>.content a {
	color: var(--text-black);
}

.shared-detail .detail-drawers>dl.drawers>dd.active>.content p {
	font-size: var(--text-base);
	font-family: var(--font-body);
	font-weight: 500;
	letter-spacing: var(--tracking-wide);
	line-height: 1.86;
	margin-bottom: var(--space-5);
}

.shared-detail .detail-drawers>dl.drawers>dd {
	margin-bottom: var(--space-3);
}

.shared-detail .detail-drawers>dl.drawers>dd.active {
	margin-bottom: 0;
}

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

.shared-detail .detail-drawers .drawer-button:after {
	content: "";
	position: absolute;
	left: 50%;
	transform: translateX(-50%);
	bottom: 0;
	width: 100%;
	height: 1px;
	background-image: linear-gradient(to right, #333 10%, rgb(0 0 0 / 0%) 0%);
	background-position: top;
	background-size: 6px 1px;
	background-repeat: repeat-x;
}

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

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

@media (min-width: 780px) {
	.shared-detail {
		margin: 0 auto;
	}

	.shared-detail .detail-top {
		flex-direction: row;
		align-items: stretch;
		max-width: 1200px;
		margin: 0 auto;
		gap: var(--space-3);
		position: relative;
	}

	.shared-detail .detail-top .info-section {
		display: flex;
		flex-direction: column;
		justify-content: flex-start;
		order: 0;
		flex-basis: auto;
		border-radius: 10px 40px 10px 10px;
		max-width: 500px;
		padding: var(--space-12) var(--space-6);
		text-align: left;
	}

	.shared-detail .detail-info-bar .split-pane {
		margin-bottom: 0;
		padding: var(--space-3) 0 0;
		flex: 1;
	}

	.shared-detail .detail-drawers>dl.drawers>dd.active>.content {
		padding: var(--space-4) 0 var(--space-6);
	}

	.shared-detail .detail-drawers .drawer-button {
		padding: var(--space-5) 0;
		margin-bottom: var(--space-3);
		letter-spacing: 0.01em;
		font-size: 30px;
	}

	.shared-detail .detail-drawers .drawer-button:after {
		bottom: 9px;
	}

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

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

	.shared-detail .detail-top .detail-gallery img {
		border-radius: 40px 10px;
	}
}

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

	.shared-detail {
		margin: 0 auto;
		padding-top: 138px;
	}

	.shared-detail .detail-info-bar {
		display: flex;
		padding: var(--space-16) 0;
		margin-bottom: 0;
		max-width: 988px;
		margin: 0 auto;
	}

	.shared-detail .detail-top {
		gap: var(--space-10);
	}

	.shared-detail .detail-top .detail-gallery {
		align-self: flex-start;
	}

	.shared-detail .detail-top .TB {
		text-align: center;
	}

	.shared-detail:after {
		height: 400px;
		background-image: linear-gradient(75deg, rgb(0, 165, 173) 0%, rgb(0, 131, 138) 33%, rgb(0, 111, 149) 66%, rgb(51, 63, 72) 100%);
	}

	.shared-detail .detail-top:before {
		content: "";
		position: absolute;
		top: -100px;
		right: 116px;
		width: 268px;
		height: 171px;
		background-image: url(/includes/public/assets/shared/graphic-silhouettes/flying-pelican.svg);
		background-repeat: no-repeat;
		pointer-events: none;
		z-index: 15;
	}

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

@media (min-width: 75em) {
	.shared-detail:after {
		height: 547px;
	}
}

.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>dl.drawers>dd.active>.content>div>div {
	margin-bottom: var(--space-5);
}

.shared-detail .detail-drawers>dl.drawers>dd.active>.content>div>div .content-section h4 a,
.shared-detail .detail-drawers>dl.drawers>dd.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>dl.drawers>dd.active>.content>div>div .inner {
	max-width: var(--width-compact);
}

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

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

	.shared-detail .detail-drawers>dl.drawers>dd.active>.content>div>div .img-cont {
		margin-bottom: 0;
		max-width: 414px;
		min-width: 414px
	}
}

.shared-detail .tripadvisor-snippet {
	height: unset;
	margin-bottom: 28px;
}

.shared-detail .tripadvisor-snippet>h4 {
	font-size: var(--text-sm);
	color: #00aa6c;
	font-weight: 100;
	letter-spacing: var(--tracking-wider);
}

.shared-detail .tripadvisor-snippet>h4:first-child {
	display: none;
}

@media (min-width: 64em) {
	.shared-detail .tripadvisor-snippet {
		/* max-width: 238px;
		margin: 0 auto; */
	}
}

.shared-detail .tripadvisor-snippet .reviews-rating-line {
	display: flex;
	align-items: flex-end;
	position: relative;
	left: -8px;
}

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

.shared-detail .tripadvisor-snippet .reviews-rating-line-text {
	top: 1px;
	font-family: var(--font-display);
	font-size: var(--text-sm);
	text-decoration: underline;
	text-underline-offset: 1px;
	font-weight: 300;
}

.shared-detail .tripadvisor-snippet .reviews-rating-line-text a {
	color: #00aa6c;
}

/* Yelp */
.shared-detail .yelp-top {
	display: flex;
	align-items: center;
}

.shared-detail .yelp-top>a>img {
	max-width: 50px;
}

.shared-detail .yelp-top>img {
	min-width: 109px;
	margin-right: var(--space-3);
}

.shared-detail .yelp-bottom .yelp-price,
.shared-detail .yelp-bottom .yelp-review-count {
	font-size: var(--text-sm);
	font-weight: 600;
	position: relative;
	top: -3px;
}

.shared-detail #yelpTab .reviews-rating-line a {
	font-weight: 600;
}

.shared-detail #yelpTab .review-meta {
	font-size: var(--text-2xl);
	font-weight: 500;
}

.shared-detail #yelpTab .review-content {
	margin-top: var(--space-3);
	margin-bottom: var(--space-10);
}

.shared-detail #yelpTab .review-user-image {
	display: none;
}

/* ---- */

@media (min-width: 64em) {
	.shared-detail .split-pane:nth-child(2) .yelp-snippet {
		width: max-content;
		margin: 0 auto;
	}
}

@media (min-width: 64em) {
	.shared-detail .detail-top+.detail-info-bar {
		transform: translateX(44px);
	}
}

@media (min-width: 1400px) {
	.shared-detail .detail-top .info-section {
		min-height: 620px;
	}
}

/* Tripadvisor */
.shared-detail div>div.tripadvisor-reviews .review {
	margin-bottom: var(--space-10);
}

.shared-detail div>div.tripadvisor-reviews .reviewBoxTitle {
	margin-top: var(--space-10);
}

.shared-detail div>div.tripadvisor-reviews .reviewTitle {
	margin-bottom: 0;
	font-size: var(--text-2xl);
}

.shared-detail div>div.tripadvisor-reviews .review-date {
	font-size: var(--text-sm);
	font-weight: 500;
}

.shared-detail div>div.tripadvisor-reviews .userName {
	display: flex;
	flex-direction: column;
	font-weight: 600;
}

.shared-detail div>div.tripadvisor-reviews .review-header {
	grid-column: span 2;
	margin-bottom: var(--space-4);
}

.shared-detail div>div.tripadvisor-reviews .reviewScore {
	display: flex;
	transform: translateX(-7px);
}

.shared-detail div>div.tripadvisor-reviews .reviewText {
	margin-bottom: 0;
}

.shared-detail .detail-drawers>dl.drawers>dd.active>.content>div>div.tripadvisor-reviews span.reviews-rating-line-text,
.shared-detail .detail-drawers>dl.drawers>dd.active>.content>div>div.tripadvisor-reviews .fullreview {
	color: var(--teal);
	text-decoration: none;
}

@media (min-width: 40em) {
	.shared-detail div>div.tripadvisor-reviews .reviewInfo {
		display: grid;
		grid-template-columns: 0.4fr 1fr;
	}
}

.shared-detail div>div.tripadvisor-reviews header.tripadvisorHeader a {
	text-decoration: none;
}

.shared-detail div>div.tripadvisor-reviews .reviews-rating-line {
	display: flex;
}

.shared-detail .detail-top .book-now  {
	background-color: var(--vist-btn-light);
	color: var(--visit-btn-bg);
	font-weight: 400;
}

.shared-detail .detail-top .info-section .bottom-actions .book-now:hover  {
	background-color: var(--vist-btn-light);
}