.shared-detail {
	margin: -30px auto 60px;
}

.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%;
}

.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: 20px;
	right: 20px;
	color: #fff;
	font: normal 500 16px/1em 'roboto', sans-serif;
	letter-spacing: 3px;
	text-shadow: 0px 0px 5px #444;
}

.shared-detail .detail-top .detail-gallery .gallery-count i {
	font-size: 16px;
}

.shared-detail .detail-top .info-section {
	order: 2;
	flex: 1 1 50%;
	padding: 10px 20px 40px;
	background-color: #f3f3f3;
}

.shared-detail .detail-top .info-section .top-actions,
.shared-detail .detail-top .info-section .bottom-actions {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
}

.shared-detail .detail-top .info-section .bottom-actions {
	margin-top: 10px;
}

.shared-detail .detail-top .info-section .top-actions {
	justify-content: flex-end;
}

.shared-detail .detail-top .back-button {
	display: none;
}

.shared-detail .detail-top .back-button:hover {
	color: #BC0523;
}

.shared-detail .detail-top h1 {
	font: normal 600 30px/30px 'muli', sans-serif;
	color: #000;
	margin-bottom: 10px;
	margin-top: 15px;
}

.shared-detail .info-section .info-list {
	font: normal 16px/22px 'roboto', sans-serif;
	color: #444;
	margin: 0;
	margin-bottom: 17px;
	list-style: none;
}

.shared-detail .info-section .info-list li {
	display: flex;
	align-items: baseline;
	margin-bottom: 10px;
}

.shared-detail .info-section .info-list li:last-child {
	margin-bottom: 0;
}

.shared-detail .info-section .info-list li .fas {
	font-size: 16px;
	margin-right: 10px;
	color: #000;
}

.shared-detail .info-section .info-list li .fa-map-marker-alt {
	font-size: 18px;
}

.shared-detail .info-section .info-list li .bull {
	margin: 0 10px;
}

.shared-detail .info-section .info-list li .two-line-wrap > * {
	display: block;
}

.shared-detail .info-section .info-list li .meta-label {
	margin-right: 5px;
	font-weight: bold;
}

.shared-detail .info-section .social-icons {
	display: flex;
	list-style: none;
	margin: 0;
}

.shared-detail .info-section .social-icons li {
	margin-right: 12px;
	margin-bottom: 0;
}

.shared-detail .info-section .social-icons a {
	font-size: 14px;
	width: 34px;
	height: 34px;
	display: flex;
	align-items: center;
	justify-content: center;
	border: 2px solid #BC0523;
	border-radius: 50%;
}

.shared-detail .detail-top dl,
.shared-detail .detail-top dt,
.shared-detail .detail-top dd {
	font: normal 16px/22px 'muli', sans-serif;
	color: #444;
	margin-bottom: 5px; /* foundation overwrite */
}

.shared-detail .detail-top dl dt {
	float: left;
	margin-right: 5px;
	font-weight: 600;
	color: #000;
}

.shared-detail .detail-top .action-item {
	font: normal 600 12px/1em 'muli', sans-serif;
	padding: 15px 16px 12px;
	background-color: #BC0523;
	color: #fff;
	text-transform: uppercase;
}

.shared-detail .detail-top .info-section .bottom-actions a {
	margin-top: 15px;
	margin-right: 15px;
	display: inline-block;
}

.shared-detail .detail-info-bar {
	margin-bottom: 17px;
}

.shared-detail .detail-info-bar .split-pane {
	margin-bottom: 15px;
}

.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-drawers {
	max-width: 1000px;
	margin: 0 auto;
	padding: 25px 20px 0;
}

.shared-detail .detail-drawers > dl.drawers > dd > .content {
	display: none;
	padding: 10px 0;
}

.shared-detail .detail-drawers > dl.drawers > dd.active > .content {
	display: block;
}

.shared-detail .detail-drawers .drawer-button {
	display: flex;
	align-items: center;
	justify-content: space-between;
	background-color: #fff;
	padding: 10px 0;
	margin-bottom: 10px;
	width: 100%;
	text-align: left; /* foundation overwrite */
	font: normal 600 20px/1em 'muli', sans-serif;
	color: #000; /* foundation overwrite */
	border-bottom: 2px solid #000;
	text-transform: uppercase;
}

.shared-detail .detail-drawers .active .drawer-button {
	color: #0CB7BA;
}

.shared-detail .detail-drawers .drawer-button i {
	margin-left: 5px;
	margin-top: -3px;
	font-size: 18px;
	color: #000;
}

.shared-detail .detail-drawers p:last-child {
	margin-bottom: 0;
}

.shared-detail .detail-drawers .gMapHolder { 
	height: 280px; 
}

@media (min-width: 40em) {
	.shared-detail {
		margin-bottom: 80px;
	}

	.shared-detail .detail-top {
		flex-direction: row-reverse;
		align-items: stretch;
		margin-bottom: 30px;
	}
	
	.shared-detail .detail-top .info-section {
		padding: 10px 20px 20px 30px;
	}

	.shared-detail .detail-top .info-section .top-actions {
		justify-content: space-between;
	}

	.shared-detail .detail-top .back-button {
		display: block;
		color: #444;
		font-size: 14px;
		font-weight: 600;
		margin-bottom: 0;
		font-family: 'muli', sans-serif;
		text-transform: uppercase;
		margin-top: -1px;
	}

	.share-buttons .addthis_toolbox a {
		font-size: 14px;
	}

	.shared-detail .detail-top .detail-gallery {
		margin: 0;
	}
	
	.shared-detail .detail-info-bar .split-pane {
		margin-bottom: 0;
		padding: 0 20px;
		flex: 1;
	}
	
	.shared-detail .detail-drawers > dl.drawers > dd > .content {
		padding: 10px 30px;
	}
	
	.shared-detail .detail-drawers .drawer-button {
		padding: 15px 0;
		margin-bottom: 15px;
		font-size: 22px;
	}
	
	.shared-detail .detail-drawers .gMapHolder { 
		height: 400px; 
	}
}

@media (min-width: 64em) {
	.shared-detail {
		margin-bottom: 120px;
	}

	.shared-detail .detail-top {
		margin-bottom: 80px;
	}
	
	.shared-detail .detail-top .info-section {
		padding: 30px 30px 30px 95px;
		flex-basis: 740px;
	}

	.shared-detail .detail-top .back-button {
		font-size: 16px;
	}

	.share-buttons .addthis_toolbox a {
		font-size: 16px;
	}

	.shared-detail .detail-top .detail-gallery {
		flex-basis: 690px;
	}

	.shared-detail .detail-top .detail-gallery .gallery-count,
	.shared-detail .detail-top .detail-gallery .gallery-count i {
		font-size: 20px;
	}

	.shared-detail .detail-top h1 {
		margin-top: 20px;
		margin-bottom: 30px;
		font-size: 44px;
		line-height: 50px;
	}

	.shared-detail .detail-top dl,
	.shared-detail .detail-top dt,
	.shared-detail .detail-top dd {
		font-size: 18px;
	}

	.shared-detail .info-section ul {
		font-size: 20px;
		line-height: 25px;
		margin-bottom: 30px;
	}

	.shared-detail .info-section ul li .fas {
		font-size: 18px;
	}

	.shared-detail .info-section ul li .fa-map-marker-alt {
		font-size: 19px;
	}

	.shared-detail .info-section .social-icons {
		margin-left: 10px;
	}

	.shared-detail .info-section .social-icons a {
		width: 40px;
		height: 40px;
		font-size: 16px;
	}
	
	.shared-detail .detail-info-bar {
		padding: 0;
		margin-bottom: 30px;
	}
	
	.shared-detail .detail-info-bar .split-pane {
		margin-bottom: 0;
		padding: 0 20px;
		flex: 1;
	}

	.shared-detail .detail-drawers .drawer-button {
		font-size: 30px;
	}

	.shared-detail .detail-drawers .drawer-button i {
		font-size: 30px;
		margin-left: 10px;
	}

	.shared-detail .detail-drawers > dl.drawers > dd > .content {
		padding: 25px 60px;
	}
	
	.shared-detail .detail-drawers .gMapHolder { 
		height: 400px; 
	}
}

.tourItem .tour-inner {
	display: grid;
	grid-template-columns: auto 1fr;
}

.tourItem .rating {
	display: flex;
	margin: var(--space-3) 0;
}

.tourItem .rating svg {
	width: var(--space-5);
    fill: var(--sw-text-color);
    margin-right: var(--space-2);
}