.shared-detail {
	--font-family-display: var(--font-display);
	--font-family-body: var(--font-body);
	--background-color: var(--white);
	--background-color-alt: var(--sw-body-bg);
	--text-color: var(--brown-dark);
	--text-color-alt: var(--white);
	--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(--sw-key-color);

	--bg-url: url(https://assets.simpleviewinc.com/simpleview/image/upload/q_30,f_avif/v1/clients/wyoming/wyoming_detail_bg_bd12b450-5973-49b5-a9ce-0fcd96bdf890.jpg);

	margin: 0 auto var(--space-10);
	background-color: var(--sw-body-bg);
}

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

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

.shared-detail .detail-top {
	position: relative;
	padding-inline: 15px;
	padding-block-start: 40px;
}

.shared-detail .detail-top::before {
	content: '';
	pointer-events: none;
	position: absolute;
	left: 0;
	top: 0;
	z-index: 1;
	display: block;
	width: 100%;
	height: 70%;
	background: linear-gradient(to top, rgba(93, 105, 81, 0.4) 0%, rgba(93, 105, 81, 0.85) 100%), var(--bg-url);
	background-repeat: no-repeat;
	background-position: 50% 50%;
	background-size: cover;
}

.shared-detail .detail-top-inner {
	display: flex;
	flex-direction: column;

	margin-block-end: 40px;
	max-width: 1220px;
	margin-inline: auto;
	box-shadow: 0px 10px 20px 0px #0000001A;
	position: relative;
	z-index: 2;
}

.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: 18px 25px;
	color: var(--text-color-alt);
	background-color: rgba(0,0,0,.4);
	font-family: var(--font-family-body);
	font-size: var(--text-base);
	font-weight: var(--font-weight-normal);
	line-height: var(--leading-none);
}

.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) 30px;
	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;
	flex-direction: row-reverse;
}


.shared-detail .info-section .social-icons {
	display: flex;
	flex-flow: row wrap;
	list-style: none;
	gap: 10.5px;
	margin-left: 0;
	margin-block: 20px;
}

.shared-detail .info-section .social-icons li {
	margin-bottom: 0;
}

.shared-detail .info-section .social-icons a {
	width: 40px;
	height: 40px;
	display: flex;
	justify-content: center;
	align-items: center;
	text-decoration: none;
	font-size: var(--text-xl);
	background-color: var(--sw-key-color);
	color: var(--white);
	border-radius: var(--rounded-circle);
}

@media screen and (min-width: 64em) {
	.shared-detail .detail-top {
		padding-block-start: 137px;
	}
	
	.shared-detail .detail-top::before {
		height: calc(100% - 100px);
		max-height: 500px;
	}
}

@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-body);
	font-size: 1.5rem;
	font-weight: var(--font-weight-bold);
	line-height: calc(28/24);
    color: var(--text-color);
    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: var(--font-weight-normal);
	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 .info-section .bottom-actions > * {
	margin-top: var(--space-4);
	margin-right: var(--space-4);
}

.shared-detail .detail-top .info-section .top-actions .sv-share-popover [data-sv-social-share] {
	--anchor-right: 0;
}

@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-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: 1200px;
	margin: 0 auto var(--space-8);
	padding: var(--space-5) 40px;
}

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

.shared-detail .detail-info-bar .split-pane:not(:has(*)) {
	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: var(--font-weight-semibold);
	line-height: var(--leading-tight);
	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 a {
	font-weight: var(--font-weight-semibold);
	color: var(--brown);
}


.shared-detail .detail-info-bar ul li:not(.email) a {
	text-decoration: none;
}

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

.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: flex;
	flex-direction: column;
}

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

.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: var(--font-weight-normal);
	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 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: var(--font-weight-bold);
}

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

@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.active > .content p {
	font-size: 1.125rem;
}

.shared-detail .detail-drawers .drawer-button {
	display: flex;
    align-items: center;
    justify-content: space-between;
	background-color: var(--background-color-alt);
	color: var(--brown-dark);
	padding: 23px var(--space-5);
	margin-bottom: var(--space-3);
	width: 100%;
	font-family: var(--font-family-body);
	font-size: var(--text-xl);
	font-weight: var(--font-weight-bold);
	line-height: var(--leading-none);
	border-bottom: solid 1px var(--gold);
}

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

.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-inner {
		flex-direction: row;
		align-items: stretch;
	}
	
	.shared-detail .detail-top .info-section {
		display: flex;
		flex-direction: column;
		justify-content: center;
		padding: var(--space-12) var(--space-5);
	}
	
	.shared-detail .detail-info-bar {
		display: flex;
		padding: 25px 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-10) var(--space-16);
	}
	
	.shared-detail .detail-drawers .drawer-button {
		padding: var(--space-5) var(--space-16);
		margin-bottom: var(--space-3);
		font-size: 1.5rem;
	}
	
	.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 .detail-gallery .gallery-count {
		font-size: 1.125rem;
	}

	.shared-detail .detail-top .info-section .top-actions {
		margin-block-end: 16px;
	}

	.shared-detail .detail-top h1 {
		font-size: 2.125rem;
		margin-block-end: 4px;
	}

	.shared-detail .detail-top .info-section {
		padding: var(--space-12) 90px;
	}

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

.whats-nearby {
	padding: 0;
	margin-bottom: var(--space-10);
}

.whats-nearby .whats-nearby-slider {
	opacity: 0;
	transition: opacity var(--transition-appendix);
}

.whats-nearby .whats-nearby-slider.loaded {
	opacity: 1;
}

.whats-nearby .whats-nearby-slider.no-slider {
	display: none;
}

.whats-nearby .wrapper > .inner {
	margin: 0 auto;
	padding: 0 15px;
	max-width: 1270px;
}

.whats-nearby .title-cont {
	margin: 0 auto;
	margin-bottom: 20px;
	max-width: var(--width-base);
	padding: 0 var(--space-5);
	display: grid;
	justify-content: center;
	gap: 10px;
}

.whats-nearby .section-title {
	font-family: var(--font-family-display);
	font-size: var(--text-3xl);
	font-weight: var(--font-weight-bold);
	line-height: var(--leading-tight);
	text-align: center;
}

.whats-nearby .section-subtitle {
	font-family: var(--font-body);
	font-weight: 600;
	font-size: 0.938rem;
	color: var(--gray);
	line-height: var(--leading-tight);
	text-align: center;
} 

.whats-nearby .tab-group {
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
	margin: 0 auto;
	margin-bottom: 20px;
	padding: 0 var(--space-5);
	max-width: var(--width-base);
	gap: 10px;
}

.whats-nearby .tab {
	margin: 0;
	padding: 3px 20px;
	color: var(--gray);
	white-space: nowrap;
	background-color: transparent;
	font-size: 0.875rem;
	font-weight: var(--font-weight-bold);
	font-family: var(--font-body);
	text-transform: uppercase;
}

@media (hover: hover) {
	.whats-nearby .tab:hover {
		background-color: var(--gold);
		color: var(--white);
	}
}

.whats-nearby .tab[aria-expanded="true"] {
	color: var(--white);
	background-color: var(--gold);
}

.whats-nearby .tab-pane {
	display: block;
	margin: 0;
	width: 100%;
}

.whats-nearby .item .image {
	position: relative;
	margin-bottom: 15px;
}

.whats-nearby .item img {
	width: 100%;
}

.whats-nearby .item .image .mini-date-container {
	position: absolute;
	top: 0;
	left: 0;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	background-color: var(--sw-mini-date-bg);
	color: var(--sw-mini-date-color);
	padding: var(--space-1) var(--space-4);
	pointer-events: none;
}

.whats-nearby .item .image .mini-date-container .month {
	font-family: var(--font-family-body);
	font-size: var(--text-base);
	font-weight: var(--font-weight-bold);
	line-height: var(--leading-none);
	text-transform: uppercase;
}

.whats-nearby .item .image .mini-date-container .day {
	font-family: var(--font-family-body);
	font-size: var(--text-3xl);
	font-weight: var(--font-weight-bold);
	line-height: var(--leading-none);
}

.whats-nearby .item .info h4,
.whats-nearby .item .info h4 a { 
	font-family: var(--font-body);
	font-size: 1.125rem;
	font-weight: var(--font-weight-bold);
	line-height: var(--leading-normal);
	color: var(--brown-dark);
	-webkit-hyphens: auto;
	word-break: break-word;
	hyphens: auto;
}

.whats-nearby .glide__arrows {
	position: absolute;
	left: -15px;
	translate: 0 -50%;
	z-index: 1;
	width: calc(100% + 30px);
	display: flex;
	justify-content: space-between;
}

.whats-nearby .no-results {
	text-align: center;
}

@media (min-width: 40em) {
	.whats-nearby .whats-nearby-slider.one-slide .glide__slides {
		display: grid;
		grid-template-columns: repeat(2, minmax(0, 1fr));
		gap: 20px;
	}
}

@media (min-width: 64em) {
	.whats-nearby .whats-nearby-slider.one-slide .glide__slides {
		grid-template-columns: repeat(3, minmax(0, 1fr));
	}

	.whats-nearby .wrapper > .inner {
		padding: 0 25px;
	}

	.whats-nearby .glide__arrows {
		width: calc(100% + 50px);
		left: -25px;
	}

	.whats-nearby .section-title {
		font-size: 2.875rem;
	}

	.whats-nearby .section-subtitle {
		font-size: 1.125rem;
	}

	.whats-nearby .title-cont,
	.whats-nearby .tab-group {
		margin-bottom: 35px;
	}

	.whats-nearby .tab {
		font-size: 1rem;
		padding: 7px 26px;
	}

	.whats-nearby .item .info h4,
	.whats-nearby .item .info .h4 a {
		font-size: 1.25rem;
	}
}

.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: var(--font-weight-bold);
	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 .content-section .info-list .actionButton.ticketmaster {
    --text-color: var(--white);
    --background-color: var(--teal);
    --border-color: var(--teal);
    --text-color-hover: var(--teal);
    --background-color-hover: transparent;
    --border-color-hover: var(--teal);
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px var(--space-5);
    margin: 0;
	margin-top: var(--space-2);
    font-family: var(--font-body);
    font-weight: var(--font-weight-bold);
    font-size: 0.8125rem;
    line-height: 1.2;
    text-transform: uppercase;
    text-align: left;
    text-decoration: none !important;
    color: var(--text-color);
    background-color: var(--background-color);
    border: 2px solid var(--border-color);
    border-radius: 0;
    transition: color var(--transition-appendix), background-color var(--transition-appendix), border-color var(--transition-appendix);
}

@media (hover: hover) {
    .shared-detail .detail-drawers .drawer.active > .content > div > div .content-section .info-list .actionButton.ticketmaster:hover {
        text-decoration: none;
        background-color: var(--visit-btn-bg-alt);
		color: var(--text-color-hover);
    }
}

.shared-detail .detail-drawers .drawer.active > .content > div > div .content-section .info-list .actionButton.ticketmaster i {
	margin-left: var(--space-1);
}

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

.shared-detail .detail-drawers .img-cont {
	position: relative;
}

.shared-detail .detail-drawers .img-cont .trip-builder {
	position: absolute;
	inset: var(--space-4) var(--space-4) auto auto;
	z-index: 3;
}

.shared-detail .detail-drawers .img-cont .trip-builder a {
	text-decoration: none;
	font-size: var(--text-2xl);
	line-height: 1;
	color: var(--white);
}

.shared-detail .detail-drawers .img-cont .trip-builder a.remove {
	color: var(--sw-alert-color);
}

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

	.shared-detail .detail-drawers .drawer.active > #eventsTab.content> div > div .content-section {
		width: 50%;
	}
}

/*----- 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);
	}
}

/*----- viator -----*/
.tourItem .rating {
	display: flex;
}

.tourItem .rating svg {
	width: var(--space-5);
    fill: var(--sw-text-color);
    margin-right: var(--space-2);
}

.tourItem .info-list li {
	margin-bottom: var(--space-3);
}

.tourItem .img-cont {
	flex: 1 0 auto;
}