.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 var(--space-10);
	position: relative;
}

.shared-detail .detail-top .featured {
	text-transform: uppercase;
	font-weight: bold;
	z-index: 100;
	position: absolute;
	left: 20px;
	width: calc(50% - 20px);
	text-align: center;
	padding-top: 4px;
}

.shared-detail .detail-top .featured > span {
	background: red;
	color: white;
	padding: 0.25rem 1rem;
}

@media (min-width: 40em) {
	.shared-detail .detail-top::after {
		content: "";
		position: absolute;
		top: 0;
		left: 0;
		width: 100%;
		height: 350px;
		background-image: url(https://assets.simpleviewinc.com/simpleview/image/upload/c_fill,q_65/v1/clients/longisland/detail_bg_desktop_4e468695-992b-4d1a-ba60-bade515c36da.jpg);
		background-size: cover;
		background-repeat: no-repeat;
		pointer-events: none;
		z-index: -1;
	}
}

@media (min-width: 64em) {
	  .shared-detail::before {
		content: "";
		position: absolute;
		top: 0;
		left: 0;
		width: 100%;
		height: 350px;
		background-image: -moz-linear-gradient( -90deg, rgb(25,48,90) 0%, rgba(25,48,90,0) 100%);
		background-image: -webkit-linear-gradient( -90deg, rgb(25,48,90) 0%, rgba(25,48,90,0) 100%);
		background-image: -ms-linear-gradient( -90deg, rgb(25,48,90) 0%, rgba(25,48,90,0) 100%);
		opacity: 0.741;
		pointer-events: none;
	}

	.shared-detail .detail-top::after {
		height: 468px;
	}

	.shared-detail {
		margin: -123px 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 .share-buttons a {
	display: flex;
	flex-direction: row-reverse;
	justify-content: center;
	align-items: flex-end;
	color: var(--green);
	font-family: var(--font-body);
	font-weight: 600;
	font-size: 11px;
	letter-spacing: 0.04em;
	position: absolute;
	top: 0;
	right: 0;
	gap: var(--space-1);
}

.shared-detail .share-buttons a > i {
	border: 1px solid var(--green);
	border-radius: var(--rounded-circle);
	width: var(--space-5);
	height: var(--space-5);
	display: flex;
	justify-content: center;
	align-items: center;
	font-size: 10px;
	transform: translateY(2px);
}

@media (min-width: 64em) {
	.shared-detail .share-buttons a {
		gap: var(--space-2);
		font-size: var(--text-base);
		align-items: unset;
		margin-right: unset;
	}

	.shared-detail .share-buttons a > i {
		width: 30px;
		height: 30px;
		font-size: var(--text-sm);
		transform: translateY(-2px);
	}

	.shared-detail .share-buttons a .fa-share:before {
		margin-left: 2px;
	}
}

.shared-detail .detail-top {
	display: flex;
	flex-direction: column;
	margin-bottom: 46px;
	position: relative;
}

.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 {
	position: relative;
}

.shared-detail .detail-top .detail-gallery img::after {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	background-color: rgba(0, 0, 0, 50%);
	width: 100%;
    height: 100%;
	pointer-events: none;
}

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

.shared-detail .detail-top .detail-gallery .gallery-count {
	position: absolute;
    bottom: 0px;
    right: 0px;
    padding: var(--space-2) var(--space-3);
    color: var(--text-color-alt);
	font-family: var(--font-family-body);
	font-size: var(--text-xl);
	font-weight: 400;
	line-height: var(--leading-none);
	letter-spacing: var(--tracking-wider);
}

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

.shared-detail .detail-top .info-section {
	order: 2;
	display: grid;
	grid-auto-rows: min-content;
	padding: var(--space-4) var(--space-5) 0 26px;
	position: relative;
	background-color: var(--white);
}

@media (min-width: 64em) {
	.shared-detail .detail-top .info-section {
		order: 2;
		flex: 1 1 50%;
	}

	.shared-detail .detail-top .detail-gallery .gallery-count {
		padding: var(--space-3) var(--space-4);
		font-size: var(--text-2xl);
	}

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

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

.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: var(--text-4xl-1);
	font-weight: 700;
	line-height: var(--leading-none);
    color: var(--blue-dark);
    margin-bottom: var(--space-5);
	letter-spacing: var(--tracking-wider);
	padding-top: var(--space-8);
}

@media (min-width: 64em) {
	.shared-detail .detail-top h1 {
		font-size: 60px;
		margin-bottom: var(--space-3);
		padding-top: 90px;
	}
}

.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 {
	font-family: var(--font-family-body);
	font-size: var(--text-sm);
	font-weight: 400;
	background-color: var(--blue-dark);
	color: var(--white);
	border-radius: var(--rounded-xl);
	margin: 0;
	padding: 7px 16px 6px;
	max-width: fit-content;
	letter-spacing: var(--tracking-wider);
	white-space: nowrap;
}

.shared-detail .detail-top .visit-website {
	margin-bottom: var(--space-3);
	grid-row: 3;
}

.shared-detail .detail-top .action-item > i {
	margin-left: 2px;
}

@media (min-width: 64em) {
	.shared-detail .detail-top .action-item {
		font-size: var(--text-lg);
		padding: 13px 32px 12px;
		margin-left: 3px;
	}

	.shared-detail .detail-top .action-item > i {
		margin-left: var(--space-2);
	}
}

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

@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;
	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;
	padding-bottom: var(--space-2);
}

.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: var(--leading-normal);
	margin: 0;
    list-style: none;
	letter-spacing: var(--tracking-wider);
}

@media (min-width: 40em) {
	.shared-detail .detail-info-bar ul {
		font-size: var(--text-base);
	}
}

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

.shared-detail .detail-info-bar ul li .two-line-wrap a {
	display: inline-block;
	font-weight: 400;
}

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

.shared-detail .detail-info-bar ul.info-list li .fa-phone-alt {
	transform: scale(-1, 1);
}

.shared-detail .detail-info-bar ul.info-list li .fa-envelope + a {
	padding: unset;
	background-color: unset;
	border-radius: unset;
	color: var(--black);
}

@media (min-width: 40em) {
	.shared-detail .detail-info-bar ul.info-list li i {
		margin-right: var(--space-2);
		font-size: 20px;
		width: 20px;
	}
}

.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 .social-icons {
	display: flex;
	list-style: none;
	margin-left: 0;
}

.shared-detail .social-icons li {
	margin-right: var(--space-5);
	margin-bottom: 0;
}

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

.shared-detail .detail-info-bar ul.hours-of-operation li {
	margin-bottom: 0;
	justify-content: space-between;
}

@media (min-width: 40em) {
	.shared-detail .social-icons li {
		margin-right: var(--space-6);
	}

	.shared-detail .social-icons a {
		font-size: 1.6875rem;
	}
}

.shared-detail .detail-info-bar ul.hours-of-operation li.current {
	font-weight: 700;
}

.shared-detail .threshold-cont {
	max-width: 761px;
	padding: 0 var(--space-5);
	margin: 0 auto var(--space-12);
}

.shared-detail .threshold-cont h3 {
	font-family: var(--font-display);
	font-size: var(--text-4xl);
	font-weight: 600;
	line-height: var(--leading-normal);
	letter-spacing: var(--tracking-normal);
	color: #0f2c59;
	text-align: center;
	margin-bottom: var(--space-3)
}

@media (min-width: 64em) {
	.shared-detail .threshold-cont {
		margin-bottom: var(--space-16);
	}

	.shared-detail .threshold-cont h3 {
		font-size: 2.25rem;
	}
}

.shared-detail .detail-drawers {
	max-width: 1004px;
	margin: 0 auto;
	margin-bottom: var(--text-xl);
	padding: 0 var(--space-5);
}

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

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

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

.shared-detail .detail-drawers > dl.drawers > dd.active > .content p {
	font-family: var(--font-body);
	font-weight: 400;
	font-size: var(--text-base);
	line-height: var(--leading-relaxed);
	letter-spacing: var(--tracking-wider);
}

.shared-detail .detail-drawers .drawer-button {
	display: flex;
    align-items: center;
    justify-content: space-between;
	padding: var(--space-3) 0;
	margin-bottom: var(--space-6);
	width: 100%;
	font-family: var(--font-family-display);
	font-size: 2.25rem;
	font-weight: 300;
	line-height: var(--leading-none);
	letter-spacing: 0.03em;
	color: #0f2c59;
	border-bottom: 2px solid rgba(0, 45, 92, .5);
}

.shared-detail .detail-drawers .drawer-button i {
	padding-right: var(--space-2);
	font-size: var(--text-2xl);
	color: var(--purple-faded);
}

@media (min-width: 64em) {
	.shared-detail .detail-drawers .drawer-button {
		padding: var(--space-3) 0;
		font-size: 2.625rem;
	}
	
	.shared-detail .detail-drawers .drawer-button i {
		padding-right: var(--space-5);
	}
}

.shared-detail .detail-drawers .drawer-button:hover {
	background-color: var(--white);
}

.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 .detail-top {
		flex-direction: row;
		align-items: stretch;
		max-width: 1260px;
		margin: 0 auto 72px;
		padding: var(--space-10) var(--space-5) 0;
	}
	
	.shared-detail .detail-top .info-section {
		display: flex;
		flex-direction: column;
		justify-content: space-between;
		padding: var(--space-12) var(--space-5);
		box-shadow: 4px 4px 12px 0px rgba(0,0,0,0.05);
	}
	
	.shared-detail .detail-info-bar {
		display: block;
		padding: unset;
		margin-bottom: 0;
		padding-bottom: var(--space-6);
	}
	
	.shared-detail .detail-info-bar .split-pane {
		margin-bottom: 0;
		flex: 1;
	}
	
	.shared-detail .detail-drawers > dl.drawers > dd > .content {
		padding: var(--space-8) 0 50px;
	}
	
	.shared-detail .detail-drawers .drawer-button {
		padding: var(--space-2) 0;
		margin-bottom: var(--space-10);
	}
	
	.shared-detail .detail-drawers .active .drawer-button {
		margin-bottom: 0px;
	}
	
	.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: 142px;
	}
	
	.shared-detail .detail-top .info-section {
		padding: 26px 32px 64px 66px;
	}

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

.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 .content-section .info-list li {
	font-family: var(--font-body);
	letter-spacing: var(--tracking-wider);
}

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

}