.shared-detail {
	--font-family-display: var(--font-smithsonian);
	--font-family-body: var(--font-body);
	--background-color: var(--gray-100);
	--background-color-alt: var(--primary-color-100);
	--title-color: var(--green-39);
	--text-color: var(--gray-400);
	--text-color-alt: var(--gray-100);
	--visit-btn-bg: var(--yellow-de);
	--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(--tertiary-color-100);

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

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

@media screen and (min-width: 64em) {
	.shared-detail .share-buttons {
		margin-bottom: 34px;
	}

	.shared-detail .detail-top .detail-gallery {
		flex: 1 1 56%;
	}
}

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

.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: var(--space-4) var(--space-5);
    color: var(--text-color-alt);
	font-family: var(--font-family-body);
	font-size: var(--text-lg);
	font-weight: 600;
	line-height: var(--leading-none);
}

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

@media screen and (min-width: 64em) {
	.shared-detail .detail-top .detail-gallery .gallery-count,
	.shared-detail .detail-top .detail-gallery .gallery-count i {
		font-size: 22px;
	}
}

.shared-detail .detail-top .info-section {
	order: 2;
	flex: 1 1 50%;
	padding: var(--space-6) var(--space-5) 0;
	
}

.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 {
	margin-bottom: var(--space-1);
}

.shared-detail .detail-top .info-section .bottom-actions {
	flex-wrap: wrap;
	justify-content: flex-start;
	gap: var(--space-1);
}



@media screen and (min-width: 64em) {
	.shared-detail .detail-top .info-section .bottom-actions {
		gap: 0;
		justify-content: space-between;
		align-self: flex-start;
	}
}

.shared-detail .detail-top .info-section .bottom-actions .btn-wrap + .btn-wrap {
	margin-left: 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 .info-section .top-actions .share-buttons .addthis_toolbox a {
	text-transform: uppercase;
	font-size: 11px;
	font-weight: 600;
	letter-spacing: 0.026em;
}

.shared-detail .detail-top .info-section .top-actions .share-buttons .addthis_toolbox a i {
	font-size: 11px;
	margin-left: 2px;
}

@media screen and (min-width: 64em) {
	.shared-detail .detail-top .info-section .top-actions .share-buttons .addthis_toolbox a {
		font-size: var(--text-sm);
	}

	.shared-detail .detail-top .info-section .top-actions .share-buttons .addthis_toolbox a i {
		font-size: 14px;
		margin-left: var(--space-1);
	}
}

.shared-detail .detail-top h1 {
	font-family: var(--font-family-display);
	font-size: 28px;
	font-weight: 500;
	line-height: 1.2;
    color: var(--title-color);
    margin-bottom: var(--space-5);
	text-transform: lowercase;
}

@media screen and (min-width: 64em) {
	.shared-detail .detail-top h1 {
		font-size: var(--text-4xl);
		margin-bottom: var(--space-8);
	}
}

.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-sm);
	font-weight: 400;
	line-height: var(--leading-relaxed);
    color: var(--text-color);
	margin-bottom: var(--space-3);
}

@media screen and (min-width: 64em) {
	.shared-detail .detail-top dl,
	.shared-detail .detail-top dt,
	.shared-detail .detail-top dd {
		font-size: var(--text-lg);
	}
}

.shared-detail .detail-top dl dt {
	float: left;
	margin-right: var(--space-1);
	font-weight: bold;
}

.shared-detail .detail-top .btn-wrap {
	font-family: var(--font-family-body);
	font-weight: 800;
	line-height: var(--leading-tight);
	position: relative;
	background-color: var(--visit-btn-bg);
	font-size: var(--text-lg);
	margin: var(--space-3) 0;
	border-radius: 10px;
	z-index: 0;
}

.shared-detail .detail-top .btn-wrap button.action-item span {
	font-weight: 800;
}

.shared-detail .detail-top .action-item {
	font-size: var(--text-sm);
	padding: var(--text-base) 27.5px;
	background-color: var(--visit-btn-bg);
	color: var(--text-color);
	border-radius: 10px;
	border: 2px solid var(--cream-fb);
}

@media screen and (min-width: 64em) {
	.shared-detail .detail-top .action-item {
		font-size: var(--text-lg);
		padding: 22.5px 38.85px;
		font-weight: 800;
	}

	@media (hover: hover) {
		.shared-detail .detail-top .btn-wrap:hover .hover-border {
			border: 3px solid var(--accent-color);
			display: block;
			width: 209px;
			height: 70px;
			position: absolute;
			top: -16px;
			right: -7px;
			border-radius: 10px;
			z-index: -1;
		}

		.shared-detail .detail-top .btn-wrap:hover button .hover-border {
			top: 6px;
		}
	}
}

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

.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(--dropdown-menu-text);
	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;
}

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

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

.shared-detail .detail-info-bar .split-pane.primary {
	word-break: break-all;
}

@media screen and (min-width: 375px) {
	.shared-detail .detail-info-bar .split-pane.primary {
		word-break: unset;
	}
}

.shared-detail .detail-info-bar .split-pane.secondary .social-icons {
	display: none;
}

@media screen and (min-width: 40em) {
	.shared-detail .detail-info-bar .split-pane.secondary .social-icons {
		display: flex;
	}
}

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

@media screen and (min-width: 64em) {
	.shared-detail .detail-info-bar ul li {
		font-size: var(--text-lg);
	}
}

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

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

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

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

.shared-detail .detail-info-bar ul.info-list .social-icons li i {
	color: var(--text-color-alt);
	margin-right: 0;
	font-size: var(--text-lg);
}

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

@media screen and (min-width: 64em) {
	.shared-detail .detail-info-bar dl,
	.shared-detail .detail-info-bar dt,
	.shared-detail .detail-info-bar dd {
		font-size: var(--text-lg);
	}
}

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

@media screen and (min-width: 40em) {
	.shared-detail .detail-info-bar .social-icons {
		display: none;
	}
}

.shared-detail .detail-info-bar .social-icons li {
	margin-right: var(--space-3);
	margin-bottom: 0;
	border-radius: 50%;
    padding: 7px;
    height: 38px;
    width: 38px;
    display: flex;
    justify-content: center;
    align-items: center;
	background: var(--background-color-alt);
}

.shared-detail .detail-info-bar .social-icons li a {
	font-size: var(--text-base);
	color: var(--text-color-alt);
	text-align: center;
}

.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: 1012px;
	margin: 0 auto 70px;
	padding: 0 22px;
}

@media (min-width: 40em) {
	.shared-detail .detail-drawers {
		margin-bottom: var(--space-20);
	}
}

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

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

.shared-detail .detail-drawers > dl.drawers > dd.active > .content > :is(.core-styles, .contentRender_name_plugins_core_textbox) p {
	font-weight: 600;
	line-height: 1.8 ;
}

.shared-detail .detail-drawers .drawer-button {
	display: flex;
    align-items: center;
    justify-content: space-between;
	background-color: var(--background-color);
	padding: 2px 0 0;
	margin-bottom: 36px;
	width: 100%;
	font-family: var(--font-family-body);
	font-size: var(--text-xl);
	font-weight: 800;
	line-height: var(--leading-none);
	color: var(--text-color);
	border-bottom: 2px solid var(--white-de);
}

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

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

@media screen and (min-width: 64em) {
	.shared-detail .detail-drawers .drawer-button i {
		margin-left: var(--space-4);
		margin-right: 30px;
	}
}

.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: 40em) {
	.shared-detail {
		max-width: 1248px;
		padding: 0 var(--space-5);
		margin: 0 auto;
	}

	.shared-detail .detail-top {
		flex-direction: row;
		align-items: stretch;
		padding: 30px var(--space-5) 0;
	}
	
	.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 {
		display: flex;
		padding: 58px 0 var(--space-20);
		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-10) var(--space-16);
	}
	
	.shared-detail .detail-drawers .drawer-button {
		padding: var(--space-5) var(--space-16);
		margin-bottom: var(--space-10);
		font-size: var(--text-2xl);
	}

	@media screen and (min-width: 40em) {
		.shared-detail .detail-drawers > dl.drawers > dd > .content {
			padding: 21px 0; 
		}

		.shared-detail .detail-drawers .drawer-button {
			padding: var(--space-4) 0 2px;
		}
	}

	.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: 70px 0 var(--space-12) 84px;
	}

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

.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);
	text-transform: lowercase;
}

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