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

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

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

@media screen and (min-width: 40em) {
	.shared-detail .detail-top .detail-gallery {
		order: 3;
	}
}

.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;
	left: 0px;
	padding: 10px 9px 10px 13px;
	color: var(--text-black);
	background-color: #81c44d;
	font-family: var(--font-family-body);
	font-size: 0.9688rem;
	font-weight: 700;
	line-height: var(--leading-none);
	letter-spacing: -0.02em;
}

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

@media (min-width: 64em) {
	.shared-detail .detail-top .detail-gallery .gallery-count {
		padding: 14px 20px 16px 22px;
		font-size: 1.2125rem;
		letter-spacing: -0.03em;
	}

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

.shared-detail .detail-top .info-section {
	order: 2;
	flex: 1 1 50%;
	padding: var(--space-4) var(--space-5) var(--space-10);
	background-color: var(--text-black);
}

.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-top: var(--space-4);
	gap: var(--space-1);
	column-gap: 2px;
	row-gap: 10px;
}

.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: 3.75rem;
	font-weight: 700;
	line-height: calc(60 / 60);
	color: #fff;
	margin: 8px 0 6px;
	letter-spacing: 0.03em;
}

.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 {
	display: flex;
	align-items: center;
	gap: 4px;
	background: var(--yellow);
	color: var(--text-black);
	text-transform: uppercase;
	font-weight: 600;
	font-family: var(--font-display);
	font-size: 1.3375rem;
	letter-spacing: 0.03em;
	line-height: calc(21.4 / 19.81);
	padding: 2px 6px 0px;
	text-decoration: none;
}

.shared-detail .detail-top .action-item > i {
	font-size: var(--text-lg);
	transform: translateY(-2px);
}

@media screen and (min-width: 64em) {
	.shared-detail .detail-top .action-item {
		padding: 2px 7px 1px 10px;
		font-size: 1.6rem;
		letter-spacing: 0.032em;
		gap: 6px;
	}

	.shared-detail .detail-top .action-item > i {
		font-size: 1.375rem;
		transform: translateY(1px);
	}

	.shared-detail .detail-top h1 {
		font-size: 5.9375rem;
		line-height: calc(92 / 95);
		margin-top: 4px;
		margin-bottom: 5px;
	}
}

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

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

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

.shared-detail .detail-top .info-section .bottom-actions .dropdown-menu {
	position: absolute;
	left: 0;
	z-index: 9;
	margin: var(--space-10) 0 0 0;
	padding: var(--space-3) var(--space-4);
	color: var(--text-black);
	background-color: var(--background-color);
	border: 1px solid rgba(0, 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;
	text-decoration: none;
}

.shared-detail .detail-top .info-section .bottom-actions .dropdown-menu a:hover {
	background-color: transparent;
	color: inherit;
}

@media (max-width: 40em) {
	.shared-detail .detail-top .info-section .bottom-actions .dropdown-menu {
		max-width: 320px;
	}

	.shared-detail .detail-top .info-section .bottom-actions .dropdown-menu a {
		white-space: normal;
	}
}

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

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

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

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

.shared-detail .detail-info-bar .split-pane.secondary {
	display: flex;
	flex-direction: column;
	gap: var(--space-3);
}

@media (min-width: 64em) {
	.shared-detail .detail-info-bar .split-pane.secondary {
		transform: translateX(-5px);
	}

	.shared-detail .detail-info-bar .split-pane.secondary + .custom {
		justify-content: flex-end;
	}

	.shared-detail .detail-info-bar .split-pane.custom {
		display: flex;
		padding-right: 0;
		justify-content: flex-start;
	}
}

.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: baseline;
	margin-bottom: var(--space-2);
	font-size: var(--text-base);
	letter-spacing: 0.02em;
	font-weight: 600;
}

.shared-detail .detail-info-bar ul li a:hover,
.shared-detail .detail-info-bar ul li a {
	font-weight: 600;
	text-decoration: none;
	background-color: transparent;
}

.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.location {
	display: inline-flex;
	gap: 3px;
	flex-wrap: wrap;
}

.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-1);
	width: 26px;
	font-size: var(--text-xl);
	color: var(--text-black);
	transform: translateY(2px);
}

.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 dd a,
.shared-detail .detail-info-bar dd a:hover {
	background-color: transparent;
	text-decoration: underline;
	text-decoration-color: inherit;
	font-weight: 600;
}

.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 .reviews-provider-content .review {
	display: flex;
	margin: 15px 0 25px;
}

.shared-detail .reviews-provider-content .review .review-meta {
	width: 100px;
	min-width: 100px;
	margin-right: var(--space-5);
}

.shared-detail .yelp-snippet .yelp-top {
	display: flex;
	align-content: center;
	align-items: center;
	padding-right: var(--space-2);
}
.shared-detail .yelp-snippet {
	padding-bottom: var(--space-3);
	flex-wrap: wrap;
}

.shared-detail .yelp-snippet,
.shared-detail .yelp-snippet .yelp-bottom {
	display: flex;
	align-items: center;
	color: var(--text-black);
}

.shared-detail .yelp-snippet .yelp-top {
	flex-direction: row-reverse;
}

.shared-detail .yelp-snippet .yelp-top > img {
	width: 90px;
}

.shared-detail .yelp-snippet .yelp-top > a {
	width: 64px;
	margin-right: var(--space-2);
}

.shared-detail .yelp-snippet .yelp-bottom span {
	font-size: var(--text-base-2);
	font-weight: 600;
	white-space: nowrap;
	padding: 0 var(--space-1) 0 0;
	color: inherit;
}

.shared-detail .yelp-snippet .yelp-bottom span:last-child {
	font-family: var(--font-body);
	padding-left: var(--space-1);
}
@media (min-width: 64em) {
	.shared-detail .yelp-snippet {
		padding-bottom: var(--space-2);
	}

	.shared-detail .yelp-snippet .yelp-top > a {
		width: 70px;
	}

	.shared-detail .yelp-snippet .yelp-bottom span:last-child {
		padding-left: var(--space-2);
		letter-spacing: 0.022em;
	}
}

.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: 22px;
	margin-bottom: 0;
}

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

.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: 996px;
	margin: 0 auto;
	margin-bottom: var(--text-xl);
}

.shared-detail .detail-drawers .threshold-container {
	margin-top: 17px;
	margin-bottom: 15px;
	padding: 0 17px;
}
@media (min-width: 40em) {
	.shared-detail .detail-drawers {
		margin-bottom: 26px;
	}
}
@media (min-width: 64em) {
	.shared-detail .detail-drawers .threshold-container {
		margin-top: 26px;
		margin-bottom: 75px;
		padding: 0px 16px;
	}
}

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

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

.shared-detail .detail-drawers .drawer-button {
	display: flex;
	align-items: center;
	justify-content: space-between;
	background-color: transparent;
	padding: var(--space-5);
	padding-right: 16px;
	margin-bottom: 25px;
	width: 100%;
	font-family: var(--font-display);
	font-size: var(--text-3xl-2);
	font-weight: 700;
	line-height: var(--leading-none);
	color: #333333;
	letter-spacing: 0.02em;
	position: relative;
}

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

.shared-detail .detail-drawers .drawer-button:after {
	content: '';
	position: absolute;
	left: 50%;
	transform: translateX(-50%);
	bottom: 11px;
	background-color: var(--text-black);
	height: 2px;
	width: calc(100% - 30px);
}

.shared-detail .detail-drawers .core-styles p {
	font-size: var(--text-base);
	font-weight: 600;
	line-height: calc(29 / 16);
	margin-bottom: 6px;
}

.shared-detail .detail-drawers .drawer-button i {
	margin-left: var(--space-4);
	font-size: 1.375rem;
	background: var(--yellow);
	width: 36px;
	height: 36px;
	display: flex;
	justify-content: center;
	align-items: center;
	color: var(--text-black);
}

.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 {
		flex-direction: row;
		align-items: stretch;
		background: var(--text-black);
	}

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

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

	.shared-detail .detail-drawers > dl.drawers > dd > .content {
		padding: 17px 18px;
	}

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

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

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

	.shared-detail .detail-drawers .drawer-button {
		padding: var(--space-5) 15px;
		padding-left: 19px;
		margin-bottom: var(--space-3);
		font-size: 2.625rem;
	}

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

	.shared-detail .detail-drawers .core-styles p {
		font-size: 1.1875rem;
		line-height: calc(29 / 19);
	}

	.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 {
		padding-top: 16px;
	}
}

@media (min-width: 900px) {
	.shared-detail .detail-drawers .active #socialFeedsTab {
		display: flex;
		justify-content: space-between;
	}

	.shared-detail .detail-drawers #socialFeedsTab > div {
		flex: 1;
	}

	.shared-detail .detail-top .info-section {
		padding: 38px var(--space-10) var(--space-8);
	}

	.shared-detail .detail-drawers .social-cont .tweets {
		max-height: 800px;
		overflow-y: auto;
		padding-right: var(--space-4);
	}

	.shared-detail .detail-info-bar {
		display: grid;
		padding: 30px 0 var(--space-10);
		margin-bottom: 0;
		grid-template-columns: 1fr 0.9fr 0.5fr;
	}
}

@media (min-width: 1200px) {
	.shared-detail .detail-top .info-section {
		padding: 98px var(--space-24) var(--space-8);
	}
}

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

.shared-detail .reviews-rating-line a {
	text-decoration-color: var(--text-black);
	text-underline-offset: 1px;
	text-decoration-thickness: 1px;
}

.shared-detail .reviews-rating-line a > img {
	min-width: 145px;
}

.shared-detail .reviews-rating-line .reviews-rating-line-text {
	display: none;
}

@media (min-width: 64em) {
	.shared-detail .reviews-rating-line {
		display: flex;
	}

	.shared-detail .reviews-rating-line .reviews-rating-line-text {
		display: block;
	}

	.shared-detail .reviews-rating-line .reviews-rating-line-text a {
		font-weight: 600;
		margin-left: 9px;
	}
}

@media (hover: hover) {
	.shared-detail .reviews-rating-line a:hover {
		background-color: transparent;
		text-decoration: underline;
	}

	.shared-detail .detail-info-bar .social-icons a:hover {
		color: var(--text-black);
	}
}

.shared-detail .detail-drawers dl.drawers dd.active .amenities dl.subtab div.content.active {
	color: var(--text-black);
}

.shared-detail .detail-drawers #meetingfacilityTab .subtab:first-child .tab-button,
.shared-detail .detail-drawers .amenities .subtab.tab-buttons button.tab-button {
	color: var(--text-black);
	border: 2px solid var(--primary-color-700);
	background: transparent;
	font-weight: 600;
}

.shared-detail .detail-drawers #meetingfacilityTab .subtab:first-child dd.active > button.tab-button,
.shared-detail .detail-drawers .amenities .subtab.tab-buttons dd.active > button.tab-button {
	background-color: var(--primary-color-700);
	color: var(--text-black);
}

.shared-detail .detail-drawers div.meeting-facilities ul.meeting-subtab > li:nth-child(odd),
.shared-detail .detail-drawers .amenities div.subtab.content ul.amen-subtab > li:nth-child(odd) {
	background-color: var(--text-color-alt);
}

.shared-detail .detail-drawers #meetingfacilityTab .subtab:first-child {
	display: flex;
	flex-wrap: wrap;
	margin-bottom: 0;
}

.shared-detail .detail-drawers #meetingfacilityTab .subtab:first-child button.tab-button {
	margin-right: var(--space-3);
	margin-bottom: var(--space-3);
	padding: var(--space-2) var(--space-3);
}

.shared-detail #meetingfacilityTab > div > div.content.active > div > ul > li {
	display: flex;
	padding: var(--space-3);
	margin: 0;
	max-width: 100%;
	justify-content: space-between;
}
.shared-detail #meetingfacilityTab > div > div.content.active > div > ul > li:nth-child(odd) {
	background-color: var(--text-color-alt);
}
