.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-bottom-border: var(--sw-selected-color);
	--nearby-tab-bottom-border-alt: var(--gray-400);
	--accent-color: var(--sw-key-color);

	margin: 0 auto 20px;
}

.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;
	background-color: var(--blue-mid-dark);
	position: relative;
	border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.shared-detail .detail-top .detail-gallery {
	order: 1; /* Always want gallery coming first on mobile */
	position: relative;
	flex: 1 1 50%;
	padding: 20px 15px 0;
}

.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: 15px;
    padding: 12px;
    color: var(--gray-dark);
	background-color: rgba(255, 255, 255, 0.8);
	font-family: var(--font-inter);
	font-size: 0.875rem;
	font-weight: var(--font-weight-bold);
	line-height: var(--leading-none);
}

.shared-detail .detail-top .detail-gallery .gallery-count i {
	font-size: 1rem;
	margin-right: 12px;
	color: var(--blue-mid);
}

.shared-detail .detail-top .info-section {
	order: 2;
	flex: 1 1 50%;
	padding: 28px 15px 20px;
	position: relative;
}

.shared-detail .detail-top:before {
	position: absolute;
	bottom: -31px;
	left: 0;
	content: '';
	width: 100%;
	height: 31px;
	background: url('/includes/public/assets/shared/detail-bottom-mobile.svg');
	background-size: cover;
	background-repeat: no-repeat;
}

@media(min-width: 40em) {
	.shared-detail .detail-top:before {
		background: url('/includes/public/assets/shared/edge-texture-blue.svg');
		transform: rotateX(180deg);
		bottom: -30px;

	}

	.shared-detail .detail-top .detail-gallery {
		padding: 0;
		transform: translateY(40px);
	}

	.shared-detail .detail-top .detail-gallery .gallery-count {
		right: 0;
	}
}

.shared-detail .sv-share {
	margin-bottom: 5px;
}

.shared-detail .sv-share .sv-share-trigger {
	background-color: var(--blue-mid-dark);
}

.shared-detail .sv-share-popover [data-sv-social-share] {
	--anchor-right: unset;
}

@media(hover:hover) {
	.shared-detail .sv-share .sv-share-trigger:hover {
		background: var(--blue-mid-dark);
	}
}

.shared-detail .sv-share,
.shared-detail .sv-share-trigger {
	padding: 0;
	font-size: .875rem;
	color: var(--white);
	font-family: var(--font-inter);
	font-weight: var(--font-weight-bold);
}

.shared-detail .sv-share-trigger-icon {
	color: var(--white);
}

.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;
	gap: 10px;
}

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

@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: 1.875rem;
	font-weight: 700;
	line-height: 1;
    color: var(--white);
    margin-bottom: var(--space-5);
}

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

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

.shared-detail .detail-top dl dt {
	margin-right: var(--space-1);
	font-weight: bold;
}

.shared-detail .detail-top dd {
	margin-bottom: 10px;
}

.shared-detail .detail-top .action-item {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    padding: 7.5px 8px;
    margin: 0;
    font-family: var(--font-display);
    font-weight: bold;
    font-size: var(--text-base);
    line-height: 1;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    text-decoration: none !important;
    color: var(--white);
    background-color: rgba(0, 0, 0, .1);
    border: 2px solid var(--white);
    box-shadow: none;
    transition:
        color var(--transition-appendix),
        background-color var(--transition-appendix),
        box-shadow var(--transition-appendix);
}

.shared-detail .detail-top .action-item.check-rates {
	color: var(--black);
	background-color: var(--white);
}

.shared-detail .detail-top .action-item .icon {
	position: relative;
    display: block;
    width: 22px;
    aspect-ratio: 1;
    flex-shrink: 0;
}

.shared-detail .detail-top .action-item .icon:before,
.shared-detail .detail-top .action-item .icon:after {
	position: absolute;
    inset: 0;
    display: block;
    content: '';
    background-repeat: no-repeat;
    background-position: center center;
    background-size: contain;
    transition: opacity var(--transition-appendix);
}

.shared-detail .detail-top .action-item .icon:before {
	background-image: url('/includes/public/assets/shared/arrow-white-sm.svg');
    opacity: 1;
}

.shared-detail .detail-top .action-item .icon:after {
	background-image: url('/includes/public/assets/shared/arrow-blue-sm.svg');
    opacity: 0;
}

.shared-detail .detail-top .action-item.action-item.check-rates .icon:before,
.shared-detail .detail-top .action-item.action-item.check-rates .icon:after {
	background-image: url('/includes/public/assets/shared/arrow-black-sm.svg');
}

@media (hover: hover) {
	.shared-detail .detail-top .info-section .bottom-actions .action-item:hover {
		text-decoration: none; /*reboot.css override*/
		color: var(--blue-mid-dark);
        background-color: var(--white);
        box-shadow: 0 4px 20px 0 rgba(0, 0, 0, 0.15);
	}

	.shared-detail .detail-top .info-section .bottom-actions .action-item.check-rates:hover {
		color: var(--black);
	}

	.shared-detail .detail-top .info-section .bottom-actions .action-item:hover .icon:before {
        opacity: 0;
    }
    
    .shared-detail .detail-top .info-section .bottom-actions .action-item:hover .icon:after {
        opacity: 1;
    }
}

.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 {
	max-width: 1000px;
	margin: 55px 15px 48px;
}

.shared-detail .detail-info-bar .split-pane.primary {
	padding-bottom: 29px;
	margin-bottom: 29px;
	border-bottom: 2px solid var(--gray-mid-light);
}

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

.shared-detail .detail-info-bar ul li a {
	font-family: var(--font-family-body);
	font-size: 1rem;
	color: var(--gray-dark);
	font-weight: 400;
	line-height: var(--leading-tight);
	text-decoration: 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;
}

.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: 5px;
    width: 18px;
	font-size: 1.25rem;
	color: var(--blue-mid);
	font-weight: 400;
}

.shared-detail .detail-info-bar ul.info-list li i.fa-envelope {
	margin-right: 10px;
}

.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 {
	display: block;
	padding: 12px 0;
}

.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: 14px;
	margin-bottom: 0;
	width: 45px;
	height: 45px;
	border-radius: 50%;
	border: 2px solid var(--blue-mid-dark);
	display: flex;
	align-items: center;
	justify-content: center;
}

.shared-detail .detail-info-bar .social-icons a {
	font-size: 1.375rem;
	color: var(--blue-mid-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: 1190px;
	margin: 0 auto;
	margin-bottom: var(--text-xl);
	padding: 0 15px;
}

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

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

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

.shared-detail .detail-drawers .drawer-button {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 20px;
	width: 100%;
	padding: 8px 5px;
	margin: 0;
	font-family: var(--font-barlow-condensed);
	font-weight: bold;
	font-size: 1.875rem;
	line-height: 1;
	text-transform: uppercase;
	text-align: left;
	color: var(--gray-dark);
	background-color: transparent;
	border: none;
	border-radius: 0;
	transition: background-color var(--transition-appendix);
}

.shared-detail .detail-drawers .drawer-button:before {
	display: block;
	order: 1;
	flex-grow: 1;
	height: 2px;
	content: '';
	background: #D9D9D9;
	opacity: 1;
	transition: opacity var(--transition-appendix);
}

.shared-detail .detail-drawers .drawer-button i {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	order: 2;
	width: 36px;
	aspect-ratio: 1;
	flex-shrink: 0;
	font-weight: 900;
	font-size: var(--text-lg);
	line-height: 1;
	color: inherit;
	border: 2px solid var(--gray);
	transition: border-color var(--transition-appendix);
}


.shared-detail .detail-drawers .drawer.active .drawer-button {
	background-color: var(--gray-light);
	padding: 5px;
}

.shared-detail .detail-drawers .drawer.active .drawer-button:before {
	opacity: 0;
}

.shared-detail .detail-drawers .drawer.active .drawer-button i {
	border: none;
}

@media(min-width:64em) {
	.shared-detail .detail-drawers .drawer-button i {
		font-size: 1.375rem;
	}

	.shared-detail .detail-drawers .drawer-button:not(.active) {
		padding: 25px 5px;
	}
}

.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;
		padding: 0 20px;
	}
	
	.shared-detail .detail-top .info-section {
		display: flex;
		flex-direction: column;
		justify-content: center;
		padding: 40px;
	}
	
	.shared-detail .detail-info-bar {
		display: flex;
		padding: var(--space-20) 0;
		margin: 0 auto;
	}
	
	.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-10) var(--space-16);
	}

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

	.shared-detail .detail-drawers .social-cont {
		flex: 1;
		max-width: 500px;
	}

	.shared-detail .detail-info-bar .split-pane.primary {
		border-bottom: none;
	}

	.shared-detail .detail-info-bar .split-pane {
		border-right: 2px solid var(--gray-mid-light);
	}

	.shared-detail .detail-info-bar .split-pane:last-child {
		border: none;
	}

	.shared-detail .detail-info-bar .social-icons {
		justify-content: center;
		padding-top: 30px;
	}
}

@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: 40px;
		max-width: 456px;
	}

	.shared-detail .detail-top .detail-gallery {
		flex: 1 1 68%;
		transform: translateY(59px);
		max-width: 660px;
	}

	.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-top {
		padding: 0 140px 0 144px;
		justify-content: center;
	}

	.shared-detail .detail-top .detail-gallery .gallery-count {
		font-size: 1rem;
		padding: 15px;
	}

	.shared-detail .detail-top .detail-gallery .gallery-count i {
		font-size: 1.2rem;
	}

	.shared-detail .detail-top h1 {
		font-size: 2.5rem;
		margin-bottom: 28px;
	}

	.shared-detail .sv-share {
		margin-bottom: 28px;
		padding-top: 20px;
	}

	.shared-detail .sv-share,
	.shared-detail .sv-share-trigger {
		font-size: 1rem;
	}

	.shared-detail .detail-top .action-item {
		font-size: 1.125rem;
	}

	.shared-detail .detail-info-bar {
		padding: 90px 0 20px;
	}

	.shared-detail .detail-drawers .drawer-button {
		font-size: 2.5rem;
	}
}

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

.shared-detail .detail-info-bar ul li .ta-rating-line {
	display: flex;
	align-items: center;
	gap: 10px;
	font-family: var(--font-body);
	font-weight: bold;
	font-size: var(--text-sm);
	line-height: 1;
	text-decoration: none !important;
	color: var(--gray);
}

.shared-detail .ta-rating-line .ta-img {
	width: 136px;
	height: 26px;
	object-fit: cover;
}

.shared-detail .ta-rating-text {
	font: inherit;
	color: inherit;
}

.shared-detail .virtual-tour {
	width: 100%;
	aspect-ratio: 16 / 9;
}