@font-face {
	font-family: FontAwesome;
	font-style: normal;
	font-weight: 900;
	font-display: block;
	src: url("https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.1.1/webfonts/fa-solid-900.woff2") format("woff2");
}

:root {
	interpolate-size: allow-keywords;
	--color-black: #000000;
	--color-white: #ffffff;
	--color-white-gray: #eeeeee;
}

html,
body {
	font-family: Futura-PT, Helvetica, Arial, sans-serif;
}

body {
	line-height: 1.5;
}

a {
	color: #4ba5ef;
}

ol>li {
	list-style: decimal;
}

p {
	margin-bottom: 1em;
}

em {
	font-style: italic;
}

strong {
	font-weight: bold;
}

h1 {
	font-size: 2em;
	line-height: 1;
	font-weight: bold;
	color: #000000;
	margin-bottom: 0.5em;
}

h2 {
	font-size: 1.5em;
	line-height: 1.2;
	font-weight: bold;
	color: #000000;
	margin-bottom: 0.65em;
}

h3 {
	font-size: 1.3em;
	line-height: 1.3;
	font-weight: bold;
	color: #000000;
	margin-bottom: 0.75em;
}

h4 {
	font-weight: bold;
	margin-bottom: 1em;
}

h5 {
	font-weight: bold;
	margin-bottom: 1em;
}

.grecaptcha-badge {
	visibility: hidden;
}

.header--mobile {
	display: none;

	@media screen and (max-width: 400px) {
		font-size: 87.5%;
	}
}

@media screen and (max-width: 1024px) {
	.header--desktop {
		display: none;
	}

	.header--mobile {
		display: block;
	}
}

.header--mobile-top {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin: 0.5em 1em;
}

.header--mobile-burger {
	width: 1.875em;
	height: 1.375em;
	position: relative;
	cursor: pointer;
	display: flex;
	flex-direction: column;
	justify-content: space-between;

	:where(& > span) {
		display: block;
		height: 0.1875em;
		width: 100%;
		background-color: #333333;
		border-radius: 0.1875em;
		transition: all 0.3s ease;
		transform-origin: center;
	}

	:where(&.header--open > :nth-child(1)) {
		transform: translateY(0.5625em) rotate(45deg);
	}

	:where(&.header--open > :nth-child(2)) {
		opacity: 0;
	}

	:where(&.header--open > :nth-child(3)) {
		transform: translateY(-0.5625em) rotate(-45deg);
	}
}

.header--mobile-masthead-link {
	display: flex;
	flex: 1;
	align-items: center;
	justify-content: center;
	text-align: center;
}

.header--mobile-masthead-image {
	display: block;
	max-width: calc(100% - 2em);
	max-height: 4em;
}

.header--fixed-top {
	background: #4ba5ef;
	color: var(--color-white);
	text-align: center;
	padding: 0.25em 1em;
	text-transform: uppercase;
	font-weight: bold;
	font-size: 81.25%;

	&> :last-child {
		margin-bottom: 0;
	}
}

.header--mobile-left {
	width: 25%;
	display: flex;
	align-items: center;
	gap: 0.5em;
}

.header--mobile-masthead-dates {
	width: 25%;
	text-align: right;
}

.header--mobile-menu {
	background: var(--color-white);
	height: 0;
	overflow: hidden;
	transition: height 0.3s ease;

	&.header--visible {
		height: max-content;
	}
}

.header--mobile-menu-inner {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	text-align: center;
	gap: 2em;
	padding: 1em 0;
}

.header--mobile-second-nav-list,
.header--mobile-top-menu {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	text-align: center;
}

.header--mobile-second-nav-item {
	display: block;
	color: #555555;
	text-decoration: none;
	text-transform: uppercase;
	font-weight: bold;
	font-size: 93.75%;
	padding: 0.5em 1em;
}

.header--mobile-top-menu-link {
	display: block;
	color: #555555;
	text-decoration: none;
	text-transform: uppercase;
	font-weight: bold;
	font-size: 93.75%;
	padding: 0.375em 1em;
}

.header--menu-row {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 1em;
	max-width: 1200px;
	margin: 0 auto;
	border-bottom: 1px solid #afafaf;
	padding: 0 1em;
}

.header--menu-row-left {
	display: flex;
	gap: 0.25em;
}

.header--logo-wrap,
.header--logo {
	display: block;
}

.header--my-account,
.header--sign-up {
	display: block;
	background: var(--color-black);
	color: var(--color-white);
	text-transform: uppercase;
	padding: 0 1em;
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
	text-decoration: none;
	font-size: 81.25%;
	font-weight: bold;
	line-height: 1;
}

.header--logout,
.header--log-in {
	display: block;
	color: #000000;
	border: 2px solid #000000;
	text-transform: uppercase;
	padding: 0 1em;
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
	text-decoration: none;
	font-size: 81.25%;
	font-weight: bold;
	line-height: 1;
}

.header--menu-row-middle {
	flex: 1;
}

.header--top-menu {
	display: flex;
}

.header--top-menu-link {
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
	padding: 1em;
	border-left: 1px solid #afafaf;
	color: #555555;
	text-decoration: none;
	font-weight: bold;
	text-transform: uppercase;

	@media screen and (max-width: 1200px) {
		font-size: 93.75%;
		padding: 0.75em;
	}
}

:where(.header--top-menu-item:last-child) .header--top-menu-link {
	border-right: 1px solid #afafaf;
}

.header--book-now {
	display: block;
	background: #4ba5ef;
	color: var(--color-white);
	text-transform: uppercase;
	padding: 0.75em 1.25em;
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
	text-decoration: none;
	font-size: 81.25%;
	font-weight: bold;
	line-height: 1;
}

.header--masthead {
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
	position: relative;
	max-width: calc(1200px - 2em);
	margin: 2em auto 1em auto;
}

.header--masthead-link {
	display: block;
	max-width: 35em;
}

.header--masthead-image {
	display: block;
	max-width: 100%;
}

.header--masthead-dates {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	right: 1em;
	text-transform: uppercase;
	font-weight: bold;
	text-align: right;
	font-size: 112.5%;
}

.header--masthead-dates-link {
	color: var(--color-black);
}

.header--second-nav-list {
	display: flex;
	gap: 3em;
	align-items: center;
	justify-content: center;
	text-align: center;
	margin: 0 auto;
	max-width: 1200px;
}

.header--second-nav-item {
	display: block;
	text-transform: uppercase;
	color: #555555;
	text-decoration: none;
	font-weight: bold;
	font-size: 93.75%;
}

.footer {
	margin-top: 3em;
}

.footer--signup {
	display: flex;
	flex-direction: column;
	gap: 1em;
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 1em;
}

.footer--signup-title {
	display: flex;
	align-items: center;
	text-align: center;
	width: 100%;
}

:where(.footer--signup-title)::before,
:where(.footer--signup-title)::after {
	content: "";
	display: block;
	flex: 1;
	border-bottom: 2px solid #cccccc;
}

.footer--signup-title:where(:not(:empty)) {
	font-weight: bold;
	font-size: 2em;
	text-transform: uppercase;

	@media screen and (max-width: 768px) {
		font-size: 1.4em;
	}
}

:where(.footer--signup-title:not(:empty))::before {
	margin-right: 1em;
}

:where(.footer--signup-title:not(:empty))::after {
	margin-left: 1em;
}

.footer--signup-form {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
}

.footer--signup-form :where(form) {
	display: grid;
	grid-template-areas: "a a" "b c";
	gap: 1em;

	@media screen and (max-width: 640px) {
		grid-template-areas: "a" "b" "c";
	}
}

.footer--signup-form :where(p.message) {
	grid-area: a;
	margin-bottom: 0;
	font-weight: bold;

	:where(&.bad) {
		color: #cc0000;
	}

	:where(&.good) {
		color: #009900;
	}
}

.footer--signup-form :where(fieldset) {
	grid-area: b;
}

.footer--signup-form :where(.Actions) {
	grid-area: c;
}

.footer--signup-form :where(input[type='email']) {
	display: block;
	padding: 0 1em;
	box-sizing: border-box;
	border: 2px solid #cccccc;
	border-radius: 0.25em;
	height: 3.5em;
	font-size: 87.5%;
	margin-bottom: 0.5em;
	width: 30em;
	max-width: calc(100vw - 10em);

	@media screen and (max-width: 640px) {
		max-width: 100%;
		width: 100%;
	}
}

.footer--signup-form :where(input[type='email'])::placeholder {
	text-transform: uppercase;
	font-size: 87.5%;
}

.footer--signup-form :where([type='submit']) {
	display: block;
	background: var(--color-black);
	color: var(--color-white);
	appearance: none;
	border: 0;
	padding: 0.25em 1em;
	text-transform: uppercase;
	font-weight: bold;
	height: 3.5em;
	box-sizing: border-box;
	font-size: 87.5%;
	cursor: pointer;

	@media screen and (max-width: 640px) {
		width: 100%;
	}
}

.footer--signup-form :where(.recaptcha-policy-text) {
	font-size: 81.25%;
	opacity: 0.75;
	max-width: 25em;
	margin: 0 auto;
	text-align: center;
	display: block;

	& :where(p) {
		margin-bottom: 0;
	}
}

.footer--press {
	background: #eeeeec;
	padding: 3em 1em;
	margin: 3em 0;
	text-align: center;
}

.footer--press-inner {
	display: flex;
	flex-direction: column;
	gap: 1em;
}

.footer--press-quote {
	font-size: 150%;
	margin-bottom: 1em;
}

.footer--press-quote::before {
	content: "\201C";
	display: inline-block;
	font-size: 3em;
	line-height: 1;
	position: relative;
	top: 0.4em;
	margin-right: 0.2em;
}

.footer--press-quote::after {
	content: "\201D";
	display: inline-block;
	font-size: 3em;
	line-height: 1;
	position: relative;
	top: 0.4em;
	margin-left: 0.2em;
}

.footer--press-source {
	font-weight: bold;
	font-size: 125%;
	text-transform: uppercase;
	margin-bottom: 0.5em;
}

.footer--press-info {
	font-size: 112.5%;
	opacity: 0.5;
	text-transform: uppercase;
	font-weight: bold;
}

.footer--socials {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 1em;
	overflow: hidden;
}

.footer--socials-title {
	display: flex;
	align-items: center;
	text-align: center;
	width: 100%;
	font-size: 93.75%;
}

:where(.footer--socials-title)::before,
:where(.footer--socials-title)::after {
	content: "";
	display: block;
	flex: 1;
	border-bottom: 2px solid #cccccc;
}

.footer--socials-title:where(:not(:empty)) {
	text-transform: uppercase;
}

:where(.footer--socials-title:not(:empty))::before {
	margin-right: 1em;
}

:where(.footer--socials-title:not(:empty))::after {
	margin-left: 1em;
}

.footer--social-list {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 1em;
	margin-top: 0.5em;
}

.footer--social-link {
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
	line-height: 1;
	border-radius: 50%;
	color: var(--color-white);
	background: var(--color-black);
	text-decoration: none;
	width: 2.5em;
	height: 2.5em;
}

.footer--copyright {
	text-align: center;
	font-size: 81.25%;
	margin: 1em auto 0 auto;
}

/* BEGIN: checkout skeleton */

.checkout-shell {
	position: relative;
	display: block;
	container-type: inline-size;
}

:where(.checkout-skeleton > div) {
	background: linear-gradient(90deg, #eeeeee 25%, #f5f5f5 37%, #eeeeee 63%);
	background-size: 400% 100%;
	animation: shimmer 1.4s ease infinite;
	border-radius: 0.375em;
}

.skeleton-header {
	height: 25em;
}
.skeleton-content {
	height: 48em;
}

:where(.checkout-shell.is-ready .checkout-skeleton) {
	display: none;
}

@keyframes shimmer {
	0% {
		background-position: 100% 0;
	}

	100% {
		background-position: -100% 0;
	}
}
@container (max-width: 768px) {
	.checkout-shell {
		min-height: 75em;
	}
}

.page-wrap {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 1em;
}

.htlgi-button__primary {
	background: #4ba5ef;
	padding: 0.75em 1em;
	text-decoration: none;
	color: #ffffff;
	font-weight: bold;
	text-transform: uppercase;
	font-size: 90%;
	transition: opacity 200ms;
	display: inline-block;
	&:hover {
		opacity: 0.8;
	}
}

/* BEGIN: ThreeColumnGridPage */

.three-column-grid-page--title {
	display: flex;
	align-items: center;
	justify-content: center;
	margin-top: 1em;
	font-weight: bold;
	font-size: 2em;
	gap: 1em;
	text-transform: uppercase;
	&:before,
	&:after {
		content: "";
		flex: 1;
		height: 1px;
		background: #bdbdbd;
	}
}

.three-column-grid-page--content {
	max-width: 44em;
	text-align: center;
	margin: 0 auto 2em auto;
}

.three-column-grid-page--bottom-content {
	margin-top: 1em;
	text-align: center;
}

/* END: ThreeColumnGridPage */

/* BEGIN: three-grid-layout */

.three-grid-layout {
	display: grid;
	list-style: none;
	margin: 0;
	padding: 0;
	gap: 0.75em;
	grid-template-columns: repeat(auto-fit, minmax(20em, 1fr));
}

.three-grid-layout--item {
	box-shadow: 0 0 0.5em 0 rgba(0,0,0,0.6);
}

.three-grid-layout--trigger {
	position: relative;
	display: block;
	color: inherit;
	text-decoration: inherit;
	overflow: hidden;
	aspect-ratio: 5 / 3;
}

.three-grid-layout--image {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.three-grid-layout--new {
	position: absolute;
	background: #009fe3;
	color: #ffffff;
	padding: 2px 38px;
	transform: rotate(36deg);
	box-sizing: border-box;
	transform-origin: center;
	top: 6px;
	font-size: 20px;
	line-height: normal;
	right: -29px;
	left: auto;
	font-weight: normal;
	text-transform: uppercase;
}

.three-grid-layout--caption {
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	padding: 0.5em;
	text-align: center;
	background: rgba(0, 0, 0, 0.8);
	color: #ffffff;
}

.three-grid-layout--title,
.three-grid-layout--subtitle {
	color: #ffffff;
	font-weight: normal;
	text-transform: uppercase;
	margin: 0;
	padding: 0;
}

.three-grid-layout--title {
	font-size: 1.4em;
}

.three-grid-layout--subtitle {
	font-size: 1em;
}

/* END: three-grid-layout */

/* BEGIN: three column grid popup */

.popup-page-popup {
	display: flex;
	align-items: center;
	justify-content: center;
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: rgba(0, 0, 0, 0.5);
	backdrop-filter: blur(0.5em);
	opacity: 1;
	transition: opacity 400ms;
}

.popup-page-popup__hidden {
	opacity: 0;
	pointer-events: none;
}

.popup-page-popup--inner {
	max-width: 36em;
	background: #ffffff;
	position: relative;
	box-shadow: 0 0 1em 0 rgba(0, 0, 0, 0.625);
}

.popup-page-popup--close {
	position: absolute;
	top: 0;
	right: 0;
	display: block;
	padding: 0.125em 0.625em;
	z-index: 1;
	text-decoration: none;
	color: #555555;

	&:after {
		display: block;
		content: "×";
		font-size: 2.5em;
		line-height: 1;
		font-weight: bold;
	}
}

.popup-page-popup--top-title {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 1em;
	text-transform: uppercase;
	padding: 0.625em 2.5em;
	font-weight: bold;

	&:before,
	&:after {
		content: "";
		flex: 1;
		height: 1px;
		background: #bdbdbd;
	}
}

.popup-page-popup--image-wrap {
	position: relative;
	height: 35vh;
	max-height: 360px;
}

.popup-page-popup--image {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.popup-page-popup--title {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 1em;
	color: #ffffff;
	text-transform: uppercase;
	font-size: 1.8em;
}

.popup-page-popup--content {
	margin: 1em;
	max-height: 48vh;
	overflow-x: hidden;
	overflow-y: auto;
}

.popup-page-popup--prev,
.popup-page-popup--next {
	position: fixed;
	top: 50%;
	width: 3em;
	height: 3em;
	transform: translateY(-50%);
	background-repeat: no-repeat;
	background-position: center;
	background-size: contain;
	color: inherit;
	text-decoration: none;
}

.popup-page-popup--prev {
	left: 1em;
	background-image: url('data:image/svg+xml,<svg version="1.1" viewBox="0 0 30 60" width="30" height="60" xmlns="http://www.w3.org/2000/svg"><path stroke="white" fill="none" stroke-width="4" d="M28 4 L2 30 L28 56"></path></svg>');
}

.popup-page-popup--next {
	right: 1em;
	background-image: url('data:image/svg+xml,<svg version="1.1" viewBox="0 0 30 60" width="30" height="60" xmlns="http://www.w3.org/2000/svg"><path stroke="white" fill="none" stroke-width="4" d="M2 4 L28 30 L2 56"></path></svg>');
}

/* END: three column grid popup */
