/*! normalize.css v8.0.1 | MIT License | github.com/necolas/normalize.css */html{line-height:1.15;-webkit-text-size-adjust:100%}body{margin:0}main{display:block}hr{box-sizing:content-box;height:0;overflow:visible}pre{font-family:monospace,monospace;font-size:1em}a{background-color:transparent}abbr[title]{border-bottom:none;text-decoration:underline;text-decoration:underline dotted}b,strong{font-weight:bold}code,kbd,samp{font-family:monospace,monospace;font-size:1em}small{font-size:80%}sub,sup{font-size:75%;line-height:0;position:relative;vertical-align:baseline}sub{bottom:-.25em}sup{top:-.5em}img{border-style:none}button,input,optgroup,select,textarea{font-family:inherit;font-size:100%;line-height:1.15;margin:0}button,input{overflow:visible}button,select{text-transform:none}[type=button],[type=reset],[type=submit],button{-webkit-appearance:button}[type=button]::-moz-focus-inner,[type=reset]::-moz-focus-inner,[type=submit]::-moz-focus-inner,button::-moz-focus-inner{border-style:none;padding:0}[type=button]:-moz-focusring,[type=reset]:-moz-focusring,[type=submit]:-moz-focusring,button:-moz-focusring{outline:1px dotted ButtonText}fieldset{padding:.35em .75em .625em}legend{box-sizing:border-box;color:inherit;display:table;max-width:100%;padding:0;white-space:normal}progress{vertical-align:baseline}textarea{overflow:auto}[type=checkbox],[type=radio]{box-sizing:border-box;padding:0}[type=number]::-webkit-inner-spin-button,[type=number]::-webkit-outer-spin-button{height:auto}[type=search]{-webkit-appearance:textfield;outline-offset:-2px}[type=search]::-webkit-search-decoration{-webkit-appearance:none}::-webkit-file-upload-button{-webkit-appearance:button;font:inherit}details{display:block}summary{display:list-item}template{display:none}[hidden]{display:none}

* { box-sizing: border-box }
img { max-width: 100%; height: auto; }

:root {
	--font-family: "Montserrat", serif;
	--brand-font-family: sans-serif;
	--site-max-width: 1100px;
	--content-side-padding: 14px;
	--border-radius: 10px;
	
	--text-color: #0b0b0c;
	--text-secondary-color: #505a5f;
	--background-color: #ffffff;
	--background-secondary-color: #ffffff;
	--background-tint-color: #ffffff;
	
	--accent-color: #fa243c;
	--accent-contrast-color: white;
	
	--border-color: #d2d4d8;
	--image-border-color: #aaa;
	--list-item-separator-color: rgba(0,0,0, 0.10);
	
	--button-color: #000000;
	--button-background-color: #dbdad9;
	--button-hover-shadow: 0 0 0 100vmax inset rgba(255,255,255, 0.18);
	
	--link-highlight-background-color: rgba(230, 152, 167, 0.18);
	--text-link-highlight-background-color: rgba(230, 152, 167, 0.22);
}

.dark {
	--text-color: #ffffff;
	--text-secondary-color: #a0aaaf;
	--background-color: #000000;
	--background-secondary-color: #0a0b0d;
	--background-tint-color: #202429;
	
	--accent-color: #fa243c;
	--accent-contrast-color: white;
	
	--border-color: #33353a;
	--image-border-color: #555555;
	--list-item-separator-color: rgba(255,255,255, 0.18);
	
	--link-highlight-background-color: rgba(230, 152, 167, 0.18);
	--text-link-highlight-background-color: rgba(230, 152, 167, 0.28);
}

@media (min-width: 50em) {
	
}
@media (min-width: 72em) {
	
}

html {
	font-family: var(--font-family);
	font-size: 13px;
	background-color: black;
}

body {
	margin: 0;
	padding: 0;
	font-optical-sizing: auto;
	color: var(--text-color);
	background-color: var(--background-secondary-color);
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	text-rendering: optimizeLegibility;
}





h1 {
	font-size: 35px;
	font-weight: 900;
	margin: 0 0 1em 0;
}

h2 {
	font-size: 18px;
	margin: 0 0 0.5em 0;
}
h3 {
	font-size: 14px;
	margin: 0 0 4px 0;
}

p {
	font-size: 13px;
	line-height: 1.4;
	margin: 0 0 1em 0;
}









.container {
	max-width: 1200px;
	margin-left: auto;
	margin-right: auto;
	padding: 50px 20px;
}

.container.with-splash {
	position: relative;
	z-index: 10;
	padding-top: 120px;
	color: white;
}



.columns {
	display: flex;
	flex-direction: column;
}

@media screen and (min-width: 601px) {
	.columns {
		flex-direction: row;
		margin-left: -20px;
		margin-right: -20px;
	}
	.column {
		padding-left: 20px;
		padding-right: 20px;
	}
	.column-33 {
		flex-grow: 0;
		flex-shrink: 1;
		width: 33%;
	}
	.column-30 {
		flex-grow: 0;
		flex-shrink: 1;
		width: 30%;
	}
	.column-25 {
		flex-grow: 0;
		flex-shrink: 1;
		width: 25%;
	}
	.column-fill {
		flex: 1;
	}
}










.site-navbar {
	position: absolute;
	z-index: 100;
	top: 0;
	left: 0;
	width: 100%;
}
.site-navbar .container {
	display: flex;
	align-items: center;
	height: 60px;
}
.site-navbar.home {
	padding-top: 20px;
}
.site-navbar.home .container {
	
}

.navbar-logo {
	width: auto;
	height: 25px;
	margin-right: 60px;
}

.navbar-menu {
	color: white;
}
.navbar-menu a {
	display: inline-block;
	color: inherit;
	text-decoration: none;
	font-weight: bold;
	padding: 0 10px;
}

.navbar-space {
	flex: 1;
}








.header-no-splash {
	 height: 100px;
	 background: black;
}


.splash {
	width: 100%;
	height: 100%;
	height: 100vh;
	height: 100dvh;
	background-color: #000;
	background-size: cover;
	background-position: center;
}
.splash.hotel { background-image: url('/img/backgrounds/bg-hotel.png'); }
.splash.race-car { background-image: url('/img/backgrounds/bg-race-car.png'); }
.splash.balloons { background-image: url('/img/backgrounds/bg-balloons.png'); }
.splash.hot-air-balloons { background-image: url('/img/backgrounds/bg-hot-air-balloons.png'); }
.splash.safari { background-image: url('/img/backgrounds/bg-safari.png'); }
.splash.lake { background-image: url('/img/backgrounds/bg-lake.png'); }

.splash-16-9 {
	height: auto;
	aspect-ratio: 16 / 9;
}

.splash-container {
	display: flex;
	align-items: end;
	height: 100%;
	padding-right: 25%;
	padding-bottom: 5%;
}

.splash-title {
	display: block;
	font-family: "Montserrat", serif;
	font-size: 26px;
	font-weight: 800;
	color: white;
}

@media screen and (max-width: 600px) {
	.splash-16-9 {
		aspect-ratio: 4 / 3;
	}
	.splash-16-9 .splash-title {
		font-size: 20px;
	}
}

.splash-title small {
	display: block;
	font-size: 18px;
	font-weight: normal;
}

@media screen and (min-width: 601px) {
	.splash-title {
		font-size: 40px;
	}
}

.splash-switcher {
	position: relative;
	height: 100%;
	height: 100vh;
	height: 100dvh;
	overflow: hidden;
	background: black;
}
.splash-switcher .splash {
	position: absolute;
	z-index: 1;
	top: 0;
	left: 0;
	opacity: 0;
	transition: opacity .4s
}
.splash-switcher .splash.active {
	z-index: 3;
	opacity: 1;
	transition: opacity .4s;
}

.splash.fixed {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	min-height: 100vh;
}











.link {
	cursor: pointer;
	color: inherit;
	text-decoration: none;
}
.link:hover {
	text-decoration: underline;
}


.grid {
	display: grid;
	gap: 10px;
	grid-template-columns: repeat(3, minmax(200px, 1fr));
}
.grid.grid-list {
	grid-template-columns: 100%;
}

@media screen and (max-width: 600px) {
	.grid {
		grid-template-columns: 1fr;
	}
}


.product-item {
	width: 100%;
	position: relative;
	aspect-ratio: 1 / 1;
	background-size: cover;
	background-position: center;
	margin: 0 0 8px 0;
}

.product-fade {
	position: absolute;
	left: 0px;
	right: 0px;
	bottom: 0px;
	padding: 50px 20px 18px 20px;
	background: linear-gradient(rgba(0,0,0, 0), rgba(0,0,0, 1));
}
.product-fade .link {
	color: white;
}

.product-tags {
	position: absolute;
	top: 10px;
	right: 10px;
	text-align: right;
}
.product-tags .tag {
	display: inline-block;
	font-size: 10px;
	font-weight: 600;
	padding: 7px 10px;
	color: white;
	background: #444;
	margin: 0 0 3px 0;
}
/*.product-tags .tag.featured { background: skyblue; }
.product-tags .tag.new { background: black; }
.product-tags .tag.leaving_soon { background: grey; }
.product-tags .tag.limited { background: pink; }
.product-tags .tag.popular { background: navy; }
.product-tags .tag.best_value { background: green; }
.product-tags .tag.top_earner { background: orange; }
.product-tags .tag.trending { background: purple; }
.product-tags .tag.exclusive { background: blue; }
.product-tags .tag.seasonal { background: yellow; }*/

.product-item-btn {
	border-radius: 100px;
	position: absolute;
	left: 15px;
	right: 15px;
	bottom: 10px;
}

.product-item-info {
	display: block;
	margin: 2px 0 0 0;
	font-size: 14px;
	line-height: 1.3;
	font-weight: bold;
	text-align: left;
}

.grid-list .item {
	margin-bottom: 30px;
}
.grid-list .product-item {
	aspect-ratio: 2.5 / 1;
}
.grid-list .product-item-btn {
	left: auto;
	padding-left: 50px;
	padding-right: 50px;
}
.product-item-infos {
	text-align: center;
}
.grid-list .product-item-infos {
	display: flex;
	justify-content: space-between;
}




.feature-img {
	position: relative;
	margin-bottom: 10px;
}
.feature-img .fade {
	position: absolute;
	left: 0px;
	right: 0px;
	bottom: 0px;
	padding: 50px 30px 30px 30px;
	background: linear-gradient(rgba(0,0,0, 0), rgba(0,0,0, 1));
	color: white;
	font-size: 22px;
	font-weight: 900;
}
.feature-img .link {
	color: white;
}







.center-align-narrow {
	max-width: 350px;
	margin-left: auto;
	margin-right: auto;
}


.pane {
	background-color: rgba(0,0,0, 0.5);
	margin-bottom: 30px;
	padding: 30px;
	text-align: center;
}
.pane.light {
	background-color: #E5E4E9;
}

.pane-header {
	font-size: 22px;
	margin: 0 0 1em 0;
}

.pane .space {
	height: 100px;
}

.voucher-preview {
	display: flex;
	justify-content: center;
	align-items: center;
	position: relative;
	aspect-ratio: 2 / 1;
	background: rgb(180, 0, 0);
	color: white;
	margin: 0 0 15px 0;
}
.voucher-preview-voucher-id-label {
	font-size: 12px;
	position: absolute;
	top: 8px;
	left: 8px;
}
.voucher-preview-voucher-id {
	font-size: 12px;
	position: absolute;
	bottom: 8px;
	right: 8px;
}
.voucher-preview-id {
	font-size: 30px;
	font-size: 2em;
	font-weight: bold;
}












ul {
	list-style: none;
	margin: 0 0 20px 0;
	padding: 0;
}
ul li {
	display: block;
}
ul li a {
	display: flex;
	justify-content: space-between;
	padding: 4px 0;
	color: inherit;
	text-decoration: none;
}











.margin-small {
	margin: 0 0 10px 0;
}
.left {
	text-align: left;
}



















.error {
	font-size: 18px;
	color: red; font-weight: bold;
	padding: 1em;
	border: 1px solid red;
}
.success {
	font-size: 18px;
	color: green; font-weight: bold;
	padding: 1em;
	border: 1px solid green;
}

.green {
	color: #52C335;
}




.btn {
	display: inline-block;
	background: grey;
	color: white;
	padding: 10px 10px;
	border: none;
	font-size: 14px;
	text-decoration: none;
	font-weight: bold;
	text-align: center;
}
.btn.success {
	background: #58B588;
}
.btn.blue {
	background: #4d65d0;
}
.btn-wide {
	width: 100%;
}
.btn-rounded {
	border-radius: 10em;
}

form {
	text-align: left;
}

form label {
	font-size: 14px;
	display: block;
	margin: 0 0 5px 0;
}

form .input {
	appearance: none;
	width: 100%;
	background: white;
	color: black;
	padding: 8px 10px;
	border: 1px solid #999;
	font-size: 16px;
}

form .input.auto {
	width: auto;
}

.form-group {
	margin: 0 0 1em 0;
}

form .space {
	height: 100px;
}

form .horizontal-form-group {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin: 0 0 10px 0;
}
form .horizontal-form-group label {
	flex: 0 0 30%;
	width: 30%;
	text-align: left;
	margin: 0;
}
form .horizontal-form-group .input {
	flex: 0 0 65%;
	width: 65%;
	background: #ddd;
}

.left {
	text-align: left;
}
.center {
	text-align: center;
}
.right {
	text-align: right;
}



.table-container {
	width: 100%;
	overflow: auto;
}

table {
	width: 100%;
	border-collapse: collapse;
}
table tr {
	border-bottom: 1px solid #ccc;
}
table th,
table td {
	border: none;
	padding: 5px 7px;
}










dl {
	margin-bottom: 20px;
	padding-bottom: 20px;
	border-bottom: 1px solid #ccc;
}
dl dt {
	font-size: 13px;
	font-weight: bold;
	color: #444;
}
dl dd {
	margin-top: 3px;
	margin-bottom: 10px;
	margin-left: 10px;
}





.nowrap {
	white-space: nowrap;
}









@media (max-width: 600px) {
	.hidden-on-sm { display: none !important; }
}
@media (min-width: 601px) {
	.visible-only-on-sm { display: none !important; }
}
@media (max-width: 992px) {
	.hidden-on-lg { display: none !important; }
}