.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-14);
	--text-color-alt: var(--white-fd);
	--visit-btn-bg: var(--gray-24);
	--visit-btn-bg-alt: var(--orange-ff);
	--dropdown-menu-text: var(--gray-800);
	--nearby-tab-bottom-border: var(--sw-selected-color);
	--nearby-tab-bottom-border-alt: var(--gray-400);
	--accent-color: var(--blue-17);
	position: relative;
	padding: 28px var(--space-5) 0;
	margin: 0 auto var(--space-20);
}

.shared-detail a {
	color: currentColor;
}

@media (hover : hover) {
	.shared-detail a:hover {
		text-decoration: underline;
		color: var(--sw-link-hover-color);
	}
}

.shared-detail:before {
	content: "";
	position: absolute;
	width: 100%;
	height: 209px;
	left: 0;
	top: 0;
	background-image: url(https://assets.simpleviewinc.com/simpleview/image/upload/f_webp/v1/clients/tacoma-redesign/footer_cta_bg_sm_fcb3a80d-b2c0-44b8-82a3-bac26c23ac41.png);
	pointer-events: none;
}

.shared-detail:after {
	content: "";
	position: absolute;
	width: calc(100% - 70px);
	height: 287px;
	left: 0;
	top: -40px;
	z-index: -1;
	background-image: url(https://assets.simpleviewinc.com/simpleview/image/upload/c_fill,f_webp,h_251,q_65,w_616/v1/clients/tacoma-redesign/Topology_Graphic_1__1b34aa96-762d-4e9c-9d2e-59f34d3f088b.webp);
	pointer-events: none;
}

@media (min-width: 40em) {
	.shared-detail:before,
	.shared-detail:after {
		content: none;
	}
}

.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%;
	box-shadow: 0px 8px 15px 0px rgba(0, 0, 0, 0.25);
}

.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;
    left: 0px;
    padding: var(--space-3) var(--space-4);
    color: var(--text-color-alt);
	background-color: rgba(0,0,0,.4);
	font-family: var(--font-family-body);
	font-size: 0.9375rem;
	letter-spacing: 0.155em;
	font-weight: 400;
	line-height: var(--leading-none);
}

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


.shared-detail .sv-share {
	padding: unset;
	justify-content: end;
}

@media (hover : hover) {
	.shared-detail .sv-share .sv-share-trigger {
		background-color: transparent;
		color: currentColor;
	}
}

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

.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 .bottom-actions {
	flex-wrap: wrap;
}

.shared-detail .detail-top .info-section .top-actions {
	justify-content: space-between;
	margin-bottom: var(--space-8);
}

.shared-detail .detail-top .info-section .top-actions > div {
	display: contents;
}

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

@media (min-width: 40em) {
	.shared-detail .detail-top .info-section .top-actions {
		margin-bottom: var(--space-5);
	}
}

.shared-detail .detail-top h1 {
	font-family: var(--font-display-heavy);
    font-size: 2.3125rem;
    line-height: var(--leading-none);
    color: var(--text-color);
    margin-bottom: var(--space-4);
}

.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-display-heavy);
    font-size: 0.9375rem;
    font-weight: 700;
    text-transform: uppercase;
	font-weight: 400;
	line-height: var(--leading-tight);
	padding: var(--space-2) var(--space-6);
	background-color: var(--visit-btn-bg);
	color: var(--text-color-alt);
	margin: 0;
	border: 4px solid var(--orange-ff);
}

.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 {
		transition: background-color 300ms ease-out, color 300ms ease-out;
	}
	.shared-detail .detail-top .info-section .bottom-actions .action-item:hover {
		text-decoration: none; /*reboot.css override*/
		background-color: var(--visit-btn-bg-alt);
		color: var(--text-color);
	}
}

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

.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 {
	margin: 0 auto var(--space-2);
	padding: var(--space-4) 0;
}

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

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

.shared-detail .detail-info-bar .split-pane.primary dl {
	margin-bottom: var(--space-2);
}
.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: 0.9375rem;
	font-weight: 400;
	line-height: 1.86;
	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 .two-line-wrap > * {
	display: block;
}

.shared-detail .detail-info-bar ul li .two-line-wrap a {
	display: inline-block;
	color: currentColor;
	
}

@media (hover : hover) {
	.shared-detail .detail-info-bar ul li .two-line-wrap a:hover {
		text-decoration: underline;
		color: var(--sw-link-hover-color);
	}
}

.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-5);
    width: 12px;
	font-size: 0.9375rem;
	color: var(--accent-color);
}

/* .shared-detail .detail-info-bar ul.info-list li:hover a {
	text-decoration: none; 
} */

.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;
	flex-wrap: wrap;
	list-style: none;
	margin-left: 0;
}

.shared-detail .detail-info-bar .social-icons li {
	margin-right: 34px;
	margin-bottom: 0;
}

.shared-detail .detail-info-bar .social-icons a {
	font-size: 1.5rem;
	display: flex;
	align-items: center;
	justify-content: center;
	background-color: var(--gray-14);
	color: var(--white-fd);
	border-radius: var(--rounded-circle);
	width: 40px;
	height: 40px;

}

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

@media (min-width: 40em) {
	.shared-detail .detail-info-bar .social-icons {
		row-gap: var(--space-4);
	}
	.shared-detail .detail-info-bar .social-icons li {
		margin-right: 20px;
	}
}
/* Desktop - Info Bar*/
@media (min-width: 64em) {
	.shared-detail .detail-info-bar .social-icons li {
		margin-right: calc(24px + (36 - 24) * ((100vw - 1024px) / (1300 - 1024)));
	}
	.shared-detail .detail-info-bar .social-icons a {
		width: calc(49px + (59 - 49) * ((100vw - 1024px) / (1300 - 1024)));
		height: calc(49px + (59 - 49) * ((100vw - 1024px) / (1300 - 1024)));
		font-size: calc(26px + (35.4 - 26) * ((100vw - 1024px) / (1300 - 1024)));
	}
	.shared-detail .detail-info-bar ul {
		font-size: 1.0625rem;
		line-height: 1.765em;
		row-gap: var(--space-5);
	}
	.shared-detail .detail-info-bar ul.info-list li {
		margin-bottom: var(--space-2);
	}
	.shared-detail .detail-info-bar ul.info-list li i {
		font-size: var(--text-base);
	}
}

@media (min-width: 1300px) {
	.shared-detail .detail-info-bar .social-icons li {
		margin-right: 36px;
	}
	.shared-detail .detail-info-bar .social-icons a {
		width: 59px;
		height: 59px;
		font-size: 2.2125rem;
	}
}

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

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

.shared-detail .detail-drawers .drawer > .content {
	display: none;
	padding: 0 0 var(--space-2);
}

.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: var(--background-color);
	border-bottom: 2px solid var(--gray-41);
	padding: var(--space-4) 0;
	margin-bottom: var(--space-8);
	width: 100%;
	font-family: var(--font-display-heavy);
	font-size: 1.875rem;
	font-weight: 700;
	line-height: var(--leading-none);
	color: var(--blue-17);
}

.shared-detail .detail-drawers .drawer-button i {
	margin-left: var(--space-4);
	font-size: 1.875rem;
	color: var(--orange-ff);
}

.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 {
		margin: 0 auto;
	}

	.shared-detail .detail-top {
		flex-direction: row;
		align-items: stretch;
	}
	
	.shared-detail .detail-top .info-section {
		display: flex;
		flex-direction: column;
		padding: var(--space-2) var(--space-5);
	}
	
	.shared-detail .detail-info-bar {
		display: flex;
		padding: var(--space-10) 0 var(--space-4);
		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-button {
		padding: var(--space-4) 0;
		margin-bottom: var(--space-3);
	}
	
	.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 {
		padding-top: var(--space-10);
		padding-left: 60px;
		max-width: 1380px;
	}

	.shared-detail .detail-top .detail-gallery {
		flex: 1 1 81.6%;
	}
	.shared-detail .detail-top .info-section {
		padding: var(--space-2) 28px;
		flex: 1 0 calc(480px + (552 - 480) * ((100vw - 1024px) / (1300 - 1024)));
	}

	.shared-detail .detail-top h1 {
		font-size: 2.875rem;
		line-height: 1.12;
	}
	
	.shared-detail .detail-info-bar {
		position: relative;
		padding: var(--space-6) 0 var(--space-8);
		margin-bottom: var(--space-8);
	}
	.shared-detail .detail-info-bar:before {
		content: "";
		position: absolute;
		z-index: -1;
		width: calc(300px + (616 - 300) * ((100vw - 1024px) / (1300 - 1024)));
		height: 138px;
		top: 0;
		left: 0;
		background-image: url(https://assets.simpleviewinc.com/simpleview/image/upload/c_fill,f_webp,h_251,q_65,w_616/v1/clients/tacoma-redesign/Topology_Graphic_1__1b34aa96-762d-4e9c-9d2e-59f34d3f088b.webp);
		background-repeat: no-repeat;
		background-position: 0 100%;
		background-size: cover;
		pointer-events: none;
	}

	.shared-detail .detail-top .info-section .bottom-actions > * {
		margin-top: var(--space-2);
	}
	.shared-detail .detail-info-bar .split-pane.primary {
		order: 2;
		padding: 0 var(--space-8);
		flex: 1 0 calc(480px + (552 - 480) * ((100vw - 1024px) / (1300 - 1024)));
	}
	.shared-detail .detail-info-bar .split-pane.secondary {
		order: 1;
		padding: 0 25px 0 62px;
		padding-left: calc(25px + (62 - 25) * ((100vw - 1024px) / (1300 - 1024)));;
		flex: 1 1 81.6%;
	}

	.shared-detail .detail-drawers .drawer-button {
		font-size: 2.125rem;
		margin-bottom: var(--space-8);
	}


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

@media (min-width: 1300px) {
	.shared-detail .detail-top .info-section {
		flex: 1 0 552px;
	}
	.shared-detail .detail-info-bar .split-pane.primary {
		flex: 1 0 552px;
	}
	.shared-detail .detail-info-bar .split-pane.secondary {
		padding: 0 25px 0 62px;
	}
	.shared-detail .detail-info-bar:before {
		width: 616px;
	}
}

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