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

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

.shared-detail .share-buttons {
	display: block;
}

@media (min-width: 64em) {
	.shared-detail .share-buttons .addthis_toolbox a {
		font-size: 17px;
	}
}

.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 {
	position: absolute;
	bottom: 0px;
	right: 0px;
	padding: 10px 8px;
	color: var(--white);
	font-family: var(--solano);
	font-size: 23px;
	font-weight: var(--font-weight-bold);
	line-height: var(--leading-none);
	letter-spacing: .06em;
	width: 200px;
	height: 200px;
	display: flex;
	align-items: flex-end;
	justify-content: flex-end;
	pointer-events: none;
	background-image: radial-gradient(circle at bottom right, rgba(0,0,0, .6) 0%, rgba(0,0,0,0) 40%);
}

.shared-detail .detail-top .detail-gallery .gallery-count i {
	font-size: 19px;
	margin-right: 12px;
	margin-bottom: 2px;
}

@media (min-width: 64em) {
	.shared-detail .detail-top .detail-gallery .gallery-count {
		font-size: 26px;
		padding: 16px 21px;
		width: 400px;
		height: 400px;
	}

	.shared-detail .detail-top .detail-gallery .gallery-count i {
		font-size: 22px;
		margin-right: 12px;
		margin-bottom: 2px;
	}
}

.shared-detail .detail-top .info-section {
	order: 2;
	flex: 1 1 50%;
	position:  relative;
	padding: 29px 20px;
	background-image:  url(https://assets.simpleviewinc.com/simpleview/image/upload/v1/clients/newmexico-redesign/white_sand_655e17ee-6e4f-462b-9c9d-34889db563c8.png);
	background-size:  cover;
	background-repeat:  no-repeat;
	border-top: 2px solid #fefef9;
	border-bottom: 2px solid #fefef9;
}

.shared-detail .detail-top .info-section .top-actions,
.shared-detail .detail-top .info-section .bottom-actions {
	display: flex;
	align-items: center;
	position: relative;
	flex-wrap: wrap;
}

.shared-detail .detail-top .info-section .top-actions {
	justify-content: space-between;
	margin-bottom: 16px;
}

@media (min-width: 40em) {
	.shared-detail .detail-top .info-section .top-actions {
		justify-content: flex-start;
		column-gap: 34px;
	}
}

@media (min-width: 64em) {
	.shared-detail .detail-top .info-section .top-actions {
		margin-bottom: 20px;
	}
}

.shared-detail .detail-top .info-section .top-actions [data-tb-button] {
	cursor: pointer;
	text-transform:  uppercase;
	font-size:  14px;
	font-family:  var(--font-body);
	color:  var(--blue);
	letter-spacing: .02em;
}

.shared-detail .detail-top .info-section .top-actions [data-tb-button] a {
	font-weight: var(--font-weight-demi);
	color: var(--blue);
	text-decoration: none;
}

.shared-detail .detail-top .info-section .top-actions [data-tb-button] [data-tb-add]:after {
	content: '\f004';
	font-family: "Font Awesome 5 Free";
	font-weight: 900;
	margin-left: 4px;
}

.shared-detail .detail-top .info-section .top-actions [data-tb-button] span + span {
	margin-left: var(--space-2);
}

@media (min-width: 64em) {
	.shared-detail .detail-top .info-section .top-actions [data-tb-button] {
		font-size: 17px;
	}
}

@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(--solano);
	font-size: 50px;
	font-weight: var(--font-weight-demi);
	line-height: calc(54/50);
	color: var(--text-color);
	margin-bottom: 8px;
}

@media (min-width: 64em) {
	.shared-detail .detail-top h1 {
		font-size: 62px;
		line-height: calc(58/62);
		margin-bottom: 19px;
	}
}

.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-base);
	font-weight: 400;
	line-height: var(--leading-tight);
	padding: var(--space-2) var(--space-8);
	background-color: var(--visit-btn-bg);
	color: var(--text-color-alt);
	border-radius: var(--rounded-full);
	margin: 0;
}

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

.shared-detail .detail-top .info-section .button-solid {
	padding: 13px 23px 14px;
}

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

.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: 1035px;
	margin: 0 auto 7px;
	padding: 18px 19px;
	display:  flex;
	flex-direction:  column;
}

.shared-detail .detail-info-bar .split-pane {
	margin-bottom: 23px;
	order: 1;
}

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

.shared-detail .detail-info-bar .split-pane.secondary {
	order: 0;
}

.shared-detail .detail-info-bar .split-pane.secondary:empty {
	display: block;
	order:  3;
	border:  none;
}

.shared-detail .detail-info-bar .split-pane:last-child {
	margin-bottom: 0;
}

.shared-detail .detail-info-bar .region-section h4 {
	text-transform: uppercase;
	font-family: var(--solano);
	font-weight: var(--font-weight-bold);
	font-size: 23px;
	color: var(--turq);
	position: relative;
	display: inline-block;
	line-height: 1;
	padding-bottom: 8px;
	margin-bottom:  0;
}

.shared-detail .detail-info-bar .region-section h4:after {
	content: '';
	position: absolute;
	left: 0;
	bottom: 0;
	right: 12px;
	height: 4px;
	background: var(--orange);
	pointer-events:  none;
}

.shared-detail .detail-info-bar .region-section img {
	display: none;
}

@media (min-width: 40em) {
	.shared-detail .detail-info-bar .region-section h4 {
		margin-bottom: 14px
	}

	.shared-detail .detail-info-bar .region-section img {
		display: block;
		max-width: 93px;
		margin-left: 3px;
	}
}

.shared-detail .tripadvisor-snippet {
	height: unset;
	margin-bottom: 20px;
}
.shared-detail .tripadvisor-snippet .reviews-rating-line {
	display: flex;
	align-items: center;
	margin-left:  -8px;
}

.shared-detail .tripadvisor-snippet .reviews-rating-line img {
	width: 145px;
	margin-right: 10px;
}

.shared-detail .tripadvisor-snippet .reviews-rating-line span {
	top:  unset;
	white-space: nowrap;
}

.shared-detail .tripadvisor-snippet .reviews-rating-line span a {
	text-decoration: underline;
	text-underline-offset: 2px;
	font-family: var(--font-body);
	font-weight: var(--font-weight-normal);
	color: var(--gray-dark);
	font-size:  15px;
}

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

.shared-detail .detail-info-bar ul {
	margin: 0;
	list-style: none;
	padding:  0;
}

.shared-detail .detail-info-bar ul .nm-true-certified-logo {
	width: 150px;
	margin-top: -32px;
}

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

.shared-detail .detail-info-bar ul :is(li, li a) {
	color: var(--gray-dark);
	text-decoration: none;
	font-family: var(--font-family-body);
	font-weight: var(--font-weight-demi);
	font-size: 17px;
	line-height: calc(26/17);
}

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

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

.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 .event-info-list li {
	font-weight: var(--font-weight-normal);
	color: var(--gray-dark);
	display: block;
}

.shared-detail .detail-info-bar .event-info-list li span {
	font-weight: var(--font-weight-bold);
	margin-right: var(--space-1);
}

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

.shared-detail .detail-info-bar .social-icons li:last-child {
	margin-right: 0;
}

.shared-detail .detail-info-bar .social-icons a {
	font-size: 25px;
	color:  var(--turq);
	fill: var(--turq);
}

.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-info-bar .tripadvisor-snippet h4 {
	display: none;
}

.shared-detail .detail-drawers {
	max-width: 1010px;
	margin: 0 auto;
	margin-bottom: 55px;
	padding-inline: 20px;
}

@media (min-width: 40em) {
	.shared-detail .detail-drawers {
		margin-bottom: 100px;
	}

	.shared-detail .detail-info-bar ul li {
		margin-bottom: 15px;
	}
}

.shared-detail .detail-drawers > dl.drawers > dd > .content {
	display: none;
	padding-top: 10px;
	padding-bottom: 17px;
}

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

.shared-detail .detail-drawers > dl.drawers > dd.active > .content p:last-child {
	margin-bottom: 0;
}

.shared-detail .detail-drawers .drawer-button {
	display: flex;
	align-items: center;
	justify-content: space-between;
	background-color: transparent;
	padding: 12px 0;
	margin-bottom: var(--space-3);
	width: 100%;
	font-family: var(--solano);
	font-size: 30px;
	text-transform: uppercase;
	font-weight: var(--font-weight-bold);
	line-height: var(--leading-none);
	border:  none;
	color:  var(--gray-dark);
	border-bottom: 1px solid var(--turq);
}

.shared-detail .detail-drawers dd.active .drawer-button {
	border-color: var(--orange);
}

.shared-detail .detail-drawers .drawer-button i {
	margin-left: var(--space-4);
	font-size: 23px;
	color: var(--turq);
}

.shared-detail .detail-drawers dd.active .drawer-button i {
	color: var(--orange);
}

.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-reverse;
		align-items: stretch;
		display: grid;
		grid-template-columns: 1fr 1fr;
		grid-auto-flow: dense;
	}

	.shared-detail .detail-top .detail-gallery {
		grid-column: 2;
	}
	
	.shared-detail .detail-info-bar {
		display: flex;
		padding: 33px 0 8px;
		padding-right: 9px;
		flex-direction:  row;
	}
	
	.shared-detail .detail-info-bar .split-pane {
		margin-bottom: 0;
		padding: 0 var(--space-5);
		flex: 1;
		display:  flex;
		flex-direction:  column;
		align-items: center;
		padding-bottom: 7px;
		padding-top: 14px;
	}

	.shared-detail .detail-info-bar .split-pane.secondary {
		padding-left: 15px;
		padding-right: 24px;
		padding-top: 16px;
	}

	.shared-detail .detail-info-bar .split-pane:not(:last-child) {
		border-right: 3px solid var(--white);
	}
	
	.shared-detail .detail-drawers > dl.drawers > dd > .content {
		padding: 0 0 49px;
	}
	
	.shared-detail .detail-drawers .drawer-button {
		padding-block: 7px;
		padding-top: 27px;
		margin-bottom: 29px;
	}
	
	.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 {
		grid-template-columns: 100fr 139fr;
	}

	.shared-detail .detail-drawers .active #socialFeedsTab {
		display: flex;
		justify-content: space-between;
	}

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

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

	.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 .inner {
	max-width: var(--width-compact);
}

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

.shared-detail .detail-drawers > dl.drawers > dd.active > .content > div > div p.offer-description{
	margin: var(--space-2) 0;
}

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

}

/* Meeting Facilities */
.shared-detail .detail-drawers dd #meetingfacilityTab h5 {
	font-weight: var(--font-weight-extrabold);
	letter-spacing: .06em;
}

.shared-detail .detail-drawers dd #meetingfacilityTab .meeting-facilities h5 {
	font-weight: var(--font-weight-normal)
}

.shared-detail .detail-drawers dd .meeting-facilities ul.meeting-subtab > li:nth-child(odd){
	background: var(--gray-light);
}

/* Events and Offers */
.shared-detail .detail-drawers dl.drawers dd.active #eventsTab a:not([data-tb-add], [data-tb-remove], [data-tb-view]):hover {
	text-decoration: underline;
	text-decoration-color: var(--orange);
	text-decoration-thickness: 2px;
}

.shared-detail .detail-drawers dl.drawers dd.active #eventsTab .content-section h4 > a:hover {
	text-decoration: none;
}

.shared-detail .detail-drawers dl.drawers dd.active [data-tb-button] {
	cursor: pointer;
}

.shared-detail .detail-drawers dl.drawers dd.active [data-tb-button] a {
	text-decoration: none;
	color: var(--gray-dark);
}

.shared-detail .detail-drawers dl.drawers dd.active [data-tb-button] span {
	color: var(--gray-dark);
	text-decoration: none;
}

.shared-detail .detail-drawers dl.drawers dd.active [data-tb-button] > span {
	margin-right: 8px;
}

/* TripAdvisor Drawer */
.shared-detail .tripadvisor-pane .tripadvisorHeader {
	display: grid;
	gap: 10px;
	margin-bottom: 20px;
}

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

.shared-detail .tripadvisor-pane .ta-logo {
	width: 145px;
	height: 34px;
}

.shared-detail .tripadvisor-pane .reviews-rating-line-text {
	display: block;
	margin-left: 8px;
	font-size: 12px;
}

.shared-detail .tripadvisor-pane .ranking {
	font-size: 12px;
	line-height: 1.2;
}

.shared-detail .tripadvisor-pane .header-link-row {
	font-size: 12px;
}

.shared-detail .tripadvisor-pane .reviewBoxTitle {
	padding-bottom: 8px;
	margin-bottom: 20px;
	border-bottom: 1px solid var(--gray-alt);
	font-size: 30px;
}

.shared-detail .tripadvisor-pane .review {
	padding-bottom: 16px;
	margin-bottom: 16px;
	border-bottom: 1px solid var(--gray-alt);
}

.shared-detail .tripadvisor-pane .review-header {
	display: flex;
	align-items: flex-start;
}

.shared-detail .tripadvisor-pane .reviewTitle {
	font-size: 22px;
	line-height: 1.2;
}

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

.shared-detail .tripadvisor-pane .reviewScore img {
	width: 94px;
	height: 20px;
	object-fit: cover;
	margin-left: 16px;
}

.shared-detail .tripadvisor-pane .userInfo {
	display: flex;
	align-items: baseline;
	justify-content: space-between;
	padding: 10px 0;
	font-size: 14px;
	color: var(--gray);
}

.shared-detail .tripadvisor-pane .userName {
	margin-right: 16px;
}

.shared-detail .tripadvisor-pane .reviewText {
	margin-bottom: 1em;
	line-height: calc(26/17);
}

.V3 .rate-grid .row>.cell.name .entity-info .hidden {
	display: none;
}

html.flexbox .V3 .rate-grid>.row {
	height: auto !important;
}

.V3 .entity-info {
	display: flex;
    flex-direction: column;
}

.V3 .entity-info>.name {
	max-height: none !important;
}

.shared-detail .V3 .rate-grid .row>.cell.name .entity-info .category {
	margin-left: 0;
}

.shared-detail .V3 .rate-grid .row>.cell.name .entity-info {
	padding-left: 5px;
}

html.flexbox .V3 .rate-grid>.row>.cell.controls>.container {
	padding: 0 5px;
}

#D_2.V3 {
	display: none !important;
}

.shared-detail .V3 .entity-info>.name {
    color: var(--gray-dark);
    font-family: var(--solano);
	font-weight: var(--font-weight-demi);
}

.shared-detail .V3 .rate-grid .row>.cell.controls .button {
	min-width: 33px;
}

@media (max-width: 63.9375em) {
	html.flexbox .V3 .rate-grid>.row>.cell.scrolling-panel,
	html.flexbox .V3 .rate-grid>.row>.cell.scrolling-panel.dates {
		overflow-x: scroll !important;
	}

	html.flexbox .V3 .rate-grid>.row>.cell.scrolling-panel {
		width: auto !important;
	}

	html.flexbox .V3 .rate-grid>.row {
		display: grid !important;
		grid-template-columns: min-content 1fr min-content;
	}
}

@media (min-width: 64em) {
	.shared-detail .tripadvisor-pane .reviewBoxTitle {
		margin-bottom: 40px;
	}

	.shared-detail .tripadvisor-pane .tripadvisorHeader {
		display: flex;
		align-items: flex-start;
		justify-content: space-between;
	}

	.shared-detail .tripadvisor-pane .review {
		padding-bottom: 30px;
		margin-bottom: 30px;
	}

	.shared-detail .tripadvisor-pane .reviewScore img {
		margin-left: 30px;
	}
}