.shared-detail {
	--font-family-display: var(--font-display);
	--font-family-body: var(--font-body);
	--font-family-accent: var(--font-lobster);
	--background-color: var(--deep-blue);
	--background-color-alt: var(--gold);
	--background-color-accent: var(--red);
	--drawer-border-color: var(--gold);
	--text-color: var(--burnt-orange);
	--text-color-secondary: var(--white);
	--text-color-alt: var(--gold);
	--text-color-tertiary: var(--deep-blue);
	--icon-color: var(--slate);
	--social-icon-color: var(--white);
	--social-bg-color: var(--robbins-egg);
	--dropbdown-menu-text: var(--gray-800);
	--nearby-tab-bottom-border: var(--gold);
	--nearby-tab-bottom-border-alt: var(--gold);
	--accent-color: var(--blue);

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

.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: 18px;
	left: 20px;
	padding: 9px 18px;
	color: var(--text-color-secondary);
	background-color: rgba(193, 33, 38, 1);
	font-family: var(--font-family-display);
	font-size: var(--text-base);
	font-weight: 400;
	line-height: var(--leading-none);
}

@media screen and (min-width: 64em) {
	.shared-detail .detail-top .detail-gallery .gallery-count {
		left: 240px;
		bottom: 20px; 
		padding: 11.5px 23px;
		font-size: var(--text-lg);
	}
}

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

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

.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 [data-tb-button] {
	cursor: pointer;
}

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

.shared-detail .detail-top .info-section .share-buttons .addthis_toolbox {
	margin-top: 0;
	margin-bottom: var(--space-8);
}

.shared-detail .detail-top .info-section .share-buttons .addthis_toolbox a {
	font-size: var(--text-base);
	color: var(--text-color-secondary);
}

@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: 1.2;
    color: var(--text-color);
	text-transform: uppercase;
}

@media screen and (min-width: 40em) {
	.shared-detail .detail-top h1 {
		font-size: var(--text-2xl);
	}
}

@media screen and (min-width: 64em) {
	.shared-detail .detail-top h1 {
		font-size: 40px;
	}
}

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

.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-display);
	font-size: var(--text-base);
	font-weight: 400;
	line-height: var(--leading-tight);
	color: var(--text-color-secondary);
	text-transform: uppercase;
	margin: 0;
	padding: 11px 9.5px;
}

.shared-detail .detail-top .action-item .weburl {
	color: var(--text-color-alt);
}

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

.shared-detail .detail-top .action-item .wrapper {
	display: flex;
	justify-content: center;
	align-items: center;;
}

.shared-detail .detail-top .action-item span {
	margin-right: var(--space-3);
}

.shared-detail .detail-top .action-item.coupon {
	background-color: var(--background-color-accent);
}

.shared-detail .detail-top .action-item .icon-right {
	width: 10px;
}

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

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

.shared-detail .detail-info-bar {
	background-image: url(https://assets.simpleviewinc.com/simpleview/image/upload/v1/clients/washingtoncountypa/pattern_fabric_plaid_abcc9cf5-fbf5-4068-89f1-2cdcc199e291.png);
	background-size: contain;
}

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

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

.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-sm);
	font-weight: 400;
	line-height: 20px;
	margin: 0;
	list-style: none;
	color: var(--accent-color);
}

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

.shared-detail .detail-info-bar ul li {
	display: flex;
	align-items: baseline;
	margin-bottom: var(--space-2);
}

.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.phone {
	display: flex;
	flex-direction: column;
}

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

@media screen and (min-width: 64em) {
	.shared-detail .detail-info-bar ul.info-list li i {
		margin-right: var(--space-4);
		width: 14px;
	}
}

.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: 20px;
    color: var(--accent-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;
	color: var(--social-icon-color);
	line-height: var(--leading-tight);
}

.shared-detail .detail-info-bar .social-icons li {
	margin-right: var(--space-5);
	margin-bottom: 0;
	background-color: var(--social-bg-color);
	border-radius: 50%;
	height: 40px;
	width: 40px;
}

@media screen and (min-width: 64em) {
	.shared-detail .detail-info-bar .social-icons li {
		height: 50px;
		width: 50px;
		padding: 6px var(--space-4);
		padding: 6px 14px;
	}
}

.shared-detail .detail-info-bar .social-icons a {
	font-size: 30px;
	padding: 2px var(--space-2);
}

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

@media screen and (min-width: 64em) {
	.shared-detail .detail-info-bar .social-icons a {
		padding: 0;
	}

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

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

.shared-detail .detail-drawers .drawers {
	padding: 0 var(--space-5);
}

.shared-detail .detail-drawers .drawers .content p {
	font-weight: 500;
}

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

@media (min-width: 64em) {
	.shared-detail .detail-drawers .drawers {
		padding: 0;
	}
}

/* Social Share */
.shared-detail .sv-share {
	padding-left: 0;
	--share-trigger-button-color: var(--white);
	--share-trigger-bg-color-hover: transparent;
}

.shared-detail .sv-share-trigger span {
	text-transform: uppercase;
}

.shared-detail .sv-share-popover [data-sv-social-share] {
	--anchor-right: 0;
}

.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;
	border-bottom: 2px solid var(--drawer-border-color);
	color: var(--text-color-alt);
	padding: var(--space-5) 0 var(--space-3);
	margin-bottom: 6px;
	width: 100%;
	font-family: var(--font-family-accent);
	font-size: var(--text-3xl);
	font-weight: 500;
	line-height: var(--leading-none);
}

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

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



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

	.shared-detail .detail-top {
		flex-direction: row;
		align-items: stretch;
	}
	
	.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 .inner {
		display: flex;
		padding: var(--space-20) var(--space-5);
		margin-bottom: 0;
	}
	
	.shared-detail .detail-info-bar .split-pane {
		margin-bottom: 0;
		padding: 0 var(--space-5) 0;
		flex: 1;
	}

	.shared-detail .detail-drawers > dl.drawers > dd > .content {
		padding: var(--space-6) 0;
	}
	
	.shared-detail .detail-drawers .drawer-button {
		padding: var(--space-5) 0;
		font-size: 50px;
	}
	
	.shared-detail .detail-drawers .gMapHolder { 
		height: 400px; 
	}
}

@media screen and (min-width: 64em) {
	.shared-detail .detail-top .info-section {
		gap: 26px;
	}

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

	.shared-detail .detail-info-bar .split-pane.secondary {
		padding: 0 130px;
	}

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

@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: 40em) {
	.shared-detail .detail-top .info-section {
	    padding: 16px 20px;
		position: absolute;
		right: 0;
		top: 90px;
		width: 380px;
		height: 240px;
	}
}

@media (min-width: 47.5em) {
	.shared-detail .detail-top .info-section {
		top: 90px;
		width: 460px;
		height: 280px;
	}
}

@media (min-width: 64em) {
	.shared-detail .detail-top .info-section {
	    padding: 33px 36px;
		right: 0;
		top: 130px;
		width: 594px;
		min-height: 350px;
		height: auto;
	}
}

@media (min-width: 1220px) {
	.shared-detail .detail-top .info-section {
		top: 222px;
	}
}

.whats-nearby {
	padding: 0;
	display: none;
}

.whats-nearby .wrapper {
	padding: var(--space-10) 0;
	background-color: transparent;
	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-accent);
	font-size: var(--text-3xl);
	font-weight: 500;
	line-height: var(--leading-tight);
	color: var(--text-color-alt);
}

@media screen and (min-width: 64em) {
	.whats-nearby .section-title {
		font-size: 50px;
		padding: 0 var(--space-10);
	}
}

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