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

.shared-detail > div {
	max-width: 974px;
	margin: 0px auto;
	padding: 0 20px;
}
.shared-detail h5 {
	font-size: 27px;
	font-weight: 700;
	font-family: var(--font-display);
	color: var(--indigo);
}

.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;
	max-width: 100%;
	background-color: var(--background-color);
}

.shared-detail .detail-gallery {
	position: relative;
}

.shared-detail .detail-gallery img { 
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.shared-detail .detail-gallery iframe { 
	position: absolute;
	top: 0; 
}

.shared-detail .detail-gallery .gallery-count {
	position: absolute;
	bottom: 0px;
	right: 20px;
	padding: var(--space-4) var(--space-5);
	color: var(--text-color-alt);
	background-color: rgba(0,0,0,.4);
	font-family: var(--font-family-body);
	font-size: var(--text-lg);
	font-weight: 400;
	line-height: var(--leading-none);
}

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

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

.shared-detail .detail-top .info-section .back-button {
	color: var(--navy);
}

.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-top: 14px;
}
.shared-detail .detail-top .info-section .bottom-actions {
	margin-bottom: var(--space-3);
	display: flex;
	flex-wrap: wrap;
	gap: 15px;
}
.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: 28px;
	font-weight: 700;
	line-height: 32px;
	color: var(--navy);
	margin-bottom: var(--space-9);
	position: relative;
}

.shared-detail .detail-top h1::after {
	content: "";
	position: absolute;
	left: -25px;
	bottom: -20px;
	width: 80px;
	height: 2px;
	pointer-events: none;
	background-color: #9FD9DD;
}

.shared-detail .detail-top dl,
.shared-detail .detail-top dt,
.shared-detail .detail-top dd {
	font-family: var(--font-family-body);
	font-size: 21px;
	font-weight: 400;
	line-height: 26px;
	color: var(--dark-gray);
	margin-bottom: 3px;
}

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

.shared-detail .detail-top .action-item {
	font-family: var(--font-family-body);
	font-size: 16px;
	font-weight: 700;
	line-height: var(--leading-tight);
	color: var(--text-color-alt);
	margin: 0;
	text-transform: uppercase;
	min-height: 32px;
	width: 135px;
	
	&.website,
	&.restaurant {
		width: unset;
		min-width: 135px;
	}
}

@media (max-width: 767px) {
	.shared-detail .detail-top .info-section .bottom-actions {
		/* display: grid;
		grid-template-columns: repeat(2, 1fr); */
		
		& .action-item {
			width: 145px;
			
			& > img {
				width: 100%;
			}
		}
	}
}

.shared-detail .detail-top .info-section .localSeafood,
.shared-detail .detail-top .info-section .strawLess {
	margin-left: var(--space-3);
	width: 55px;
}

.shared-detail .detail-top .info-section .open-table {
	width: 55px;
	margin-top: -3px;
}
.shared-detail .detail-top .info-section .social-icons {
	display: inline-flex;
	align-items: center;
	margin-left: 0px;
}
.shared-detail .detail-top .info-section .social-icons a {
	margin: 0 5px;
	border: 1px solid #333;
	color: #333;
	width: 36px;
	height: 36px;
	line-height: 36px;
	display: inline-block;
	text-align: center;
	border-radius: 18px;
	font-size: 20px;
}
.shared-detail .detail-top .info-section .social-icons .open-table a {
	border: none;
	width: auto;
}

.shared-detail .detail-top .info-section .bottom-actions .rw {
	padding: 0;
	background-color: unset;
	border: unset;
}

@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);
		border: 1px solid var(--visit-btn-bg-alt);
	}
}

.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;
}
.shared-detail .info-list {
	margin-bottom: 20px;
}
.shared-detail .info-list,
.shared-detail .info-list a {
	font-size: 21px;
	line-height: 26px;
	color: var(--dark-gray);
	text-decoration: none;
	margin-bottom: 3px;
	display: block;
	margin-bottom: 20px;
}
.shared-detail .info-list .city-state-zip,
.shared-detail .info-list .street-address {
	display: block;
	margin-bottom: 3px;
}
.shared-detail .detail-info-bar {
	margin: 0 auto var(--space-8);
	padding: 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-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 .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);
}

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

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

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

.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 {
	margin: var(--space-8) auto;
	margin-bottom: var(--text-xl);
	position: relative;
}

.shared-detail #thresholdTab .content {
	padding-left: 0;
	margin-bottom: 30px;
}
.shared-detail #thresholdTab .drawer-button {
	display: none;
}

@media (min-width: 40em) {
	.shared-detail .detail-drawers {
		margin-bottom: var(--space-20);
	}
	.shared-detail .detail-top dl.priority-info dd {
		clear: none;
	}
}

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

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

.shared-detail .detail-drawers .drawer-button {
	display: flex;
	align-items: center;
	justify-content: flex-start;
	background-color: transparent;
	color: var(--blue);
	padding: var(--space-2) 0;
	margin-bottom: var(--space-2);
	width: 100%;
	font-family: var(--font-display-2);
	font-size: 28px;
	font-weight: 700;
	line-height: var(--leading-none);
	text-transform: uppercase;
}
.shared-detail .detail-drawers .drawer-button span {
	z-index: 1;
	background: var(--white);
	padding-right: 15px;
	text-align: left;
}

.shared-detail .detail-drawers .drawer-button:after {
	border-bottom: 1px dotted var(--powder-blue);
	width: calc(100% - 90px);
	height: 1px;
	content: '';
	right: 20px;
	position: absolute;
}

.shared-detail .detail-drawers .drawer-button i {
	margin-right: var(--space-3);
	font-size: 20px;
	color: var(--light-teal);
}
.shared-detail .detail-drawers .gMapHolder {
	height: 280px; 
}

.shared-detail .tripadvisor-tab {
	font-size: 18px;
	line-height: 24px;
	color: var(--dark-gray);
}

.shared-detail .tripadvisor-tab .review-title { font-weight: bold; }
.shared-detail .tripadvisor-tab .review { 
	margin-bottom: 25px;
	border-top: 2px solid #CBCBCB;
	padding-top: 15px;
}
.shared-detail .tripadvisor-tab .review a {
	text-decoration: none;
}
.shared-detail .tripadvisor-tab .review .review-user {
	font-size: 18px;
	margin: 5px 0;
}
.shared-detail .tripadvisor-tab .reviews-rating-line { 
	margin-bottom: 7px;
}
.shared-detail .tripadvisor-tab .reviews-rating-line img {
	float: left;
}
.shared-detail .tripadvisor-tab .reviews-rating-line .reviews-rating-line-text {
	vertical-align: top;
	line-height: 16px;
}
.shared-detail .tripadvisor-tab .reviews-logo {
	max-width: 140px;
	width: 100%;
	float: right;
}

.shared-detail .tripadvisor-tab h4 {
	color: var(--light-teal);
	font-size: 20px;
	line-height: 28px;
	font-weight: 700;
	font-family: var(--font-body);
}
.shared-detail .tripadvisor-tab .reviews-provider-overview h4:last-of-type {
	color: var(--black);
	font-size: 22px;
}
.shared-detail .tripadvisor-tab h5 {
	color: var(--indigo);
	font-size: 20px;
	line-height: 28px;
	font-weight: 700;
}

.shared-detail .detail-drawers .item {
	margin: 10px 0 20px;
}
.shared-detail .detail-drawers .item h4 {
	font-size: 29px;
	line-height: 35px;
	font-weight: bold;
	color: var(--indigo);
	padding-top: 10px;
}

.shared-detail .item .info-list,
.shared-detail .item .info-list a {
	font-size: 23px;
}


@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: center;
		padding: var(--space-12) var(--space-5);
		margin: 0 auto;
	}
	
	.shared-detail .detail-info-bar {
		display: flex;
		padding: var(--space-20) 0;
		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: 0 0 0 35px;
		margin-bottom: 15px;
	}
	
	.shared-detail .detail-drawers .drawer-button {
		padding: var(--space-2) 0;
		margin-bottom: var(--space-2);
	}
	
	.shared-detail .detail-drawers .gMapHolder { 
		height: 400px; 
	}

	.shared-detail .tripadvisor-tab {
		font-size: 23px;
		line-height: 27px;
	}
	.shared-detail .tripadvisor-tab h4 {
		font-size: 27px;
		line-height: 32px;
	}
	.shared-detail .tripadvisor-tab h5 {
		font-size: 27px;
		line-height: 32px;
	}
	.shared-detail .tripadvisor-tab .reviews-logo {
		max-width: 200px;
	}
}


@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: var(--space-10) var(--space-5) 0;
	}

	.shared-detail .detail-top h1 {
		font-size: 48px;
		line-height: 58px;
	}
	.shared-detail .info-list {
		margin-bottom: 30px;
	}
	.shared-detail .detail-top .info-section .bottom-actions {
		display: flex;
		margin-bottom: 40px;
	}
	.shared-detail .detail-top .info-section .social-icons {
		margin-left: 20px;
	}

	.shared-detail .detail-drawers .drawer-button {
		font-size: 32px;
	}
	.shared-detail .detail-drawers .drawer-button i {
		font-size: 26px;
	}
}

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