.shared-detail {
	--font-family-display: var(--font-display);
	--font-family-body: var(--font-body);
	--background-color: var(--text-black);
	--background-color-alt: var(--gray-200);
	--text-color: var(--white);
	--text-color-alt: var(--text-black);
	--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-bottom-border: var(--sw-selected-color);
	--nearby-tab-bottom-border-alt: var(--gray-400);
	--accent-color: var(#fff);

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

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

.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 {
	position: absolute;
	bottom: var(--space-3);
	left: var(--space-3);
	color: var(--text-color-alt);
	font-family: var(--font-family-body);
	font-size: var(--text-lg);
	font-weight: 400;
	line-height: var(--leading-none);
	z-index: 1;
	border-radius: 4px;
	display: flex;
	gap: 1px;
}

.shared-detail .detail-top .detail-gallery .gallery-count > div {
	background-color: #fff;
	height: 40px;
	display: grid;
	place-items: center;
	padding: 0 11px;
	font-size: 14px;
	border-radius: 4px 0 0 4px;
}

.shared-detail .detail-top .detail-gallery .gallery-count .counter {
	padding-left: 18px;
	padding-right: 14px;
	border-radius: 0 4px 4px 0;
}

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

@media (min-width: 64em) {
	.shared-detail .detail-top .detail-gallery .gallery-count {
		bottom: var(--space-5);
		left: var(--space-5);
	}
}

.shared-detail .detail-top .info-section {
	order: 2;
	flex: 1 1 50%;
	padding: var(--space-4);
	padding-top: var(--space-8);
	background-color: var(--background-color);
	position: relative;
}

.shared-detail .detail-top .info-section:before {
	content: '';
	position: absolute;
	left: 50%;
	top: 0;
	transform: translateX(-50%);
	height: 1px;
	width: calc(100% - 32px);
	background-color: #444;
	pointer-events: none;
}
.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 .top-actions {
	justify-content: space-between;
	margin-bottom: var(--space-8);
}

@media (min-width: 64em) {
	.shared-detail .detail-top .info-section .top-actions {
		margin-bottom: var(--space-6);
	}
}
.shared-detail .detail-top .info-section .top-actions a {
	color: #fff;
}

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

.shared-detail .detail-top .info-section .top-actions [data-tb-button] a {
	background: #fff;
	width: 30px;
	height: 30px;
	text-align: center;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	position: relative;
}

.shared-detail .detail-top .info-section .top-actions [data-tb-button] a i {
	font-weight: 400;
	font-size: 0.9375rem;
	color: var(--orange);
}

.shared-detail .detail-top .info-section .top-actions [data-tb-button] a[data-type='Remove'] {
	background-color: var(--orange);
}
.shared-detail .detail-top .info-section .top-actions [data-tb-button] a[data-type='Remove'] i {
	color: #fff;
	font-weight: 900;
}

.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-5xl);
	font-weight: 700;
	line-height: var(--leading-none);
	color: var(--text-color);
	margin-bottom: var(--space-8);
	text-transform: uppercase;
}

@media (min-width: 64em) {
	.shared-detail .detail-top h1 {
		font-size: 3.25rem;
		margin-bottom: var(--space-5);
	}
}

.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 dd a {
	color: inherit;
}

.shared-detail .detail-top dd a:hover {
	text-decoration: none;
}

.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-sm);
	font-weight: 400;
	line-height: var(--leading-tight);
	background-color: transparent;
	color: #fff;
	margin: 0;
}

.shared-detail .detail-top .action-item.url {
	text-decoration: underline;
	text-underline-offset: 2px;
}
.shared-detail .detail-top .info-section .bottom-actions > * {
	margin-top: var(--space-4);
	margin-right: var(--space-4);
}

.shared-detail .detail-top .info-section .bottom-actions .dropdown > button {
	padding: 0;
}

.shared-detail .detail-top .info-section .bottom-actions .dropdown > button:hover {
	background-color: inherit;
}

.shared-detail .detail-top .info-section .info-list {
	color: #fff;
	margin-bottom: var(--space-8);
}

@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-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: #fff;
	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;
}

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

.shared-detail > div.detail-info-bar {
	border: 1px solid #ddd;
	border-radius: 4px;
	padding: var(--space-4);
	margin: 30px auto;
	width: calc(100% - 30px);
}

.shared-detail .detail-info-bar .split-pane {
	margin-bottom: var(--space-4);
}
.shared-detail .detail-info-bar.primary {
	padding: 0;
}
.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 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-3);
}

.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;
	font-size: var(--text-sm);
}

@media (min-width: 40em) {
	.shared-detail .detail-top .action-item,
	.shared-detail .detail-info-bar ul li .two-line-wrap > * {
		font-size: var(--text-base);
	}
	.shared-detail .detail-info-bar.primary {
		display: block;
		margin: 0;
	}
}

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

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

.shared-detail .detail-info-bar ul.info-list li:hover a:not(.url) {
	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-black);
	margin-bottom: var(--space-2);
}

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

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

.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: 1230px;
	margin: 0 auto;
	margin-bottom: var(--space-5);
}

.shared-detail .detail-drawers .drawers {
	margin: 43px 15px 0;
	border: 1px solid #ddd;
	border-radius: 4px;
}

.shared-detail .detail-drawers .drawers > dd + dd {
	border-top: 1px solid #ddd;
}
@media (min-width: 64em) {
	.shared-detail .detail-drawers {
		margin-bottom: var(--space-32);
	}
}

.shared-detail .detail-drawers > dl.drawers > dd > .content {
	display: none;
	padding: 0 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);
	width: 100%;
	font-family: var(--font-display);
	font-size: 30px;
	font-weight: 700;
	line-height: var(--leading-none);
	text-transform: uppercase;
}

.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 {
		display: grid;
		grid-template-columns: 0.755fr 1fr;
		background: var(--text-black);
		margin-bottom: 83px;
	}
	.shared-detail .detail-top .detail-gallery {
		margin-bottom: -54px;
	}

	.shared-detail .detail-top .info-section:before {
		height: 2px;
	}

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

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

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

	.shared-detail .detail-drawers .drawer-button {
		padding: var(--space-10);
		margin-bottom: var(--space-3);
		font-size: 2.125rem;
	}

	.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 .detail-gallery {
		margin-bottom: -94px;
	}

	.shared-detail .detail-top {
		grid-template-columns: 0.628fr 1fr;
		margin-bottom: 124px;
		padding-left: calc(0px + (103 - 0) * ((100vw - 1024px) / (1400 - 1024)));
	}

	.shared-detail .detail-top .info-section {
		margin-right: calc(0px + (29 - 0) * ((100vw - 1024px) / (1400 - 1024)));
	}

	.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: 1400px) {
	.shared-detail .detail-top {
		padding-left: 103px;
	}
	.shared-detail .detail-top .info-section {
		margin-right: 29px;
		width: calc(100% - 29px);
	}
}

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

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

div.shared-detail .share-buttons .addthis_toolbox a {
	flex-direction: row-reverse;
}
