.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(--sw-button-primary-bg);
	--visit-btn-bg-alt: var(--sw-button-primary-bg-hover);
	--dropdown-menu-text: var(--gray-800);
	--nearby-tab-bg: var(--sw-button-secondary-bg);
	--nearby-tab-bg-hover: var(--sw-button-secondary-bg-hover);
	--nearby-tab-bg-selected: var(--sw-selected-color);
	--accent-color: var(--teal);

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

.share-buttons {
	display: none; /* Hide the share button before its added onto page */
}

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

@media (min-width: 40em) {
	.shared-detail .sv-share-popover [data-sv-social-share] {
		--anchor-right: 1;
	}
}

.shared-detail .detail-top {
	background-image: url(https://assets.simpleviewinc.com/simpleview/image/upload/v1/clients/laurel-redesign/detail_mobile_7cb414c0-f3a2-4beb-b008-22c948a5dd08.jpg);
    background-size: 100%;
    background-position: center 80%;
}

@media (min-width: 40em) {
	.shared-detail .detail-top {
		background-image: url(https://assets.simpleviewinc.com/simpleview/image/upload/v1/clients/laurel-redesign/detail_background_1__306420da-9da6-4d99-87a3-07c42d9b3e60.jpg);
		background-size: cover;
		padding-top: var(--space-10);
	}
}

.shared-detail .detail-top-inner {
	display: flex;
	flex-direction: column;
	max-width: 1396px;
    margin: 0 auto;
}

.shared-detail .detail-top .detail-gallery {
	order: 1;
    position: relative;
    flex: 1 1 49%;
    margin: 50px 20px 14px;
    border: 10px solid var(--gold);
}

@media (min-width: 64em) {
	.shared-detail .detail-top .detail-gallery {
		flex: 1 1 49%;
		border: 14px solid var(--gold);
		margin: 50px 20px -52px;
	}
}

.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: 0px;
    right: 0px;
	padding: 15.5px 15px 11.5px 18px;
    color: var(--text-color-alt);
	background-color: rgba(45, 45, 45, 0.75);
	font-family: var(--font-family-display);
	font-size: var(--text-base);
	font-weight: 700;
	line-height: var(--leading-none);
}

.shared-detail .detail-top .detail-gallery .gallery-count i {
	font-size: 14px;
    margin-right: 7px;
    font-weight: 400;
}

@media (min-width: 64em) {
	.shared-detail .detail-top .detail-gallery .gallery-count {
		font-size: var(--text-xl);
	    padding: 18.5px 21px 16.5px 20px;
	}

	.shared-detail .detail-top .detail-gallery .gallery-count i {
		font-size: var(--text-lg);
	}
}

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

.shared-detail .detail-top .top-actions .trip-builder {
	cursor: pointer;
}

.shared-detail .detail-top .top-actions .trip-builder i {
	position: relative;
	font-size: var(--text-2xl);
}

.shared-detail .detail-top .top-actions .trip-builder a i:after {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	font: var(--fa-font-solid);
	content: '\f004';
	color: var(--white);
	z-index: -1;
}

.shared-detail .detail-top .top-actions .trip-builder a[data-type="Remove"] i:after {
	color: var(--sw-alert-color);
	z-index: 1; 
}

.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 .sv-share .sv-share-trigger {
	color: var(--white);
	align-items: flex-start;
	font-size: var(--text-base);
	gap: 5px;
	letter-spacing: 0.04rem;
	margin-bottom: var(--space-5);
}
.shared-detail .detail-top .info-section .top-actions .sv-share .sv-share-trigger i {
	color: var(--teal);
}

.shared-detail .detail-top .info-section .top-actions .sv-share .sv-share-trigger span {
	line-height: 1;
}
.shared-detail .detail-top .info-section .bottom-actions {
	flex-wrap: wrap;
}

.shared-detail .detail-top .info-section .top-actions {
	justify-content: space-between;
	place-self: self-end;
}

@media (hover: hover ) {
	.shared-detail .detail-top .info-section .top-actions span a:hover {
		text-decoration:  none; /*reboot.css override*/
	}
}

@media (min-width: 64em) {
	.shared-detail .detail-top .info-section .top-actions .sv-share .sv-share-trigger {
		margin-bottom: var(--space-4);
		font-size: var(--text-lg);
		gap: 7px;
	}
	.shared-detail .detail-top .info-section .top-actions .sv-share .sv-share-trigger i {
		font-size: var(--text-base);
	}
}

.shared-detail .detail-top h1 {
	font-family: var(--font-family-display);
	font-size: 1.875rem;
	line-height: var(--leading-tight);
	font-weight: 700;
	line-height: var(--leading-none);
    color: var(--white);
    margin-bottom: var(--space-2);
}

@media (min-width: 64em) {
	.shared-detail .detail-top h1 {
		font-size: calc(40px + (48 - 40) * ((100vw - 1024px) / (1250 - 1024)));
	}
}

@media (min-width: 1250px) {
	.shared-detail .detail-top h1 {
		font-size: 48px;
	}
}

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

.shared-detail .detail-top .priority-info a {
	color: var(--white);
}

.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-lg);
	letter-spacing: 0.045rem;
	font-weight: 700;
	text-transform: uppercase;
	line-height: var(--leading-none);
	padding: 13px 17px 10px;
	background-color: transparent;
	border: 3px solid var(--teal-light);
	color: var(--text-color-alt);
	border-radius: 7px;
	margin: 0;


	transition: border-color var(--transition-appendix), color var(--transition-appendix), background-color var(--transition-appendix);
}

.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*/
		background-color: var(--teal-light);
		color: var(--black-alt);
	}
}

@media (min-width: 64em) {
	.shared-detail .detail-top .action-item {
		padding: 16px 19px 11px;
	}
}

.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: var(--background-color);
	border: 1px solid rgba(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;
	color: var(--text-color);
}

.shared-detail .detail-top .info-section .bottom-actions .dropdown-menu a i {
	color: var(--teal);
	margin-right: 5px;
}

.shared-detail .trip-builder .tb-button {
	padding: 0;
	background-color: unset;
}

.shared-detail .trip-builder .tb-button.view {
	margin-left: var(--space-2);
}

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

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

.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-base);
	font-weight: 400;
	line-height: var(--leading-tight);
	margin: 0;
    list-style: none;
}

@media (min-width: 64em) {
	.shared-detail .detail-info-bar ul {

		font-size: var(--text-xl);
	}
}

.shared-detail .detail-info-bar ul li {
	display: flex;
	align-items: baseline;
	margin-bottom: var(--space-3);
}
.shared-detail .detail-info-bar .split-pane.primary ul li a { color: var(--black-alt); }

@media (hover: hover) {
	.shared-detail .detail-info-bar .split-pane.primary ul li a:hover { color: var(--red); }
}
.shared-detail .detail-info-bar ul li > div {
	display: flex;
	align-items: flex-start;
}

.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 .locations .two-line-wrap{
	display: flex;
	flex-direction: column;
}	

.shared-detail .detail-info-bar ul li .locations .two-line-wrap a + a {
	margin-top: var(--space-1);
}	

.shared-detail .detail-info-bar ul li .two-line-wrap a.address-container span.city-state-zip {
	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-2);
    width: 16px;
    font-size: var(--text-base);
    color: var(--accent-color);
    text-align: center;
}

.shared-detail .detail-info-bar ul.info-list li i.fas.fa-map-marker-alt {
	margin-top: 4px;
}

@media (min-width: 64em) {
	.shared-detail .detail-info-bar ul.info-list li i {
		margin-right: var(--space-2);
		width: 16px;
		font-size: var(--text-lg);
	}
	
	.shared-detail .detail-info-bar ul.info-list li i.fas.fa-map-marker-alt {
		margin-top: 5px;
	}
}

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

.shared-detail .detail-info-bar .social-icons a {
	font-size: var(--text-xl);
	display: flex;
	align-items: center;
	justify-content: center;
	background-color: var(--gold-dark);
	border: 2px solid var(--gold-dark);
	color: var(--white);
	border-radius: var(--rounded-circle);
	width: 50px;
	height: 50px;
	transition: color var(--transition-appendix), background-color var(--transition-appendix);
}

@media (hover : hover) {
	.shared-detail .detail-info-bar .social-icons a:hover {
		text-decoration: none;
		background-color: var(--blue-dark);
	}
}

.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: 1078px;
	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 .drawer > .content {
	display: none;
	padding: var(--space-3) 0;
}

.shared-detail .detail-drawers .drawer > .content#descriptionTab p {
	line-height: 1.7;
	margin-bottom: 20px;
}

@media (min-width: 64em) {
	.shared-detail .detail-drawers .drawer > .content#descriptionTab p {
		margin-bottom: 28px;
	}
}

.shared-detail .detail-drawers .drawer > .content#mapTab > a {
	border-radius: 7px;
    padding: 10px 14px 8px;
    font-family: var(--font-display);
    font-weight: 700;
    border: 3px solid var(--red);
    font-size: 13px;
    color: var(--black-alt);
    text-transform: uppercase;
	letter-spacing: 0.04em;
}

@media (hover : hover) {
	.shared-detail .detail-drawers .drawer > .content#mapTab > a {
		transition: color var(--transition-appendix), background var(--transition-appendix);
	}
	.shared-detail .detail-drawers .drawer > .content#mapTab > a:hover {
		background: var(--red);
		color: var(--white);
	}
}

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

.shared-detail .detail-drawers .drawer-button {
	display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: transparent;
    color: var(--blue-dark);
	padding: var(--space-4) 0;
    margin: 0 0 var(--space-3);
    width: 100%;
    font-family: var(--font-family-display);
    font-size: var(--text-2xl);
    text-transform: uppercase;
    font-weight: 700;
    line-height: var(--leading-none);
    background-image: url(/includes/public/assets/shared/detail-divider.svg);
    background-repeat: repeat-x;
    background-position: bottom;
}

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

.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-inner {
		flex-direction: row;
		align-items: stretch;
	}
	
	.shared-detail .detail-top .info-section {
		display: flex;
		flex-direction: column;
		padding: var(--space-12) var(--space-5);
	}
	
	.shared-detail .detail-info-bar {
		display: flex;
		padding: var(--space-12) 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 .drawer > .content {
		padding: var(--space-6) 0;
	}
	
	.shared-detail .detail-drawers .drawer-button {
		padding: var(--space-4) 0;
		margin-bottom: var(--space-5);
	}
	
	.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 {
		margin-bottom: var(--space-32);
	}
	
	.shared-detail .detail-top .info-section {
		padding: var(--space-16) var(--space-20) var(--space-12) 62px;
		padding-left: calc(20px + (62 - 20) * ((100vw - 1024px) / (1440 - 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);
	}

	.shared-detail .detail-info-bar {
		padding: var(--space-32) 0 var(--space-24);
	}

	.shared-detail .detail-info-bar .split-pane.primary {
		flex: 0;
		flex-basis: 384px;
	}
	.shared-detail .detail-info-bar .split-pane.secondary {
		flex: 0;
		flex-basis: 385px;
	}

	.shared-detail .detail-drawers .drawer-button {
		background: unset;
		border-bottom: 2px solid #c6c6c6;
		font-size: 1.875rem;
	}

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

@media (min-width: 90em) {
	.shared-detail .detail-top .info-section {
		padding: var(--space-16) var(--space-20) var(--space-12) 62px;
	}
}

.shared-detail .detail-drawers .drawer.active > .content > div > div {
	margin-bottom: var(--space-5);
}

.shared-detail .detail-drawers .drawer.active > .content > div > div .content-section h4 a,
.shared-detail .detail-drawers .drawer.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 .drawer.active > .content > div > div .inner {
	max-width: var(--width-compact);
}

.shared-detail .detail-drawers .drawer.active > .content > div > div .img-cont {
	margin-bottom: var(--space-2);
}

@media (min-width: 64em) {
	.shared-detail .detail-drawers .drawer.active > .content > div > div .inner {
		max-width: unset;
	}

	.shared-detail .detail-drawers .drawer.active > .content > div > div .img-cont {
		margin-bottom: 0;
	}
}

/*----- yelp snippet -----*/

.shared-detail .yelp-snippet {
	margin-bottom: 8px;
}

.shared-detail .yelp-snippet .yelp-top {
	display: flex;
	align-items: center;
	gap: 8px;
}

.shared-detail .yelp-snippet .yelp-logo {
	order: -1;
	width: 60px;
}

.shared-detail .yelp-snippet .yelp-bottom {
	font-size: var(--text-xs);
	color: var(--gray-700);
}

@media (min-width: 64em) {
	.shared-detail .yelp-snippet {
		margin-bottom: 26px;
	}

	.shared-detail .yelp-snippet .yelp-logo {
		width: 70px;
	}

	.shared-detail .yelp-snippet .yelp-bottom {
		font-size: var(--text-sm);
	}
}

/*----- yelp reviews -----*/

.shared-detail #yelpTab .reviews-provider-header {
	display: flex;
	align-items: center;
	gap: 12px;
}

.shared-detail #yelpTab .reviews-rating-line-text {
	font-size: var(--text-xs);
	color: var(--gray-700);
}

.shared-detail #yelpTab h4 {
	font-family: var(--font-display);
	font-weight: bold;
	font-size: var(--text-2xl);
	line-height: 1.1;
	color: var(--black);
}

.shared-detail #yelpTab .review {
	margin: 24px 0;
}

.shared-detail #yelpTab h4 + .review {
	margin-top: 12px;
}

.shared-detail #yelpTab .review-user-image {
	width: 100%;
}

.shared-detail #yelpTab .review-user {
	margin: 12px 0 8px;
	font-family: var(--font-body);
	font-weight: bold;
	font-size: var(--text-xs);
	line-height: 1.1;
	color: var(--black);
}

.shared-detail #yelpTab .review-rating {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 32px;
	margin-bottom: 12px;
	font-size: var(--text-xs);
	color: var(--gray-700);
}

.shared-detail #yelpTab .review-links {
	margin-top: 12px;
}

.shared-detail #yelpTab .review {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(0, 4fr);
	align-items: center;
	gap: 24px;
}

.shared-detail #yelpTab .review-meta,
.shared-detail #yelpTab .review-user-image {
	position: relative;
}

.shared-detail #yelpTab .review-user-image {
	z-index: 1;
}

.shared-detail #yelpTab .review-user {
	position: absolute;
	inset: auto 0 0 auto;
	z-index: 2;
	padding: 4px 8px;
	margin: 0;
	background: rgba(0, 0, 0, 0.75);
	color: var(--white);
}

@media (min-width: 40em) {
	.shared-detail #yelpTab .review-user {
		font-size: var(--text-base);
	}
}
@media (min-width: 64em) {
	.shared-detail #yelpTab h4 {
		font-size: var(--text-4xl);
	}

	.shared-detail #yelpTab .review-rating img {
		width: 100px;
	}

	.shared-detail #yelpTab .review-rating {
		font-size: var(--text-sm);
	}
}

