.shared-detail {
	--font-family-display: var(--font-display);
	--font-family-body: var(--font-body);
	--background-color: var(--gray-100);
	--background-color-alt: var(--gray-200);
	--text-color: var(--gray-900);
	--text-color-alt: var(--gray-100);
	--visit-btn-bg: var(--primary-color-700);
	--visit-btn-bg-alt: var(--primary-color-800);
	--dropdown-menu-text: var(--gray-800);
	--nearby-tab-bottom-border: var(--primary-color-700);
	--nearby-tab-bottom-border-alt: var(--gray-400);
	--accent-color: var(--primary-color-700);

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

.shared-detail::before {
	content: "";
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 206px;
	background: #f3f1f0;
}

@media (min-width: 40em) {
	.shared-detail::before {
		height: 400px;
	}
}

@media (min-width: 64em) {
	.shared-detail::before {
		height: 543px;
		clip-path: polygon(100% 0%, 100% 81%, 33% 95%, 0 100%, 0% 50%, 0 0);
	}
}

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

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

.shared-detail .share-buttons .addthis_toolbox {
	display: flex;
	align-items: flex-start;
	flex-direction: row-reverse;
}

.shared-detail .detail-top {
	display: flex;
	flex-direction: column;
	border-bottom: 2px solid #80808042;
	padding-top: var(--space-5);
}

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

.shared-detail .detail-top .detail-gallery 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 {
	border-radius: 50%;
	position: absolute;
	bottom: 29px;
	left: 30px;
	color: #737373;
	background-color: #fff;
	font-family: var(--font-family-body);
	font-size: 22px;
	width: 35px;
	height: 35px;
	justify-content: center;
	align-items: center;
	display: none;
}

.shared-detail .detail-top .info-section {
	order: 2;
	flex: 1 1 50%;
	padding: 36px var(--space-5) 35px;
	background-color: rgb(255 255 255 / 75%);
	box-shadow: 0px 3px 9px 0px rgb(0 0 0 / 15%);
	margin: 0 var(--space-5);
	position: relative;
	top: -20px;
}

.shared-detail .detail-top .info-section+div {
	order: 2;
	position: relative;
	top: -3px;
}

.shared-detail .detail-top .info-section .top-actions,
.shared-detail .detail-top .info-section .bottom-actions {
	display: flex;
	align-items: flex-start;
	position: relative;
	flex-direction: column;
	gap: var(--space-2);
}

.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: 26px;
	font-weight: 700;
	line-height: 30px;
	color: #000;
	margin-bottom: var(--space-1);
}

.shared-detail .detail-top .top-actions>#inner {
	display: flex;
	align-items: center;
	justify-content: flex-start;
	gap: var(--space-5);
	margin-bottom: var(--space-3);
}

.shared-detail .detail-top .top-actions>#inner a {
	position: relative;
	white-space: nowrap;
}

.shared-detail .detail-top .top-actions>#inner a.booking:after,
.shared-detail .detail-top .top-actions>#inner a.tour:after {
	content: "";
	position: absolute;
	right: -13px;
	top: 50%;
	transform: translateY(-50%);
	height: 33px;
	width: 2px;
	background-color: #e0e0e0;
}

.shared-detail .detail-top .top-actions>#inner a.booking:after {
	right: -10px;
}

.shared-detail .detail-top .top-actions>#inner img:not(.mobile) {
	display: none;
}

@media (min-width: 40em) {

	.shared-detail .detail-top .top-actions>#inner {
		flex-flow: wrap;
		margin-left: 1px;
		gap: 30px 40px;
		margin-bottom: var(--space-5);
	}

	.shared-detail .detail-top .top-actions>#inner a.tour {
		flex-basis: 100%;
	}

	.shared-detail .detail-top .top-actions>#inner a.tour:after {
		content: none;
	}

	.shared-detail .detail-top .top-actions>#inner a.booking:after {
		right: -21px;
		height: 43px;
	}

	.shared-detail .detail-top .top-actions>#inner img.mobile {
		display: none;
	}

	.shared-detail .detail-top .top-actions>#inner img:not(.mobile) {
		display: block;
	}

	.shared-detail .detail-top h1 {
		font-size: 35px;
		line-height: 38px;
		margin-bottom: var(--space-1);
	}

	.shared-detail .detail-top .detail-gallery .gallery-count {
		display: flex;
	}
}

@media (min-width: 64em) {
	.shared-detail .detail-top h1 {
		font-size: 42px;
		line-height: 48px;
	}
}

.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 .action-item {
	font-family: var(--font-family-body);
	font-size: 13px;
	font-weight: 600;
	line-height: var(--leading-tight);
	color: #737373;
	border-radius: 0;
	margin: 0;
	text-decoration: none;
	letter-spacing: 0.025em;
	background: transparent;
	padding: 0;
}

.shared-detail .detail-top .action-item i {
	transform: rotate(45deg);
	color: var(--orange);
	font-size: 14px;
}

@media (min-width: 64em) {
	.shared-detail .detail-top .action-item i {
		font-size: 17px;
		margin-left: 3px;
	}
}

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

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

.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: #000;
	background-color: var(--off-white);
	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;
}

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

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

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

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

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

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

@media (min-width: 50em) {
	.shared-detail .detail-info-bar ul li {
		margin-bottom: 0;
	}
}

.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;
	font-size: 15px;
	line-height: 22px;
	color: #000;
}


.shared-detail .detail-info-bar ul li a {
	font-weight: 100;
	text-decoration: none;
	font-size: 15px;
}

@media (min-width: 64em) {
	.shared-detail .detail-info-bar ul.info-list li:nth-child(3) {
		margin-left: 75px;
	}

	.shared-detail .detail-info-bar ul li .two-line-wrap>* {
		font-size: 19px;
		line-height: 29px;
	}

	.shared-detail .detail-info-bar ul.info-list li .two-line-wrap>* {
		font-size: 19px;
		line-height: 29px;
		white-space: nowrap;
	}

	.shared-detail .detail-info-bar ul li a {
		font-size: 19px;
	}
}

.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);
	font-size: 17px;
	color: #fff;
	width: 40px;
	height: 40px;
	background: #21b5a1;
	display: flex;
	align-items: center;
	justify-content: center;
	position: relative;
	margin-right: 17px;
}

@media (min-width: 50em) {
	.shared-detail .detail-info-bar ul.info-list li i {
		margin-right: 26px;
	}
}

.shared-detail .detail-info-bar ul.info-list li i:after {
	content: "";
	position: absolute;
	top: 5px;
	left: 5px;
	background: rgb(33 181 161 / 65%);
	height: 100%;
	width: 100%;
	z-index: -1;
}

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

@media (max-width: 40em) {
	.shared-detail .detail-info-bar dl dd:last-child {
		margin-bottom: var(--space-5);
	}
}

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

.shared-detail .detail-info-bar .social-icons {
	display: flex;
	list-style: none;
	margin-left: 0;
	margin-bottom: var(--space-6);
}

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

.shared-detail .detail-info-bar .social-icons a {
	font-size: 27px;
}

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

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

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

@media (min-width: 40em) {
	.shared-detail .detail-info-bar .social-icons li {
		margin-right: var(--space-6);
	}

	.shared-detail .detail-drawers {
		margin-bottom: 68px;
	}

	.shared-detail .detail-top .action-item {
		font-size: 16px;
	}

	.shared-detail .detail-info-bar .social-icons a {
		font-size: 37px;
	}

	.shared-detail .detail-info-bar .social-icons a[data-sv-service="facebook"] {
		font-size: 29px;
	}
}

.shared-detail .detail-drawers>dl.drawers>dd>.content {
	display: none;
	padding: 0;
}

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

.shared-detail .detail-drawers dd {
	margin-left: 0;
	border-bottom: 2px solid #80808038;
	margin-bottom: 10px;
}

.shared-detail .detail-drawers dd.active {
	padding-bottom: 21px;
}

.shared-detail .detail-drawers .drawer-button {
	display: flex;
	align-items: center;
	justify-content: flex-end;
	background-color: transparent;
	padding: 0 2px;
	margin-bottom: 10px;
	width: 100%;
	font-family: var(--font-family-body);
	font-size: 18px;
	font-weight: 100;
	line-height: var(--leading-none);
	color: var(--gray);
	text-transform: uppercase;
	letter-spacing: 0.3em;
	flex-direction: row-reverse;
	gap: 8px;
	outline: none;
	text-decoration: none;
}

.shared-detail .detail-drawers .drawer-button i {
	font-size: 21px;
	background: #eae8e4;
	width: 35px;
	height: 35px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
}

.shared-detail .detail-drawers dd.active .drawer-button {
	margin-bottom: 14px;
}

@media (min-width: 40em) {
	.shared-detail .detail-drawers dd.active .drawer-button {
		margin-bottom: 7px;
	}

	.shared-detail .detail-drawers dd.active {
		padding-bottom: 53px;
	}

	.shared-detail .detail-drawers .drawer-button i {
		margin-right: 5px;
	}
}

.shared-detail .detail-drawers .drawer-button i:before {
	width: 13px;
}

.shared-detail .detail-drawers>dl.drawers>dd>.content p {
	line-height: 22px;
}

.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 .detail-info-bar .split-pane.primary .info-list li:nth-child(2) .two-line-wrap {
	flex-direction: column;
	display: flex;
	align-items: flex-start;
}

@media (min-width: 40em) {
	.shared-detail .detail-top {
		flex-direction: row;
		align-items: stretch;
		grid-template-columns: 1.3fr 1fr;
		max-width: 1163px;
		margin: 0 auto;
		display: grid;
		padding-top: 55px;
	}
}
@media (min-width: 64em) {
	.shared-detail .detail-top {
		grid-template-columns: 1.9fr 1fr;
	}
}
@media (min-width: 40em) {
	.shared-detail {
		margin: 0 auto;
	}

	.shared-detail .detail-drawers dd {
		margin-bottom: 0px;
	}

	.shared-detail .detail-top .info-section {
		display: flex;
		flex-direction: column;
		justify-content: flex-start;
		padding: var(--space-4) var(--space-3);
		top: 0;
		left: -61px;
		width: calc(100% + 38px);
		height: max-content;
		align-self: center;
	}

	.shared-detail .detail-top .info-section+div {
		grid-column: 2 span;
		margin-top: 22px;
		margin-bottom: 3px;
	}

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

	.shared-detail .detail-info-bar .split-pane.primary {
		flex-basis: 100%;
		margin-bottom: 45px;
	}

	.shared-detail .detail-info-bar .split-pane.primary .info-list li:nth-child(2) {
		display: flex;
		align-items: center;
	}

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

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

	.shared-detail .detail-drawers .drawer-button {
		padding: var(--space-5) 0 11px;
		margin-bottom: var(--space-3);
		font-size: 25px;
	}

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

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

@media (min-width: 50em) {
	.shared-detail .detail-info-bar .split-pane.primary .info-list {
		display: flex;
		justify-content: flex-start;
		max-width: 914px;
		gap: 141px;
	}
}

@media (min-width: 40em) and (max-width: 64em) {

	.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: 75px var(--space-20) 94px;
	}

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

.shared-detail .top-inner-content {
	order: 1;
}

.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 .share-buttons .addthis_toolbox a.share-button {
	font-size: 13px;
	text-decoration: none;
	color: var(--gray);
	letter-spacing: 0.05em;
	margin-left: 5px;
}

.shared-detail .share-buttons .addthis_toolbox a.share-button i {
	color: var(--orange);
}

@media (min-width: 40em) {
	.shared-detail .share-buttons .addthis_toolbox a.share-button {
		margin-left: 20px;
		font-size: var(--text-base);
	}

	.shared-detail .share-buttons .addthis_toolbox a.share-button+a {
		transform: translateY(7px);
	}
}

.shared-detail .detail-drawers>dl.drawers>dd.active>.content>div>div {
	padding-bottom: 20px;
}

.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: 20px;
	font-weight: 700;
	line-height: 26px;
	color: var(--grey);
	margin-bottom: var(--space-2);
	-webkit-hyphens: auto;
	word-break: break-word;
	hyphens: auto;
}

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

@media (min-width: 64em) {
	.shared-detail .detail-drawers>dl.drawers>dd.active>.content>div>div .img-cont {
		padding-bottom: 0;
		flex: 1 1 40%;
	}

	.shared-detail .detail-drawers>dl.drawers>dd.active>.content>div>div .content-section {
		flex: 1 1 60%;
	}
}

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


.sv-lightbox .box-inner .lightbox-img {
	height: auto;
    width: auto;
    margin: 0 auto;
}