.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);
	--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 a {
	text-decoration: none;
}
.shared-detail a:hover {
	background-color: unset;
	text-decoration: none;
}

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

.shared-detail .share-buttons {
	display: flex;
	justify-content: flex-start;
	font-size: 16px;
	font-family: var(--font-display);
}

.shared-detail .share-buttons i {
	color: #0a3859;
	margin-left: 6px;
	font-size: 20px;
}

.shared-detail .share-button {
	color: #747474;
	text-transform: uppercase;
	justify-self: flex-start;
	font-family: var(--font-display);
	font-weight: var(--font-weight-bold);
	display:  flex;
	flex-wrap:  nowrap;
	align-items: center;
}

.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 {
	--height: 25px;
	position: absolute;
	bottom: 12px;
	right: 0px;
	color: var(--text-color-alt);
	background-color: #f4af5e;
	width: 90px;
	height: var(--height);
	font-family: var(--font-family-body);
	font-size: 17px;
	font-weight: bold;
	line-height: var(--leading-none);
	display: flex;
	align-items: center;
	justify-content: center;
	text-transform: uppercase;
	pointer-events: none;
}

.shared-detail .detail-top .detail-gallery .gallery-count:before {
	content: '';
	width: 0;
	height: 0;
	border-bottom: var(--height) solid #f4af5e;
    border-left: var(--height) solid transparent;
    position: absolute;
    right: 100%;
    top: 0;

}

.shared-detail .detail-top .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) 16px 56px;
	padding-top: 32px;
	background-color: #eb6056;
	background-image: url(https://www.visitphoenix.com/includes/public/assets/shared/detail-heading-decoration.svg);
	background-repeat: repeat-x;
	background-position: bottom left;
	background-size: 144px;
}

.shared-detail .detail-top .info-section .top-actions,
.shared-detail .detail-top .info-section .bottom-actions {
	display: flex;
	align-items: flex-start;
	position: relative;
	flex-direction: column;
	justify-content: flex-start;
}



.shared-detail .detail-top .info-section .bottom-actions {
	color: var(--white);
}

.shared-detail .detail-top .info-section .bottom-actions .book-now {
	text-transform: uppercase;
	font-size: 17px;
	font-family: var(--font-display);
	font-weight: var(--font-weight-bold);
	letter-spacing: .1em;
	display: flex;
	gap: 10px;
	align-items: center;
}
.shared-detail .detail-top .info-section .bottom-actions .book-now .fa {
    font-size:12px;
    background-color: var(--white);
    color: var(--citrus);
    border-radius: 50%;
    height: 24px;
    width: 24px;
    display: grid;
    place-items: center;

}
.shared-detail .detail-top .info-section .bottom-actions .corporate-partner > img,
.shared-detail .detail-top .info-section .bottom-actions .veteran-owned > img,
.shared-detail .detail-top .info-section .bottom-actions .locally-owned > img,
.shared-detail .detail-top .info-section .bottom-actions .diversity-owned > img {
	fill: white;
	color: white;
	max-height: 24px;
	display: inline-block;
	vertical-align: middle;
	position: relative;
	top: -2px;
}
.shared-detail .detail-top .info-section .bottom-actions .corporate-partner > img,
.shared-detail .detail-top .info-section .bottom-actions .veteran-owned > img,
.shared-detail .detail-top .info-section .bottom-actions .locally-owned > img {
	max-height: 22px;
	margin-right: 2px;
}
.shared-detail .detail-top .info-section .bottom-actions .corporate-partner > img{
	max-width: 24px;
}

@media (min-width: 40em) {
	.shared-detail .detail-top .info-section .bottom-actions {
        flex-direction: row;
        flex-wrap: wrap;
        max-width: 100%;
    }
    .shared-detail .detail-top .info-section .bottom-actions .book-now .fa {
    	height: 26px;
    	width: 26px;
    }
}

.shared-detail .info-list .actionButton {
	color: var(--citrus);
    border: 1px solid var(--citrus);
    text-transform: uppercase;
    padding: 6px 21px;
    width: fit-content;
    font-size: 17px;
    letter-spacing: .1rem;
    font-weight: bold;
    margin-bottom: 20px;
	margin-top: 20px;
    font-family: var(--font-display);
    display: inline-block;
}

.shared-detail .info-list .actionButton::before {
	content: '+';
    margin-right: 2px;
}

.shared-detail .detail-top .info-section .top-actions [data-tb-button] {
	cursor: pointer;
	display: none;
}

.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: 1.1;
	color: var(--white);
	margin-bottom: 10px;
	text-transform: uppercase;
	letter-spacing: .05rem;
}

.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: 1.4;
	color: var(--white);
}

.shared-detail .detail-top dl dt {
	float: left;
	margin-right: var(--space-1);
	font-weight: bold;
}
.shared-detail .detail-top .info-section .bottom-actions > * {
	margin-top: var(--space-4);
	margin-right: var(--space-4);
}

.shared-detail .detail-top .info-section .bottom-actions .website-urls {
	display: flex;
	flex-direction: column;
}

.shared-detail .detail-top .info-section .bottom-actions .website-urls > *:not(:last-child) {
	margin-bottom : 12px;
}

.shared-detail .detail-top .action-item {
	font-family: var(--font-display);
	font-size: 17px;
	line-height: var(--leading-tight);
	padding: 5px 19px;
	color: var(--white);
	margin: 0;
	border: 1px solid var(--white);
	text-transform: uppercase;
	font-weight: bold;
	letter-spacing: .1rem;
	background-color: transparent;
	text-align: center;
}
.shared-detail .detail-top .action-item.booking {
	border: none;
	padding: 5px 0 0 0px;
}
.shared-detail .detail-top .action-item.booking > span {
	width: var(--space-5);
	height: var(--space-5);
	vertical-align: top;
	margin-top: 2px;
}
.shared-detail .detail-top .action-item.booking > span:before {
	font-size: 10px;
}
.shared-detail .detail-top .action-item:last-child {
	margin-right: -10px;
}
@media (min-width: 40em) {
	.shared-detail .detail-top .action-item.booking {
		padding: 5px 0 0 10px;
	}
}

@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(--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 .detail-info-bar {
	max-width: 1053px;
	margin: 0 auto var(--space-4);
	padding: 15px;
	padding-top: 37px;
	display:  flex;
	flex-direction: column;
}

.shared-detail .detail-info-bar .split-pane {
	margin-bottom: 24px;
}

.shared-detail .detail-info-bar .split-pane.secondary {
	order: 1;
	display: flex;
	flex-direction: column;
	gap: 5px;
}

.shared-detail .detail-info-bar .split-pane:empty {
	display: none;
}

.shared-detail .detail-info-bar .split-pane.custom > * {
	margin-bottom: 22px;
}

.shared-detail .tripadvisor-snippet .reviews-rating-line {
    display: flex;
    align-items: flex-start;
	flex-wrap: wrap;
	gap: var(--space-1);
}

.shared-detail .tripadvisor-snippet .img-cont {
	flex-shrink: 0;
}

.shared-detail .tripadvisor-snippet img {
	margin-left: -7px;
	max-width: none;
}

.shared-detail .tripadvisor-snippet .reviews-rating-line-text {
	line-height: var(--leading-none);
}

.shared-detail .tripadvisor-snippet .reviews-rating-line-text a {
    text-decoration: underline;
	line-height: var(--leading-none);
}

.shared-detail .tripadvisor-reviews .tripadvisorHeader {
	margin-bottom: var(--space-8);
}

.shared-detail .tripadvisor-reviews .reviews-rating-line {
	display: flex;
	align-items: center;
}

.shared-detail .tripadvisor-reviews .ranking {
	font-weight: var(--font-weight-bold);
}

.shared-detail .tripadvisor-reviews .ta-logo {
	width: 100%;
	max-width: 200px;
	margin-left: -12px;
}

.shared-detail .tripadvisor-reviews .reviews {
	margin-bottom: var(--space-4);
}

.shared-detail .tripadvisor-reviews .review {
	padding: var(--space-5) 0;
	border-top: 1px solid var(--gray-400);
}

.shared-detail .tripadvisor-reviews .review:last-child {
	border-bottom: 1px solid var(--gray-400);
}

.shared-detail .tripadvisor-reviews .review-header {
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	gap: var(--space-4);
	margin-bottom: var(--space-5);
}

@media (min-width: 40em) {
	.shared-detail .tripadvisor-reviews .review-header {
		justify-content: flex-start;
	}
}

.shared-detail .tripadvisor-reviews .reviewScore {
	flex-shrink: 0;
}

.shared-detail .tripadvisor-reviews .reviewTitle {
	margin: 0;
	font-family: var(--font-display);
	font-weight: var(--font-weight-bold);
	font-size: var(--text-lg);
}

.shared-detail .tripadvisor-reviews .userInfo {
	display: flex;
	align-items: baseline;
	justify-content: space-between;
	gap: var(--space-4);
	margin-bottom: var(--space-2);
	color: var(--gray-600);
}

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

.shared-detail .yelp-snippet .yelp-bottom {
	margin-top: -3px
}

.shared-detail .yelp-snippet .yelp-rating {
    width: 115px;
    height: auto;
    margin-right: 10px;
}

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

.shared-detail .yelp-reviews .reviews-provider-logo a,
.shared-detail .yelp-reviews .reviews-rating-line a {
	padding: 0;
}

.shared-detail .yelp-reviews .reviews-provider-content h4 {
	font-family: var(--font-display);
	font-weight: var(--font-weight-bold);
	font-size: var(--text-xl);
}

.shared-detail .yelp-reviews .review {
	padding: var(--space-5) 0;
	margin: 0;
	border-bottom: 1px solid var(--gray-400);
}

@media (min-width: 40em) {
	.shared-detail .yelp-reviews .review {
		display: grid;
		grid-template: auto / 150px 1fr;
		gap: var(--space-8);
	}
}

.shared-detail .yelp-reviews .review-meta {
	margin-bottom: var(--space-2);
}

.shared-detail .yelp-reviews .review-rating {
	display: flex;
	align-items: baseline;
	justify-content: space-between;
	gap: var(--space-4);
	margin-bottom: var(--space-2);
}

.shared-detail .yelp-reviews .review-text {
	margin-bottom: var(--space-3);
}

.shared-detail .detail-info-bar ul {
	font-family: var(--font-family-body);
	font-size: 18px;
	font-weight: normal;
	line-height: var(--leading-tight);
	margin: 0;
	list-style: none;
	color:  #333;
}

.shared-detail .detail-info-bar ul a {
	color: #333;
}

.shared-detail .detail-info-bar ul li {
	display: flex;
	align-items: baseline;
	margin-bottom: 32px;
}

.shared-detail .detail-info-bar ul li > div {
	display: flex;
	align-items: baseline;
}

.shared-detail .detail-info-bar ul li .two-line-wrap {
	display: flex;
	flex-direction: column;
}

.shared-detail .detail-info-bar ul li:last-child {
	margin-bottom: 0;
}

.shared-detail .detail-info-bar ul li .two-line-wrap > * {
	display: block;
	line-height: 1.5;
}

.shared-detail .detail-info-bar ul li .meta-label {
	margin-right: var(--space-1);
}

.shared-detail .detail-info-bar ul.info-list li i {
	margin-right: 12px;
	width: 16px;
	font-size: 19px;
	color: #153758;
	transform: translateY(2px);
}

.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 dd {
	margin-bottom: 10px;
}

.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;
	justify-content: flex-start;
	margin-bottom: 25px;
}

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

.shared-detail .detail-info-bar .social-icons a {
	font-size: 16px;
	color: var(--white);
	background-color: #153758;
	padding: 5px;
	border-radius: 50%;
	height: 33px;
	width: 33px;
	display: grid;
	place-items: center
}

.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: 971px;
	margin: 0 auto;
	margin-bottom: var(--text-xl);
}

.shared-detail .detail-drawers .desc {
	white-space: pre-line;
}

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

.shared-detail .detail-drawers > dl.drawers > dd.active > .content {
	display: block;
	padding-top: 7px;
	padding-bottom: 0;

}

/* Featured Amenities */
.shared-detail .detail-drawers #featuredAmenitiesTab {
	pointer-events: none;
}

.shared-detail .detail-drawers #featuredAmenitiesTab .drawer-button {
	margin-bottom: 25px;
}

.shared-detail .detail-drawers #featuredAmenitiesTab .content {
	display: flex;
	flex-wrap: wrap;
	column-gap: 28px;
	row-gap: 29px;
	margin-bottom: 8px;
	padding-right: 14px;
}

.shared-detail .detail-drawers #featuredAmenitiesTab .drawer-icon {
	display: none;
}

.shared-detail .detail-drawers > dl.drawers > dd.active > #featuredAmenitiesTab span {
	color: var(--gray);
	font-size: 17px;
	letter-spacing:  .02em;
}

.shared-detail .detail-drawers > dl.drawers > dd.active > #featuredAmenitiesTab .amenity {
	display: inline-flex;
	flex-direction: column;
	align-items: center;
	gap: 3px;
	min-width: 36px;
}
.shared-detail .detail-drawers > dl.drawers > dd.active > #featuredAmenitiesTab .amenity span {
	text-align: center;
	min-width: max-content;
	transform: translateX(-1px);
}

.shared-detail .detail-drawers > dl.drawers > dd.active > #featuredAmenitiesTab i {
	color: #747474;
    font-size: 28px;
}

@media(min-width: 64em) {
	.shared-detail .detail-drawers #featuredAmenitiesTab .content {
		column-gap: 58px;
		margin-bottom: 40px;
		padding-left: 29px;
		padding-right: 28px;
	}

	.shared-detail .detail-drawers #featuredAmenitiesTab .drawer-button {
		margin-bottom: 35px;
	}

	.shared-detail .detail-drawers > dl.drawers > dd.active > #featuredAmenitiesTab i {
		font-size: 29px;
	}

	.shared-detail .detail-drawers > dl.drawers > dd.active > #featuredAmenitiesTab .amenity {
		gap: 8px;
	}

	.shared-detail .detail-drawers .content#calendarTab {
		padding-left: 0;
		padding-right: 0;
	}
}

.shared-detail .detail-drawers > dl.drawers > dd.active > .content .item {
	margin-bottom: 22px;
}

.shared-detail .detail-drawers > dl.drawers > dd.active > .content .item:is(.eventItem, .offerItem) img {
	margin-bottom: 12px;
}

.shared-detail .detail-drawers > dl.drawers > dd.active > .content .item:is(.eventItem, .offerItem) .content-section h4 {
	font-family: var(--font-body);
	font-weight: var(--font-weight-bold);
	font-size: 18px;
}

.shared-detail .tm-event-item {
	margin: 0 auto var(--space-6);
}

.shared-detail .tm-event-item .img-cont {
	aspect-ratio: 545 / 365;
}

.shared-detail .tm-event-item .img-cont img {
	width: 100%;
}

.shared-detail .tm-event-item .content-section {
	padding: var(--space-4) 0;
}

.shared-detail .tm-event-item .content-section h4 {
	font-family: var(--font-body);
    font-weight: var(--font-weight-bold);
    font-size: 18px;
	margin-bottom: var(--space-2);
}

.shared-detail .tm-pager {
	display: flex;
	justify-content: center;
	align-items: center;
	margin-bottom: 25px;
}

.shared-detail .tm-pager button {
	padding: 6px 12px;
	margin: 0 10px;
}

@media (hover: hover) {
	.shared-detail .tm-event-item .content-section .button-default:hover {
		background-color: var(--citrus);
	}
}

@media (min-width: 40em) {
	.shared-detail .detail-drawers > dl.drawers > dd.active > .content .item:is(.eventItem, .offerItem) .inner,
	.shared-detail .tm-event-item {
		display: grid;
		grid-template-columns: 1fr 1fr;
		gap: 15px;
	}

	.shared-detail .detail-drawers > dl.drawers > dd.active > .content .item:is(.eventItem, .offerItem) .content-section h4 {
		font-size: 22px;
		margin-bottom: 12px
	}
}


.shared-detail .detail-drawers > dl.drawers > dd.active > .content p {
	font-size: 17px;
	line-height: 1.8;
	margin-bottom: 8px;
	color:  var(--gray);
}

.shared-detail .detail-drawers > dl.drawers > dd.active > .content .disclaimer {
	font-style: italic;
}

.shared-detail .detail-drawers .drawer-button {
	--padding-width: var(--space-5);
	display: flex;
	align-items: center;
	justify-content: flex-start;
	background-color: var(--white);
	padding: 18px var(--padding-width);
	padding-bottom: 13px;
	margin-bottom: var(--space-3);
	width: 100%;
	font-family: var(--font-display);
	font-size: 20px;
	font-weight: var(--font-weight-bold);
	line-height: var(--leading-none);
	position: relative;
	text-transform: uppercase;
	color: var(--gray);
}

.shared-detail .detail-drawers .drawer-button:before {
	content: '';
	width: calc(100% - var(--padding-width) * 2);
	height: 3px;
	background-color: #f1f3f4;
	position: absolute;
	bottom: 0;
}

@media (min-width: 64em) {
	.shared-detail .detail-drawers .drawer-button:before {
	    width: 100%;
	    left: 0;
    }
}



.shared-detail .detail-drawers dd .drawer-button > div {
	background-color: var(--citrus);
	color: white;
	height: 23px;
	width: 23px;
	position: relative;
	border-radius: 50%;
	margin-left: 12px;
}

.shared-detail .detail-drawers dd.active .drawer-button > div {
	background-color: #153758;
}
.shared-detail .detail-drawers dd .drawer-button > div span {
	line-height: 23px;
	position: absolute;
	left: 6.5px;
	bottom: 2px;
	font-size: 17px;
}

.shared-detail .detail-drawers dd.active .drawer-button > div span {
	left: 8px;
	bottom: 1.5px;
}
.shared-detail .detail-drawers .drawer-button i {
	margin-left: var(--space-4);
	font-size: var(--text-lg);
	display: none;
}

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

.shared-detail .detail-gallery a {
	padding: 0;
}

.shared-detail .detail-info-bar .split-pane:last-child {
	display:  flex;
	flex-direction: column
}

.shared-detail .detail-info-bar .split-pane.custom {
	margin-bottom: 5px;
}

.shared-detail .detail-info-bar .split-pane.custom > * {
	width: 100%;
	height: min-content;
}


@media (min-width: 40em) {

	.shared-detail .share-buttons i {
	    margin-left: 12px;
    }

	.shared-detail .detail-drawers dd .drawer-button > div span {
		bottom: 1.6px;
		left: 6.1px;
	}

	.shared-detail .detail-top h1 {
		font-size: 38px;
		line-height: 1.1;
	}
	.shared-detail {
		margin: 0 auto;
	}

	.shared-detail .detail-top {
		flex-direction: row-reverse;
		align-items: stretch;
		margin-bottom: 20px;
	}

	.shared-detail .detail-top .detail-gallery  {
		flex: 1 1 83%;
	}

	.shared-detail .detail-top .detail-gallery .gallery-count {
		--height: 30px;
		width: 102px;
		bottom: 24px;

	}
	
	.shared-detail .detail-top .info-section {
		display: flex;
		flex-direction: column;
		justify-content: center;
		background-size: 220px;
		padding: var(--space-12) var(--space-5) 82px;
	}
	
	.shared-detail .detail-info-bar {
		display: flex;
		padding: 70px 0 35px;
		margin-bottom: 0;
		flex-direction: row;
		justify-content: space-evenly;
		width:  100%;
	}
	
	.shared-detail .detail-info-bar .split-pane {
		margin-bottom: 0;
		padding: 10px 36px 10px 10px;
	}

	.shared-detail .detail-info-bar .split-pane.primary {
		padding: 10px 20px 10px 20px;
	}
	
    .shared-detail .detail-info-bar .split-pane.secondary {
    	order: 2;
    	display: flex;
    	justify-content: flex-start;
    }

    .shared-detail .detail-info-bar .split-pane.secondary .inner {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
     }

	.shared-detail .detail-drawers > dl.drawers > dd > .content {
		padding: var(--space-10) 29px;
		padding-right: 16px;
		margin-bottom: 38px;
	}
	
	.shared-detail .detail-drawers .drawer-button {
		padding: 12px 11px;
		margin-bottom: 30px;
		font-size: 30px;
		align-items: flex-end;
	}
	
	.shared-detail .detail-drawers .gMapHolder { 
		height: 400px; 
	}

	.shared-detail .detail-info-bar .split-pane.custom {
		display:  flex;
		justify-content: center;
		min-width: 25%;
		border-right: 2px solid #f1f3f4;
		border-left: 2px solid #f1f3f4;
	}
}

@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: 90px var(--space-12) 78px;
	}

	.shared-detail .detail-info-bar {
		justify-content: unset;
	}

	.shared-detail .detail-info-bar .split-pane {
		margin-bottom: 0;
		padding: 10px 51px 10px 73px;
	}

	.shared-detail .detail-info-bar .split-pane.primary {
		padding-right: 55px;
		padding-left: 38px;
		min-width: 36%;
	}


	.shared-detail .detail-info-bar .split-pane.custom {
		width: 36%;
		justify-content: flex-start;
	}
}

@media (min-width: 80em) {
	.shared-detail .detail-top .info-section {
		padding: 80px var(--space-24) 78px;
	}
}

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

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