.shared-detail {
	--font-family-display: var(--font-display);
	--font-family-body: var(--font-body);
	--background-color: var(--white);
	--background-color-alt: var(--white);
	--text-color: var(--dark-blue);
	--text-color-alt: var(--dark-blue);
	--visit-btn-bg: var(--white);
	--visit-btn-bg-alt: var(--white);
	--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(--light-blue);
	margin: 0 auto var(--space-10);
	overflow: hidden;
}

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

.shared-detail .share-buttons {
	display: block;
	position: absolute;
	right: 15px;
	top: 5px;
}

.shared-detail .share-buttons .addthis_toolbox a {
	font-size: 13px;
	font-weight: 600;
	letter-spacing: .04em;
}

.shared-detail .share-buttons .addthis_toolbox a i {
	margin-left: var(--space-1);
}

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

.shared-detail a {
	color: var(--dark-gray);
	font-weight: 500;
}

.shared-detail .split-pane-container-desktop {
	display: none;
}

.shared-detail .detail-img-cont {
	position: relative;
	margin-bottom: -111px;
}

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

.shared-detail .detail-img-cont::after {
	position: absolute;
	content: '';
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	background-color: var(--dark-blue);
	opacity: 70%;
}

@media (min-width: 40em) {
	.shared-detail .detail-img-cont {
		margin-bottom: -222px;
	}
}

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

@media (min-width: 1440px) {
	.shared-detail .detail-img-cont {
		margin-bottom: -180px;
		max-height: 408px;
		overflow: hidden;
	}
}

.shared-detail .detail-top {
	display: flex;
	flex-direction: column;
	padding: 0 10px;
	position: relative;
	z-index: 2;
}

.shared-detail .detail-top .detail-gallery {
	order: 1;
	/* Always want gallery coming first on mobile */
	position: relative;
	border: 5px solid white;
	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: var(--space-2) var(--space-3);
	color: var(--white);
	background-color: transparent;
	font-family: var(--font-family-body);
	font-size: 13px;
	font-weight: 400;
	letter-spacing: .02em;
	line-height: var(--leading-none);
	display: flex;
	align-items: center;
}

.shared-detail .detail-top .detail-gallery .gallery-count i {
	font-size: .8rem;
	margin-left: var(--space-2);
}

@media (min-width: 40em) {
	.shared-detail .detail-top .detail-gallery .gallery-count {
		font-size: 21px;
		letter-spacing: .04em;
		padding: var(--space-4) var(--space-6);
	}
	.shared-detail .detail-top .detail-gallery .gallery-count i {
		font-size: var(--text-xl);
		margin-left: var(--space-3);
	}
}

.shared-detail .detail-top .info-section {
	order: 2;
	flex: 1 1 50%;
	padding-bottom: var(--space-6);
	background-color: var(--background-color);
}

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

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

.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-drawers .drawer-button {
	font-family: var(--font-display);
	color: var(--text-color);
	font-size: 24px;
	line-height: 30px;
	font-weight: 700;
	letter-spacing: .06em;
	text-transform: uppercase;
}

.shared-detail .detail-info-bar .descriptionTab p {
	font-size: 16px;
	color: var(--text-color);
	line-height: 24px;
	font-weight: 500;
}

.shared-detail .detail-info-bar h1 {
	font-family: var(--font-family-display);
	font-size: 23px;
	font-weight: 700;
	line-height: 31px;
	color: var(--text-color);
	letter-spacing: .02em;
	margin-bottom: var(--space-1);
}

.shared-detail .detail-info-bar .tripadvisor-snippet {
	height: 40px !important;
}

.shared-detail .detail-info-bar .tripadvisor-snippet>h4 {
	display: none;
}

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

.shared-detail .detail-info-bar .tripadvisor-snippet .reviews-rating-line-text {
	top: 1px;
	font-size: 14px;
	letter-spacing: .025em;
	color: var(--text-color);
}

.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: 16px;
	font-weight: 800;
	line-height: var(--leading-tight);
	background-color: var(--visit-btn-bg);
	color: var(--text-color-alt);
	margin: 0;
	text-transform: uppercase;
	text-decoration: underline;
}

.shared-detail .detail-top div[data-tb-button] {
	position: absolute;
	color: #FFF;
	top: 10px;
	left: 28px;
	z-index: 1;
	cursor: pointer;
	font-size: 20px;
}

.shared-detail .detail-top div[data-tb-button]>a[data-type="Remove"] {
	color: #ffdd1f;
}

@media screen and (min-width: 64em) {
	.shared-detail .detail-top div[data-tb-button] {
		top: 10px;
		left: 19px;
		font-size: 26px;
	}
}

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

.shared-detail .detail-top .info-section .bottom-actions .action-item+div, .shared-detail .detail-top .info-section .bottom-actions .action-item+.action-item {
	margin-left: var(--space-4);
}

.shared-detail .detail-top .info-section .bottom-actions .action-item+div button, .shared-detail .detail-top .info-section .bottom-actions .action-item+.action-item {
	text-align: right;
}

.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: none;
	width: 100%;
	margin: 0 auto;
	padding: 15px;
	position: relative;
}

.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: 16px;
	font-weight: 500;
	line-height: 25px;
	margin: 0;
	list-style: none;
}

.shared-detail .detail-info-bar .social-icons, .shared-detail .split-pane-container-desktop .social-icons {
	display: flex;
}

.shared-detail .detail-info-bar .social-icons li a, .shared-detail .split-pane-container-desktop .social-icons li a {
	color: white;
	background: var(--background-gradient);
	border-radius: var(--rounded-circle);
	width: 36px;
	height: 36px;
	display: flex;
	align-items: center;
	justify-content: center;
}

/* .shared-detail .detail-info-bar ul li {
	display: flex;
	align-items: baseline;
	color: var(--dark-gray);
	margin-bottom: var(--space-1);
} */

.shared-detail .detail-info-bar ul li:not(:first-child) {
	font-size: 14px;
	font-weight: 500;
}

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

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

.shared-detail .detail-info-bar ul.info-list .two-line-wrap {
	font-family: var(--font-body);
	font-size: 14px;
	font-style: italic;
	font-weight: 600;
	letter-spacing: .01em;
}

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

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

/* Icons */

.shared-detail .detail-info-bar ul.info-list li img, .shared-detail .split-pane-container-desktop ul.info-list li img {
	margin-right: var(--space-3);
}

.shared-detail .detail-info-bar ul.info-list li img.mappin, .shared-detail .split-pane-container-desktop ul.info-list li img.mappin {
	height: 15px;
	max-width: 11px;
	margin-right: 10px;
}

.shared-detail .detail-info-bar ul.info-list li img.phone, .shared-detail .split-pane-container-desktop ul.info-list li img.phone {
	height: 15px;
	max-width: 15px;
}

.shared-detail .detail-info-bar ul.info-list li img.envelope, .shared-detail .split-pane-container-desktop ul.info-list li img.envelope {
	height: 12px;
	max-width: 16px;
}

.shared-detail .detail-info-bar .bottom-actions {
	margin-bottom: var(--space-6);
}

.shared-detail .detail-info-bar .bottom-actions button {
	background-color: transparent;
	color: var(--dark-gray);
}

.shared-detail .detail-info-bar .bottom-actions button img {
	width: 15px;
	height: 17px;
}

.shared-detail .detail-info-bar .bottom-actions a, .shared-detail .detail-info-bar .bottom-actions button {
	display: flex;
	font-weight: 700;
	font-size: 14px;
	text-transform: uppercase;
	padding: 0;
}

.shared-detail .detail-info-bar .bottom-actions img {
	display: inline-block;
	margin-right: var(--space-2);
	height: 16px;
}

@media (min-width: 64em) {
	.shared-detail .detail-info-bar .bottom-actions a, .shared-detail .detail-info-bar .bottom-actions button {
		font-size: 18px;
		align-items: baseline;
	}
	.shared-detail .detail-info-bar .bottom-actions a>i {
		margin-right: 4px;
	}
	.shared-detail .detail-info-bar .bottom-actions img {
		transform: translateY(2px);
	}
	.shared-detail .detail-info-bar .bottom-actions .dropdown {
		position: absolute;
	}
}

.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: 16px;
	font-weight: 500;
	line-height: 25px;
	margin: 0;
	list-style: none;
}

.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 {
	list-style: none;
	margin-left: 0;
	display: flex;
}

.shared-detail .detail-info-bar .social-icons li {
	margin-right: var(--space-5);
	margin-bottom: 0;
}

.shared-detail .detail-info-bar .social-icons a {
	font-size: var(--text-base);
}

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

.shared-detail .detail-drawers #descriptionTab p {
	white-space: pre-line;
}

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

.shared-detail .detail-drawers .drawers>dd {
	margin-bottom: 0;
}

.shared-detail .detail-drawers>dl.drawers>dd>.content {
	display: none;
	padding: 15px;
}

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

.shared-detail .detail-drawers #amenitiesTab *:not(button), .shared-detail .detail-drawers #meetingfacilityTab *:not(button) {
	font-weight: 700;
	color: var(--dark-blue);
}

.shared-detail .detail-drawers #amenitiesTab .subtab h5, .shared-detail .detail-drawers #meetingfacilityTab .subtab h5 {
	font-size: var(--text-xl);
	padding-top: var(--space-4);
	padding-bottom: var(--space-2);
}

.shared-detail .detail-drawers #amenitiesTab .amen-subtab>li, .shared-detail .detail-drawers #meetingfacilityTab .amen-subtab>li {
	padding: 4px var(--space-8);
	max-width: 80%;
}

.shared-detail .detail-drawers .drawer-button {
	display: flex;
	align-items: center;
	justify-content: space-between;
	background-color: transparent;
	padding: 0;
	padding-bottom: 6px;
	margin: 0 15px;
	margin-bottom: var(--space-1);
	width: calc(100% - 30px);
	border-bottom: 1px solid rgba(209, 210, 212, 0.4);
}

.shared-detail .detail-drawers .drawer-button .icon-cont {
	width: 20px;
	height: 20px;
	margin-left: var(--space-3);
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: var(--rounded-circle);
	background-color: #dabc7e;
}

.shared-detail .detail-drawers .drawer-button[aria-expanded="true"] .icon-cont {
	background-color: #a2d0dd;
}

.shared-detail .detail-drawers .drawer-button img {
	width: 20px;
	height: 9px;
}

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

.shared-detail .detail-drawers .social-cont {
	max-width: 310px;
	margin: 0 auto;
}

.shared-detail .detail-drawers .social-cont .social-title, .shared-detail .detail-drawers .social-cont .social-title a {
	font-size: var(--text-xl);
	margin-bottom: var(--space-5);
	font-weight: 700;
	color: var(--dark-blue);
}

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

@media (min-width: 40em) {
	.shared-detail .detail-top .info-section {
		display: flex;
		flex-direction: row;
		justify-content: space-between;
		align-items: flex-start;
	}
	.shared-detail .detail-drawers>dl.drawers>dd>.content {
		padding: var(--space-8) var(--space-16);
		padding-bottom: 0;
	}
	.shared-detail .detail-drawers>dl.drawers>dd>.content p {
		font-size: 18px;
		line-height: 30px;
	}
	.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-cont {
		display: flex;
		position: relative;
		padding: 40px;
		margin: 0 auto;
		margin-bottom: 0;
		background-color: white;
		max-width: 1163px;
	}
	.shared-detail .detail-cont::before {
		position: absolute;
		content: '';
		top: -20px;
		left: -20px;
		width: calc(100% + 40px);
		height: 100%;
		background-color: white;
		opacity: 20%;
		z-index: 0;
	}
	.shared-detail .detail-top {
		padding: 0;
		max-width: 521px;
		min-width: 521px;
	}
	.shared-detail .detail-top::before {
		content: none;
	}
	.shared-detail .detail-info-bar::before {
		content: none;
	}
	.shared-detail .detail-top .detail-gallery {
		flex: none;
		border: none;
	}
	.shared-detail .detail-info-bar {
		padding: 60px 0 0 60px;
	}
	.shared-detail .tripadvisor-snippet {
		margin-bottom: 5px;
	}
	.shared-detail .detail-info-bar .split-pane {
		display: none;
	}
	/* we need to hide this on desktop for a different layout */
	.shared-detail .split-pane-container-desktop {
		max-width: 1163px;
		padding: 26px 40px 40px 57px;
		margin: 0 auto;
		display: flex;
		justify-content: flex-start;
		gap: var(--space-48);
	}
	.shared-detail .split-pane-container-desktop .split-pane {
		max-width: 50%;
	}
	.shared-detail .split-pane-container-desktop ul, .shared-detail .split-pane-container-desktop dl {
		font-family: var(--font-family-body);
		font-size: 18px;
		font-weight: 500;
		line-height: 19px;
		margin: 0;
		list-style: none;
	}
	.shared-detail .split-pane-container-desktop dl>dd {
		margin-bottom: var(--space-2);
	}
	.shared-detail .split-pane-container-desktop ul li {
		display: flex;
		align-items: baseline;
		color: var(--dark-gray);
		margin-bottom: var(--space-4);
	}
	.shared-detail .split-pane-container-desktop .social-icons li {
		margin-right: var(--space-5);
	}
	.shared-detail .split-pane-container-desktop ul li>div:not(.two-line-wrap) {
		display: flex;
		align-items: flex-start;
	}
	.shared-detail .split-pane-container-desktop ul li:last-child {
		margin-bottom: 0;
	}
	.shared-detail .split-pane-container-desktop ul li .two-line-wrap>* {
		display: block;
		line-height: 1.1;
	}
	.shared-detail .split-pane-container-desktop ul li .meta-label {
		margin-right: var(--space-1);
		font-weight: bold;
	}
	/* Icons */
	.shared-detail .split-pane-container-desktop ul.info-list li img.mappin {
		max-width: 14px;
		width: 14px;
		height: 16px;
	}
	.shared-detail .split-pane-container-desktop ul.info-list li img.phone {
		max-width: 16px;
		height: 15px;
	}
	.shared-detail .split-pane-container-desktop ul.info-list li img.envelope {
		max-width: 17px;
		height: 13px;
	}
	/* Drawers */
	.shared-detail .detail-drawers {
		padding: 0 40px;
		margin: 0 auto;
		margin-bottom: 0;
	}
	.shared-detail .detail-drawers #amenitiesTab {
		border-radius: 10px;
	}
	.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);
	}
	/* Text */
	.shared-detail .detail-info-bar h1 {
		font-size: 44px;
		line-height: 47px;
		margin-bottom: var(--space-6);
	}
	.shared-detail .detail-info-bar ul {
		line-height: 30px;
	}
	.shared-detail .detail-drawers .drawers>dd {
		margin-bottom: var(--space-16);
	}
	.shared-detail .detail-info-bar .descriptionTab .description-title, .shared-detail .detail-drawers .drawer-button {
		font-size: 30px;
		padding-bottom: var(--space-3);
		border-bottom-width: 2px;
	}
	.shared-detail .detail-drawers .drawer-button img {
		width: 23px;
		height: 10px;
	}
}

@media (min-width: 1166px) {
	.shared-detail .detail-drawers {
		padding: 0;
	}
}

.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 .price-container>.label {
	font-size: 10px;
	line-height: 11px;
	font-weight: 600;
	color: #252525db;
}

.shared-detail .price-container .inner {
	display: flex;
	align-items: center;
	gap: 7px;
}

.shared-detail .price-container .price {
	font-size: 21px;
	font-weight: 900;
	line-height: 14px;
}

.shared-detail .price-container .inner .label {
	width: 30px;
	line-height: 8px;
	font-size: 10px;
	font-weight: 300;
}

.shared-detail .dates {
	margin-top: 8px;
}

.shared-detail .dates input[type="date"] {
	position: relative;
	font-style: oblique;
	font-weight: 600;
	color: #2d2d2deb;
	max-width: 100px;
}

.shared-detail .dates>span {
	font-style: oblique;
	padding-right: 5px;
	vertical-align: top;
}

.shared-detail .dates input[type="date"]::-webkit-calendar-picker-indicator {
	order: -1;
	padding: 0;
	margin: 0;
	background: none;
	cursor: pointer;
}

.shared-detail .dates input[type="date"]:before {
	content: "";
	background-image: url('/includes/public/assets/shared/calendar.svg');
	position: absolute;
	width: 14px;
	height: 16px;
	top: 2px;
	left: 0;
	pointer-events: none;
}

.shared-detail .dates input[type="date"]:after {
	content: "";
	position: absolute;
	width: 80%;
	height: 1px;
	bottom: 1px;
	right: 0;
	pointer-events: none;
	background-color: #2d2d2deb;
}

.shared-detail .dates a.book {
	display: flex;
	justify-content: center;
	align-items: center;
	background: linear-gradient(to left, var(--dark-blue), var(--light-blue));
	font-family: var(--font-body);
	color: white;
	font-size: 12px;
	letter-spacing: .02em;
	font-weight: 400;
	font-style: italic;
	width: max-content;
	padding: 6px 22px;
	margin-top: 10px;
	margin-bottom: 28px;
}

@media (min-width: 64em) {
	.shared-detail .price-container>.label {
		font-size: 13px;
		line-height: 26px;
	}
	.shared-detail .price-container .price {
		font-size: 28px;
	}
	.shared-detail .price-container .inner .label {
		font-size: 13px;
		font-weight: 600;
		line-height: 11px;
	}
	.shared-detail .dates input[type="date"] {
		font-size: 18px;
		max-width: 122px;
	}
	.shared-detail .dates input.end-date {
		margin-right: 19px;
	}
	.shared-detail .dates input[type="date"]:before {
		width: 15px;
		height: 17px;
		background-repeat: no-repeat;
		background-size: contain;
	}
	.shared-detail .dates input[type="date"]:after {
		width: 77%;
		right: auto;
		left: 20px;
		bottom: 3px;
	}
	.shared-detail .dates>span {
		font-size: 18px;
		font-weight: 500;
		padding-right: 11px;
	}
	.shared-detail .dates {
		display: flex;
		align-items: center;
		gap: 4px;
		flex-wrap: wrap;
		margin-bottom: 22px;
	}
	.shared-detail .dates a.book {
		margin: 0;
		font-size: var(--text-base);
		padding: 10px var(--space-10) 11px 39px;
	}
}

.glightbox-container .gslider {
	padding-bottom: 75px;
}

.glightbox-container .gbtn:not(.gclose) {
	bottom: 50px;
	top: auto !important;
}

@media screen and (min-width: 769px) {
	.glightbox-container .gslider {
		padding-bottom: 0;
	}
	.glightbox-container .gbtn:not(.gclose) {
		bottom: auto;
		top: 45% !important;
	}
}