* {
	padding: 0;
	margin: 0;
	font-family: 'Craftwork Grotesk';
	font-weight: 400;
	color: #181818;
	box-sizing: border-box;
}

html {
	scroll-behavior: smooth;
}

body,
textarea,
input {
	padding: 0;
	margin: 0;
	line-height: 1;
	font-weight: 400;
	font-family: 'Craftwork Grotesk';
}

a:hover {
	text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
	padding: 0;
	margin: 0;
	font-weight: 400;
}

p {
	font-size: 16px;
	line-height: 22px;
	margin: 0;
	padding: 0;
}

ul {
	list-style: none;
}

ul,
ol {
	padding: 0;
	margin: 0;
}

a {
	text-decoration: unset;
	display: inline-block;
}

/* Chrome, Safari, Edge, Opera */
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
	-webkit-appearance: none;
	margin: 0;
}

/* Firefox */
input[type=number] {
	-moz-appearance: textfield;
}

/* Fonts */
@font-face {
	font-family: 'Craftwork Grotesk';
	src: url('/fonts/CraftworkGrotesk-Regular.woff2') format('woff2'),
		url('/fonts/CraftworkGrotesk-Regular.woff') format('woff');
	font-weight: normal;
	font-style: normal;
	font-display: swap;
}

@font-face {
	font-family: 'Craftwork Grotesk';
	src: url('/fonts/CraftworkGrotesk-Medium.woff2') format('woff2'),
		url('.fonts/CraftworkGrotesk-Medium.woff') format('woff');
	font-weight: 500;
	font-style: normal;
	font-display: swap;
}

@font-face {
	font-family: 'Craftwork Grotesk';
	src: url('/fonts/CraftworkGrotesk-Heavy.woff2') format('woff2'),
		url('/fonts/CraftworkGrotesk-Heavy.woff') format('woff');
	font-weight: 900;
	font-style: normal;
	font-display: swap;
}

@font-face {
	font-family: 'Craftwork Grotesk';
	src: url('/fonts/CraftworkGrotesk.woff2') format('woff2'),
		url('/fonts/CraftworkGrotesk.woff') format('woff');
	font-weight: normal;
	font-style: normal;
	font-display: swap;
}

@font-face {
	font-family: 'Craftwork Grotesk';
	src: url('/fonts/CraftworkGrotesk-Bold.woff2') format('woff2'),
		url('/fonts/CraftworkGrotesk-Bold.woff') format('woff');
	font-weight: bold;
	font-style: normal;
	font-display: swap;
}

@font-face {
	font-family: 'Craftwork Grotesk Semi';
	src: url('/fonts/CraftworkGrotesk-SemiBold.woff2') format('woff2'),
		url('/fonts/CraftworkGrotesk-SemiBold.woff') format('woff');
	font-weight: 600;
	font-style: normal;
	font-display: swap;
}

/* Fonts */

h1 {
	font-size: 72px;
	line-height: 1.2;
	font-weight: 600;
	letter-spacing: 0.5px;
}

h2 {
	font-size: 36px;
	line-height: 1.3056;
	font-weight: 400;
	letter-spacing: 0.5px;
}

h3 {
	font-size: 28px;
	line-height: 1.3;
	font-weight: 400;
	letter-spacing: 0.5px;
}

h4 {
	font-size: 24px;
	line-height: 1.3;
	font-weight: 400;
}

.general-btn {
	font-size: 16px;
	line-height: 1.5;
	font-weight: 400;
	padding: 15px 31px;
	background: #008000;
	border: 1px solid #008000;
	transition: 0.4s all ease;
	border-radius: 30px;
	color: #fff;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	gap: 6px;
}

.general-btn img {
	width: 24px;
	height: 24px;
	object-fit: contain;
}

.general-btn:hover {
	background: transparent;
	color: #008000;
}

.general-btn.invert-btn  {
	background: transparent;
    color: #008000;
}

.general-btn.invert-btn:hover {
    background: #008000;
    border-color: #008000;
	color: #fff;
}

body.fixed {
	position: fixed;
	overflow: hidden;
	width: 100%;
	height: 100dvh;
}

.container {
	width: 100%;
	padding: 0 12px;
	margin: 0 auto;
}

/*-_-_Header_CSS_Start_-_-*/
header {
	background: #fff;
	position: relative;
}

header .navbar {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
	padding: 14px 0;
}

header .navbar .navbar-brand {
	padding: 0;
}

header .navbar .navbar-brand img {
	height: 32px;
}

header .navbar-toggler {
	width: 44px;
	height: 44px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: #F6F7FA;
	border-radius: 12px;
	outline: unset !important;
	border: 0;
}

header .navbar-toggler img {
	width: 24px;
	height: 24px;
	object-fit: contain;
}

header .navbar-toggler .menu-close-icon {
	display: none;
}

header .navbar-toggler.active .menu-bars-icon {
	display: none;
}

header .navbar-toggler.active .menu-close-icon {
	display: inline-block;
}

header .navbar-collapse {
	flex-basis: 100%;
	flex-grow: 1;
	align-items: center;
}

header .navbar-nav {
	display: flex;
	flex-wrap: wrap;
	margin: 0 auto;
}

header .navbar-nav>li>a {
	font-size: 14px;
	line-height: 20px;
	font-weight: 500;
	padding: 6px 16px !important;
	/* transition: 0.6s all ease; */
}

header .navbar-nav>li>a:hover {
	color: #008000 !important;
}

header .navbar-nav li .dropdown-toggle {
	display: inline-flex;
	align-items: center;
}

header .navbar-nav li .dropdown-toggle::after {
	content: "";
	background: url(/images/chevron-down-icon.svg) center center no-repeat;
	background-size: contain;
	width: 18px;
	height: 18px;
	border: 0;
	vertical-align: middle;
	margin-left: 6px;
}

header .navbar-nav li .dropdown-menu {
	margin-top: 0;
	border: 1px solid #F5F5F5;
	border-radius: 8px;
	padding: 4px 0;
	box-shadow: 0 12px 16px -4px rgba(0, 128, 0, 0.08);
}

header .navbar-nav li .dropdown-menu .dropdown-item {
	font-size: 16px;
	line-height: 1.5;
	color: #031103;
	padding: 7px 15px;
}

header .navbar-nav li .dropdown-menu .dropdown-item:hover {
	background: #FAFAFA;
}

header .nav-contact {}

header .nav-contact .footer-contact,
header .nav-contact .social-links {
	display: none;
}

header .nav-contact .feedback-btn {
	font-size: 14px;
	line-height: 1.5;
	font-weight: 500;
	color: #181818;
	border: 1px solid rgba(0, 128, 0, 0.4);
	transition: 0.4s all ease;
	border-radius: 18px;
	padding: 6.7px 22px;
}


header .nav-contact .feedback-btn:hover {
	color: #ffffff;
	background: rgba(0, 128, 0, 1);
	border-color: rgba(0, 128, 0, 1);
}

/*-_-_Header_CSS_End_-_-*/

/*-_-_Banner_CSS_Start_-_-*/
.banner {
	background: url(/images/banner-bg-1440_new.webp) center center no-repeat;
	background-size: cover;
	padding-top: 313px;
	margin-bottom: 51px;
	position: relative;
}

.banner::before {
	content: "";
	background: linear-gradient(to bottom, rgba(24, 24, 24, 0), rgba(24, 24, 24, 1));
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	position: absolute;
}

.banner .banner-content {
	position: relative;
}

.banner .banner-content .banner-inner {
	max-width: 788px;
	text-align: center;
	margin: 0 auto -15px;
}

.banner .banner-content .banner-inner h1 {
	color: #fff;
	margin-bottom: 6px;
}

.banner .banner-content .banner-inner p {
	font-size: 18px;
	line-height: 1.6;
	font-weight: 500;
	color: #fff;
	letter-spacing: -0.1px;
	max-width: 620px;
	margin: 0 auto;
}


.banner-form {
	position: relative;
	background: #fff;
	border-radius: 24px;
	padding: 20px 24px;
	border: 1px solid #DEE5EB;
	bottom: -51px;
}

.banner-form .form-row {
	display: flex;
	flex-wrap: wrap;
	margin: 0 -20px;
}

.banner-form .form-group {
	width: calc(33.33% - 61.5px);
	padding: 0 20px;
	min-width: 150px;
	display: flex;
	flex-direction: column;
	justify-content: flex-end;
	box-sizing: border-box;
	border-right: 1px solid #DEE5EB;
}

.banner-form .form-group#guests-field {
	border: 0;
}

.banner-form .form-group.form-group-btn {
	border: 0;
	width: 184px;
}

.label-wrap {
	position: relative;
}

.label-wrap label {
	font-size: 14px;
	line-height: 19px;
	color: #636D71;
	display: block;
	z-index: 1;
}

.banner-form input[type="text"],
.banner-form .flatpickr-alt-input,
.banner-form select,
#guests-field .select-styled {
	font-size: 18px;
	line-height: 24px;
	font-weight: 500;
	display: block;
	width: 100%;
	height: 48px;
	padding: 12px 56px 12px 0;
	border: 0;
	border-radius: 0;
	box-sizing: border-box;
	-webkit-appearance: none; /* voorkomt iOS '>' styling */
	cursor: pointer;
}

.banner-form input:focus,
.banner-form select:focus,
.banner-form .flatpickr-alt-input:focus,
#guests-field .select-styled {
  outline: none;
  box-shadow: unset;
}

.label-wrap select {
 	background: url('/images/angle-down-icon.svg');
	background-repeat: no-repeat;
	background-position: right 0 center;
	background-size: 48px;
}

.label-wrap input {
	font-size: 16px;
	line-height: 22px;
	padding: 18px 18px;
	color: #031103;
	border: 1px solid #D2D2D2;
	border-radius: 4px;
	width: 100%;
	height: 60px;
	outline: unset !important;
}

#dates-overlay,
#dates-sheet {
	display: none;
}

.calender-wrap {
	position: relative;
}

.calender-wrap input {
	padding-right: 58px;
}

.calender-wrap:after {
	content: "";
	background: url('/images/calender-icon.svg') center center no-repeat;
	background-size: contain;
	right: 0;
	top: 0;
	width: 48px;
	height: 48px;
  	position: absolute;
	pointer-events: none;
}

/* Custom CSS */
.select-hidden {
	display: none;
	visibility: hidden;
	padding-right: 10px;
}

.select {
	cursor: pointer;
	display: inline-block;
	position: relative;
	color: #031103;
	width: 100%;
  	height: 48px;
	min-height: 48px;
	min-width: 150px;
}

.select-styled {
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	font-size: 16px;
	line-height: 1.5;
	padding: 12px 0;
	font-weight: 400;
	font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
	-moz-transition: all 0.2s ease-in;
	-o-transition: all 0.2s ease-in;
	-webkit-transition: all 0.2s ease-in;
	transition: all 0.2s ease-in;
	min-height: 48px;
	/* 👈 voorkomt instorting tijdens laden */
}

.select-styled:after {
	content: "";
	background: url(/images/user-icon.svg);
	background-position: center center;
	background-repeat: no-repeat;
	background-size: contain;
	width: 48px;
	height: 48px;
	position: absolute;
	top: 0;
	right: 0;
}

.select-options {
	display: none;
	position: absolute;
	top: 100%;
	right: 0;
	left: 0;
	z-index: 999;
	margin: 0;
	padding: 0;
	list-style: none;
	background: #fff;
	border: 1px solid #F5F5F5;
	border-radius: 8px;
	padding: 4px 0;
	box-shadow: 0 12px 16px -4px rgba(0, 128, 0, 0.08);
	min-width: 150px;
	/* 👈 voorkomt jump bij late style load */
}

.select-options li {
	font-size: 16px;
	line-height: 1.5;
	color: #181D27;
	font-weight: 500;
	margin: 0;
	padding: 10px 14px;
	font-family: "Inter", sans-serif;
	-moz-transition: all 0.15s ease-in;
	-o-transition: all 0.15s ease-in;
	-webkit-transition: all 0.15s ease-in;
	transition: all 0.15s ease-in;
	position: relative;
}

.select-options li:hover {
	background: #FAFAFA;
}

.select-options li.is-selected {
	background: #FAFAFA;
	padding-right: 40px;
}

.select-options li.is-selected::after {
	content: "";
	background: url(/images/check-icon-green.svg) center center no-repeat;
	background-size: contain;
	right: 14px;
	top: 50%;
	width: 20px;
	height: 20px;
	position: absolute;
	transform: translateY(-50%);
	pointer-events: none;
}

.select-options li[rel="hide"] {
	display: none;
}


/* =========================================================
   Guests dropdown (Met wie? adults / children / pets)
   ========================================================= */

/* ===== Basic input/label styling (optional, keep it compact) ===== */
/* ===== Overlay + dropdown ===== */
.select-wrap {
	line-height: 0;
	position: relative;
}

#guests-overlay {
	position: fixed;
	inset: 0;
	background: rgba(0, 0, 0, .45);
	opacity: 0;
	visibility: hidden;
	transition: opacity .18s ease;
	z-index: 50;
}

#guests-dropdown {
	position: absolute;
	z-index: 55;
	display: none;
	margin: 0;
	padding: 0;
	list-style: none;
	background: #fff;
	border-top: 0;
	border-radius: 16px;
	box-shadow: 0 10px 28px rgba(0, 0, 0, .10);
	overflow: hidden;
	left: 0 !important;
	width: 345px !important;
}

#guests-dropdown .sheet-header {
	background: #F6F7FA;
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 12px 8px 12px 20px;
	border-radius: 16px;
}

#guests-dropdown .sheet-close {
	width: 44px;
	height: 44px;
	background: transparent;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 24px;
	line-height: 1;
	border: 0;
}

#guests-dropdown .sheet-body {
	display: flex;
	flex-direction: column;
	padding: 32px 20px;
	gap: 24px;
}

#guests-dropdown .row {
	display: grid;
	grid-template-columns: 1fr auto;
	align-items: center;
}

#guests-dropdown .meta p {
	font-size: 18px;
	line-height: 1.5;
	color: #000000;
	letter-spacing: -0.5px;
	display: block;
}

#guests-dropdown .meta span {
	font-size: 12px;
	line-height: 1.5;
	letter-spacing: -0.25px;
	color: #636D71;
	display: block;
}

#guests-dropdown .counter {
	display: inline-flex;
	align-items: center;
	gap: 4px;
}

/* ===== Buttons with icons ===== */
#guests-dropdown .counter button {
	appearance: none;
	-webkit-appearance: none;
	width: 44px;
	height: 44px;
	border: 1px solid #DEE5EB;
	border-radius: 12px;
	background: #F1F2F4;
	cursor: pointer;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	transition: background .2s, border-color .2s;
	color: #031103;
}

#guests-dropdown .counter button:hover {
	background: #F6F6F6;
	border-color: #BFBFBF;
}

/* Ensure the icon is ALWAYS visible, regardless of global resets */
#guests-dropdown .counter button svg {
	display: block;
	width: 24px;
	height: 24px;
	pointer-events: none;
}

/* Numeric input in the middle */
#guests-dropdown .counter input {
	width: 55px;
	height: 44px;
	text-align: center;
	border: 1px solid #F6F7FA;
	border-radius: 12px;
	font-size: 15px;
	color: #181818;
	background: #F6F7FA;
	padding: 0 10px;
}

/* Footer actions */
#guests-dropdown .actions {
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 24px;
	padding: 0 16px 24px;
}

#guests-dropdown .btn-clear {
	width: calc(50% - 12px);
	color: #008000;
	background: none;
	border: 0;
	cursor: pointer;
	padding-left: 16px;
	padding-right: 16px;
}

#guests-dropdown .btn-clear:hover {
	color: #ffffff;
	background: #008000;
}

#guests-dropdown .btn-apply {
	width: calc(50% - 12px);
	cursor: pointer;
	padding-left: 16px;
	padding-right: 16px;
}

#guests-dropdown .counter button svg {
	position: relative;
	z-index: 1;
}
/* Custom CSS */

/* Datepicker */
.flatpickr-calendar {
  border: 1px solid #E6E7E8 !important;
  box-shadow: 0 8px 24px rgba(0,0,0,0.12) !important;
  border-radius: 16px !important;
  max-width: 343px;
  width: 100% !important;
  padding: 20px !important;
  overflow: hidden;
}

.flatpickr-calendar .flatpickr-months {
	position: relative;
}

.flatpickr-calendar .flatpickr-months .flatpickr-month {
	display: flex;
	align-items: center;
	justify-content: center;
	position: relative;
	padding: 6px 40px;
	height: auto !important;
}

.flatpickr-months .flatpickr-current-month {
	position: static;
	width: auto;
	padding: 0;
	height: auto !important;
}

.flatpickr-months .flatpickr-current-month span.cur-month {
	font-size: 17px;
	line-height: 26px;
	text-transform: capitalize;
	font-weight: 400;
	margin: 0;
}

.flatpickr-calendar .flatpickr-months .flatpickr-prev-month,
.flatpickr-calendar .flatpickr-months .flatpickr-next-month {
	background: #F6F7FA;
	width: 32px !important;
	height: 32px !important;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 50%;
}

.flatpickr-calendar .flatpickr-current-month input.cur-year {
	font-weight: 400;
}

.flatpickr-calendar .flatpickr-rContainer .flatpickr-weekdays {
	height: auto;
	padding: 6px 0;
	width: 100%;
}

.flatpickr-calendar .flatpickr-weekdaycontainer { 
	display: grid !important;
	grid-template-columns: repeat(7,1fr);
	width: 100%;
	padding: 8px 0;
}

.flatpickr-calendar .flatpickr-weekdaycontainer .flatpickr-weekday {
	font-size: 10px;
	line-height: 16px;
	font-weight: 500;
	text-transform: uppercase;
	display: inline-block;
	color: #636D71;
	text-align: center;
	width: 100%;
}

.flatpickr-calendar .flatpickr-weekdaycontainer .flatpickr-weekday:nth-child(7n - 1),
.flatpickr-calendar .flatpickr-weekdaycontainer .flatpickr-weekday:nth-child(7n) {
	color: rgba(231, 29, 50, 0.4)
}

.flatpickr-calendar .flatpickr-days {
  	box-sizing: border-box;
	width: 100%;
}

.flatpickr-calendar .flatpickr-days .dayContainer {
	gap: 0;
	display: grid;
    grid-template-columns: repeat(7, 1fr);
	width: 100%;
	min-width: unset;
	max-width: unset;
	row-gap: 4px;
}

.flatpickr-calendar .flatpickr-rContainer {
	width: 100%;
}

.flatpickr-calendar .flatpickr-day {
  width: 100%;
  margin: 0;
  height: 39px;
  line-height: 39px;
  font-size: 15px;
  line-height: 1.5;
  color: #181818;
  display: flex;
  align-items: center;
  justify-content: center;
}

.flatpickr-day:hover {
    background: #F0FFF0;
    border-color: #CFE8CF;
}

.flatpickr-day.flatpickr-disabled {
    background: transparent;
    border-color: transparent;
}

.flatpickr-day:nth-child(7n - 1),
.flatpickr-day:nth-child(7n) {
	color: #E71D32;
}

.flatpickr-day.today {
    border-color: #008000;
    color: #008000;
}

.flatpickr-day.selected, 
.flatpickr-day.startRange, 
.flatpickr-day.endRange, 
.flatpickr-day.selected:hover {
    background: #008000;
    border-color: #008000;
    color: #fff;
}

.flatpickr-day.flatpickr-disabled, 
.flatpickr-day.flatpickr-disabled:hover {
    cursor: not-allowed;
    color: #C5CBD3;
}

.flatpickr-day.flatpickr-disabled, 
.flatpickr-day.flatpickr-disabled:hover, 
.flatpickr-day.prevMonthDay, 
.flatpickr-day.nextMonthDay, 
.flatpickr-day.notAllowed, 
.flatpickr-day.notAllowed.prevMonthDay, 
.flatpickr-day.notAllowed.nextMonthDay {
    color: rgba(57, 57, 57, 0.3);
    background: transparent;
    border-color: transparent;
    cursor: default;
}

/* Datepicker */
/*-_-_Banner_CSS_End_-_-*/

/*-_-_Content_CSS_Start_-_-*/
.dream-trip-wrap {
	padding: 80px 0;
}

.personal-search-list .personal-search-content {
	display: flex;
	flex-wrap: wrap;
	align-items: flex-start;
	justify-content: space-between;
	border-bottom: 1px solid #DEE5EB;
	padding-bottom: 40px;
	margin-bottom: 40px;
}

.personal-search-list .personal-search-content:last-child {
	border-bottom: 0;
	padding-bottom: 0;
	margin-bottom: 0;
}

.personal-search-content h2 {
	width: 413px;
}

.personal-search-content .personal-search-inner {
	width: calc(100% - 433px);
}

.personal-search-content .personal-search-inner p {
	font-size: 16px;
	line-height: 1.5;
	margin-bottom: 16px;
}

.personal-search-content .personal-search-inner p:last-child {
	margin-bottom: 0;
}

.dream-trip-wrap .dream-trip-content {
	padding-top: 80px;
	position: relative;
}

.dream-trip-content img {
	width: 100%;
	aspect-ratio: 1280/530;
	border-radius: 32px;
	object-fit: cover;
}

.dream-trip-content .dream-trip-card {
	background: #ffffff;
	position: absolute;
	bottom: 24px;
	left: 24px;
	width: 498px;
	max-width: calc(100% - 48px);
	border-radius: 24px;
	padding: 32px 24px;
}

.dream-trip-content .dream-trip-card h2 {
	margin-bottom: 16px;
}

.dream-trip-content .dream-trip-card p {
	font-size: 16px;
	line-height: 1.5;
	margin-bottom: 32px;
}

.popular-wrap {
	background: #F6F7FA;
	overflow: hidden;
}

.popular-wrap .popular-row {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
	padding: 80px 0;
}

.popular-wrap .popular-content {
	width: 413px;
}

.popular-wrap .popular-content h2 {
	margin-bottom: 16px;
}

.popular-wrap .popular-content p {
	font-size: 18px;
	line-height: 1.5;
	max-width: 320px;
	color: #636D71;
	margin-bottom: 32px;
}

.popular-wrap .popular-slider-wrap {
	width: calc(100% - 433px);
}

.local-newspapers-wrap {
	padding: 80px 0;
}

.local-newspapers-breadcrumb {
	display: flex;
	flex-wrap: wrap;
	align-items: flex-start;
	justify-content: center;
}

.local-newspapers-wrap .local-newspapers-breadcrumb {
	margin-bottom: 12px;
}

.local-newspapers-breadcrumb li,
.local-newspapers-breadcrumb li a {
	font-size: 14px;
	line-height: 21px;
	font-weight: 500;
	color: #636D71;
}

.local-newspapers-breadcrumb li {
	margin-right: 6px;
}

.local-newspapers-breadcrumb li+li::before {
	content: "/";
	margin-right: 6px;
}

.local-newspapers-breadcrumb li:last-child {
	margin-right: 0;
}

.local-newspapers-breadcrumb li:last-child::after {
	display: none;
}

.local-newspapers-wrap>div>h2 {
	margin: 0 auto;
	max-width: 930px;
	text-align: center;
	margin-bottom: 48px;
}

.news-feature-content {
	position: relative;
	overflow: hidden;
	border-radius: 32px;
}

.news-feature-content>img {
	width: 100%;
	height: 550px;
	object-fit: cover;
}

.news-feature-content::after {
	content: "";
	background: linear-gradient(to bottom, rgba(24, 24, 24, 0), rgba(24, 24, 24, 1));
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	position: absolute;
}

.news-feature-list {
	display: flex;
	align-items: flex-end;
	gap: 20px;
	position: absolute;
	padding: 50px;
	left: 0;
	bottom: 0;
	z-index: 1;
}

.news-feature-card {
	padding: 20px;
	border-radius: 24px;
	background: #ffffff;
	display: flex;
	align-items: center;
	flex: 1;
}

.news-feature-card .nf-card-img {
	width: 56px;
	height: 56px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: #F6F7FA;
	border-radius: 12px;
}

.news-feature-card .nf-card-img img {
	width: 24px;
	height: 24px;
	object-fit: contain;
}

.news-feature-card .nf-card-inner {
	width: calc(100% - 56px);
	padding-left: 12px;
}

.news-feature-card .nf-card-inner p {
	font-size: 16px;
	line-height: 1.5;
	letter-spacing: -0.1px;
}

.local-newspapers-content {
	padding-top: 48px;
}

.local-newspapers-content h2 {
	text-align: center;
	margin-bottom: 36px;
}

.local-newspapers-content .local-newspapers-list {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: center;
	gap: 20px;
}

.local-newspapers-list li {
	background: #F6F7FA;
	padding: 10px 8.5px;
	border-radius: 24px;
	width: 197px;
	display: flex;
	align-items: center;
	justify-content: center;
}

.local-newspapers-list li img {
	width: 100%;
	aspect-ratio: 180/100;
	object-fit: contain;
}

.holiday-parks-wrap {
	padding: 80px 0;
}

.holiday-parks-wrap .customer-reviews-content {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
	margin-bottom: 32px;
	gap: 20px;
}

.holiday-parks-wrap .customer-reviews-content h2 {
	max-width: 413px;
}

.parks-tab-buttons {
	display: flex;
	align-items: center;
	background: #F6F7FA;
	border: 1px solid #DEE5EB;
	border-radius: 40px;
	padding: 7px;
	gap: 11px;
}

.parks-tab-buttons .tab-btn {
	letter-spacing: -0.05px;
	padding: 16px 20px 16px 16px;
	border-radius: 30px;
	background: transparent;
	cursor: pointer;
	font-size: 16px;
	line-height: 1.5;
	font-weight: 500;
	display: flex;
	align-items: center;
	justify-content: center;
	outline: unset !important;
	gap: 8px;
	border: 0;
}

.parks-tab-buttons .tab-btn svg {
	width: 24px;
	height: 24px;
	object-fit: contain;
}

.parks-tab-buttons .tab-btn.active {
	font-weight: 600;
	background: #008000;
	color: #ffffff;
}

.parks-tab-buttons .tab-btn.active svg path {
	stroke: #ffffff;
}

.tab-panel {
	display: none;
}

.tab-panel.active {
	display: block;
}

.parks-tab-content .tab-panel {
	padding: 24px;
	position: relative;
}

.parks-tab-content .tab-panel>img {
	position: absolute;
	border-radius: 32px;
	width: 100%;
	height: 100%;
	object-fit: cover;
	left: 0;
	top: 0;
}

.parks-tab-inner {
	background: #fff;
	border-radius: 24px;
	padding: 32px 48px 32px 24px;
	max-width: 498px;
	width: 100%;
	position: relative;
	z-index: 1;
}

.parks-tab-inner h3 {
	margin-bottom: 20px;
}

.parks-tab-inner p {
	margin-bottom: 16px;
}

.parks-tab-inner p:nth-last-child(2) {
	margin-bottom: 32px;
}

.customer-reviews-wrap {
	background: #F6F7FA;
	padding: 80px 0;
}

.customer-reviews-wrap .customer-reviews-content {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-bottom: 26px;
}

.customer-reviews-wrap .customer-reviews-content h2 {
	margin-bottom: 6px;
}

.total-reviews {
	display: inline-flex;
	align-items: center;
	font-size: 16px;
	line-height: 1.5;
	color: #636D71;
	gap: 8px;
}

.total-reviews span {
	font-size: 14px;
	line-height: 1.5;
	display: flex;
	align-items: center;
	padding: 6.5px 8px 6.5px 6px;
	background: #FEB62B;
	color: #fff;
	border-radius: 8px;
	gap: 4px;
}

.total-reviews span img {
	width: 20px;
	height: 20px;
	object-fit: contain;
}

.popular-themes-wrap {
	background: #fff;
}

.popular-themes-wrap .popular-themes-content {
	padding: 48px 0 80px;
}

.popular-themes-wrap .popular-themes-content h2 {
	text-align: center;
	margin-bottom: 36px;
}

.popular-themes-row {
	display: flex;
	flex-wrap: wrap;
	margin: 0 -10px;
}

.popular-themes-row .popular-themes-col {
	width: 25%;
	padding: 10px 10px;
}

.popular-themes-card {
	position: relative;
}

.popular-themes-card img {
	width: 100%;
	aspect-ratio: 305/280;
	object-fit: cover;
	border-radius: 24px;
}

.popular-themes-card .popular-themes-inner {
	background: #fff;
	width: calc(100% - 24px);
	bottom: 12px;
	left: 12px;
	position: absolute;
	z-index: 1;
	padding: 16px 16px 16px 20px;
	border-radius: 16px;
}

.popular-themes-card p {
	font-size: 18px;
	line-height: 1.25;
	font-weight: 500;
	letter-spacing: -0.1px;
}

.popular-themes-card p a {
	font-size: 18px;
	line-height: 1.25;
	font-weight: 500;
	letter-spacing: -0.1px;
}



.popular-themes-wrap .popular-themes-card p {
	min-height: 45px;
}

.popular-themes-card span {
	font-size: 14px;
	line-height: 1.5;
	font-weight: 400;
	color: #636D71;
	margin-top: 4px;
}

.faqs-wrap {
	background: #F6F7FA;
}

.faqs-wrap .faqs-row {
	display: flex;
	flex-wrap: wrap;
	align-items: flex-start;
	justify-content: space-between;
	padding: 80px 0;
}

.faqs-wrap .faqs-content {
	width: 413px;
}

.faqs-wrap .faqs-content h2 {
	margin-bottom: 16px;
}

.faqs-wrap .faqs-content p {
	font-size: 18px;
	line-height: 1.5;
	max-width: 320px;
	color: #636D71;
	margin-bottom: 32px;
}

.faqs-wrap .faqs-accordion-wrap {
	width: calc(100% - 433px);
}

.faqs-accordion {
	border: 0;
}

.faqs-accordion .accordion-item {
	border-radius: 24px;
	border: 0;
	background: #fff;
	margin-bottom: 12px;
	padding: 12px 12px 12px 24px;
}

.faqs-accordion .accordion-item {
	padding-bottom: 12px;
}

.faqs-accordion .accordion-button {
	font-size: 24px;
	line-height: 1.3;
	font-weight: 400;
	padding: 0;
	display: flex;
	align-items: center;
	text-align: left;
	position: relative;
	cursor: pointer;
	width: 100%;
	background: transparent;
	box-shadow: unset;
	transition: 0.5s all ease;
	border: 0;
	border-radius: 0 !important;
	gap: 10px;
}

.faqs-accordion .accordion-button::after {
	content: "";
	background-image: url(/images/angle-right.svg);
	background-position: center center;
	background-repeat: no-repeat;
	background-size: 20px;
	background-color: #F6F7FA;
	width: 56px;
	min-width: 56px;
	height: 56px;
	min-height: 56px;
	border-radius: 12px;
	border: 1px solid #DEE5EB;
	transition: 0.3s all ease;
	transform: rotate(90deg);
	margin-left: auto;
}

.faqs-accordion .accordion-button.active::after {
	border-color: #FF7FFF;
	background-color: #FF7FFF;
	transform: rotate(-90deg);
	filter: invert(100%);
}

.faqs-accordion .accordion-collapse {
	max-height: 0;
	overflow: hidden;
	transition: max-height 0.3s ease-out;
}

.faqs-accordion .accordion-collapse.show {
	max-height: 1000px;
}

.faqs-accordion .accordion-body {
	padding: 12px 0 0;
}

.faqs-accordion .accordion-body p {
	font-size: 16px;
	line-height: 1.6;
	margin-bottom: 20px;
}

.faqs-accordion .accordion-body p:last-child {
	margin-bottom: 0;
}

/*-_-_Content_CSS_End_-_-*/

/*-_-_Footer_CSS_Start_-_-*/
footer {
	background: #ffffff;
}

footer .footer-content {
	padding: 48px 0 32px;
}

.footer-content .footer-main-row {
	row-gap: 36px;
	display: flex;
	flex-wrap: wrap;
	align-items: flex-start;
	justify-content: space-between;
}

.footer-desp-wrap {
	width: 100%;
	max-width: 305px;
	padding-right: 24px;
}

.footer-logo {
	margin-bottom: 24px;
}

.footer-logo img {
	width: 230px;
	aspect-ratio: 230/52;
	object-fit: contain;
}

.footer-contact {
	margin-bottom: 24px;
}

.footer-contact li {
	margin-bottom: 12px;
}

.footer-contact li:last-child {
	margin-bottom: 0;
}

.footer-contact li a {
	font-size: 20px;
	line-height: 1.2;
	transition: 0.4s all ease;
}

.footer-contact li a:hover {
	color: #008000;
}

.social-links {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 8px;
}

.social-links li a {
	width: 56px;
	height: 56px;
	display: flex;
	align-items: center;
	justify-content: center;
	border: 1px solid #C5CBD3;
	transition: 0.4s all ease;
	border-radius: 12px;
}

.social-links li a i {
	font-size: 20px;
	line-height: 1;
	transition: 0.4s all ease;
}

.social-links li a:hover {
	background: #008000;
	border-color: #008000;
}

.social-links li a:hover i {
	color: #ffffff;
}

.footer-links-wrap {
	padding-top: 5px;
	max-width: 847px;
	width: 100%;
}

.footer-row {
	display: flex;
	flex-wrap: wrap;
	margin: 0 -9.5px;
}

.footer-row .footer-col {
	width: 25%;
	padding: 0 9.5px;
}

.footer-links h5 {
	font-size: 18px;
	line-height: 1.445;
	font-weight: 500;
	margin-bottom: 16px;
}

.footer-links ul li {
	font-size: 16px;
	line-height: 1.5;
	color: #636D71;
	margin-bottom: 12px;
}

.footer-links ul li:last-child {
	margin-bottom: 0;
}

.footer-links ul li a {
	font-size: 16px;
	line-height: 1.5;
	transition: 0.6s all ease;
	color: #636D71;
}

.footer-links ul li a:hover {
	color: rgba(0, 128, 0, 0.75);
}

.footer-links p {
	font-size: 16px;
	line-height: 1.5;
	color: #fff;
	transition: 0.6s all ease;
}

.footer-contact li a {
	font-size: 20px;
	line-height: 22px;
}

.copyright-wrap {
	padding: 16px 0;
	border-top: 1px solid #F6F7FA;
}

.copyright-wrap p {
	font-size: 14px;
	line-height: 1.5;
	color: #636D71;
	text-align: center;
}

.copyright-wrap p a {
	color: #636D71;
	transition: 0.6s all ease;
}

.copyright-wrap p a:hover {
	color: #008000;
}

/*-_-_Footer_CSS_End_-_-*/




/*-_-_Listing-Page_CSS_Start_-_-*/
header.header-sticky {
	position: sticky;
	top: 0;
	z-index: 5;
}

.bg-gray {
	background: #F6F7FA;
}

.bg-white {
	background: #ffffff !important;
}

.listing-banner.banner {
	background: url(/images/search-banner-bg.webp) center center no-repeat;
	background-size: cover;
	padding: 0;
	margin: 0;
}

.listing-banner.banner::before {
	display: none;
}

.listing-banner.banner .banner-content {
	padding: 144px 0 79px;
	background: transparent;
	min-height: unset;
}

.listing-banner.banner .banner-content h1 {
	font-size: 56px;
	line-height: 1.2;
	margin: 0;
}

.listing-banner.banner .banner-content .banner-inner {
	margin-bottom: 0;
}

.listing-banner.banner .local-newspapers-breadcrumb { 
	margin-bottom: 2px;
}

.listing-banner.banner .local-newspapers-breadcrumb li,
.listing-banner.banner .local-newspapers-breadcrumb li a {
	color: #fff;
}

.main-form-wrap {
	margin-top: -55px;
}

.main-form-wrap.sticky-form {
	position: sticky;
	top: 64px;
	z-index: 5;
	background: #ffffff;
	box-shadow: 0 4px 4px rgba(0, 0, 0, .10);
	margin: 0;
}

.main-form-wrap.sticky-form .holiday-form-wrap .banner-form {
	border-radius: 0;
    padding: 12px 0;
	margin: 0;
    border: 0;
}

.park-listing-wrap {
	padding: 42px 0 80px;
}

.park-listing-content {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-bottom: 40px;
	gap: 16px;
}

.park-listing-content .park-listing-inner h3 {
	margin-bottom: 6px;
}

.park-listing-content .park-listing-inner p {
	font-size: 16px;
	line-height: 1.5;
	color: #636D71;
}

.park-listing-content .park-listing-inner .active-filters-container {
	display: none !important;
}

.park-filters-wrap {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 24px;
}

.price-select-wrap {
	font-size: 14px;
    line-height: 21px;
	color: #181818;
    font-weight: 500;
    display: block;
    height: 48px;
    padding: 12px 48px 12px 12px;
	min-width: 160px;
    border: 0;
    border-radius: 12px;
    -webkit-appearance: none;
	outline: unset !important;
	background-color: #ffffff;
	background-image: url(/images/chevron-down.svg);
	background-position: right 12px center;
	background-repeat: no-repeat;
	background-size: 24px;
    cursor: pointer;
}

.park-grid-btn-wrap {
	display: flex;
	background: #ffffff;
	border-radius: 12px;
	padding: 4px;
	gap: 4px;
}

.park-view-btn {
	width: 40px;
	height: 40px;
	border-radius: 12px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: transparent;
	cursor: pointer;
	border: 0;
}

.park-view-btn svg {
	width: 24px;
	height: 24px;
	object-fit: contain;
}

.park-view-btn.active {
	background: #008000;
}

.park-view-btn.active svg path {
	stroke: #ffffff;
}

.park-sidebar-row {
	display: flex;
	flex-wrap: wrap;
}

.park-sidebar-row .park-sidebar-col {
	width: 305px;
}

.park-sidebar-title {
	display: none;
	align-items: center;
	justify-content: space-between;
	padding: 12px 8px 12px 20px;
	background: #F6F7FA;
	border-radius: 16px;
	margin-bottom: 20px;
}

.park-sidebar-title h3 {
	font-size: 22px;
	line-height: 1.3;
}

.mobile-sidebar-btn {
	background: transparent;
	border: 0;
	outline: unset !important;
	width: 44px;
	height: 44px;
	margin-left: auto;
	display: flex;
	align-items: center;
	justify-content: center;
}

.mobile-sidebar-btn img {
	width: 16px;
	height: 16px;
	object-fit: contain;
}

.park-sidebar {
	padding: 20px 20px;
	background: #ffffff;
	border-radius: 24px;
}

.park-sidebar .park-sidebar-inner {
	padding-bottom: 20px;
	border-bottom: 1px solid #DEE5EB;
	margin-bottom: 20px;
}

.park-sidebar .park-sidebar-inner:last-child {
	padding-bottom: 0;
	margin-bottom: 0;
	border: 0;
}

.park-sidebar .mobile-filter-actions {
	display: none;
}

.park-sidebar-inner h5 {
	font-size: 16px;
	line-height: 1.5;
	font-weight: 500;
	color: #000000;
	display: flex;
	align-items: center;
	justify-content: flex-start;
	cursor: pointer;
	padding: 4px 0;
	gap: 4px;
}

.park-sidebar-inner h5 img {
	width: 24px;
	height: 24px;
	object-fit: contain;
	transition: transform 0.3s ease;
}

.park-sidebar-inner.open h5 img {
	transform: rotate(180deg);
}

.checkbox-list {
	overflow: hidden;
	max-height: 0;
	transition: all 0.3s ease;
}

.park-sidebar-inner.open .checkbox-list {
	padding-top: 16px;
  	max-height: 1000px;
}

.checkbox-list li {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-bottom: 12px;
	padding: 0 8px;
	gap: 12px;
}

.checkbox-list li:last-child {
	margin-bottom: 0;
}

.checkbox-list li>span {
	font-size: 15px;
	line-height: 24px;
	color: #636D71;
}

.checkbox-list .form-check {
	margin: 0;
	min-height: unset;
	padding: 0;
	position: relative;
}

.checkbox-list .form-check .form-check-input {
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	opacity: 0;
	z-index: 1;
	margin: 0;
	border: 0;
	padding: 0;
	cursor: pointer;
}

.checkbox-list .form-check .form-check-label::before {
	content: "";
	width: 16px;
	height: 16px;
	border-radius: 4px;
	border: 1px solid #C5CBD3;
	left: 0;
	top: 3px;
	box-shadow: unset !important;
	cursor: pointer;
	position: absolute;
	box-sizing: border-box;
}

.checkbox-list .form-check .form-check-input:checked~.form-check-label::before {
	background: #008000;
	border-color: #008000;
	background-image: url(/images/check-icon.svg);
	background-position: center;
	background-size: contain;
	background-repeat: no-repeat;
}

.checkbox-list .form-check .form-check-label {
	font-size: 15px;
	line-height: 24px;
	color: #181818;
	cursor: pointer;
	display: inline-block;
	padding-left: 24px;
}

.park-sidebar-row .park-listing-col {
	width: calc(100% - 305px);
	padding-left: 32px;
}

.park-list-wrap {
	display: flex;
	flex-wrap: wrap;
	gap: 16px;
}

/* Loader voor de resultaten */
#results-loading {
	display: flex;                /* toon standaard bij paginalaad */
	align-items: center;
	gap: 10px;
	min-height: 120px;            /* houdt ruimte vrij zodat layout niet springt */
	justify-content: center;
	font-weight: 600;
}

/* Als je hem wilt verbergen: */
#results-loading[hidden] {
	display: none;
}

.park-card {
	width: calc(33.33% - 10.667px);
	border-radius: 24px;
	background: #fff;
	padding: 6px;
	display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.offer-img-slider-wrap {
	position: relative;
}

.park-card .badge {
    display: inline-flex;
    align-items: center;
	color: #008000;
    background: #F0F8F0;
    border-radius: 8px;
    padding: 4px 12px;
    font-size: 12px;
	line-height: 19px;
    font-weight: 700;
	left: 8px;
	top: 8px;
	position: absolute;
	z-index: 2;
}

.park-img-inner {
	padding: 16px 8px 0;
}

.park-img-inner .location-item {
	display: flex;
	align-items: flex-start;
	margin-bottom: 4px;
	gap: 6px;
}

.park-img-inner .location-item img {
	width: 16px;
	height: 16px;
	object-fit: contain;
}

.park-img-inner .location-item span {
	font-size: 12px;
	line-height: 16px;
	letter-spacing: 0.5px;
	font-weight: 500;
	display: block;
}

.park-img-inner h4 a {
	color: #000000;
}

.feature-list {
	display: flex;
	flex-wrap: wrap;
	align-items: flex-start;
	list-style-type: none;
	margin-top: 12px;
	gap: 8px;
}

.feature-list li {
	display: flex;
}

.feature-list li .list-icon {
	width: 24px;
	min-width: 24px;
	height: 24px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: rgba(0, 128, 0, 0.1);
	border-radius: 4px;
	position: relative;
}

.feature-list li .list-icon img {
	width: 16px;
	height: 16px;
	object-fit: contain;
}

.feature-list li .list-icon .icon-tooltip {
	left: 50%;
	transform: translateX(-50%);
	bottom: calc(100% + 8px);
	position: absolute;
	font-size: 16px;
	line-height: 1.25;
	padding: 8px 16px;
	border-radius: 8px;
	color: #ffffff;
	background: #181818;
	opacity: 0;
	pointer-events: none;
	transition: 0.4s all ease;
	text-align: center;
	z-index: 5;
}

.feature-list li .list-icon .icon-tooltip::before {
	content: "";
	width: 8px;
	height: 8px;
	position: absolute;
	background: #181818;
	left: 50%;
	transform: translateX(-50%) rotate(45deg);
	bottom: -4px;
}

.feature-list li .list-icon:hover .icon-tooltip  {
	opacity: 1;
	pointer-events: unset;
}

.feature-list li span {
	font-size: 14px;
	line-height: 1.5;
	color: #636D71;
	padding-top: 1.5px;
	padding-left: 6px;
	letter-spacing: 0.5px;
}

.park-img-inner .feature-list li span {
	display: none;
}

.park-review-action {
	margin-top: 16px;
	padding:  12px 12px 16px;
	border-radius: 16px;
	background: #F6F7FA;
	display: flex;
	flex-direction: column;
	gap: 16px;
}

.price-card {
	display: flex;
	align-items: flex-end;
	justify-content: space-between;
	gap: 12px;
}

.price-card > div {
	flex: 1;
}

.price-card .price-card__total span {
	font-weight: 500;
	letter-spacing: -0.5px;
}

.price-card .price-card__label,
.price-card .price-card__fees {
	font-size: 14px;
	line-height: 1.5;
	color: #636D71;
	display: block;
}

.park-review-action .general-btn {
	padding: 12.2px 16px;
}

.park-list-wrap.list-view {
	gap: 20px;
}

.list-view .park-card,
.map-view .park-listing-col .park-card {
	width: 100%;
    flex-direction: row;
}

.list-view .park-img-inner,
.map-view .park-listing-col .park-img-inner {
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	padding: 12px 16px;
	width: calc(100% - 230px);
}

.list-view .park-img-content,
.map-view .park-listing-col .park-img-content {
	display: flex;
	width: calc(100% - 188px);
}

.list-view .park-img-inner > div ,
.map-view .park-listing-col .park-img-inner > div {
	display: flex;
	flex-direction: column-reverse;
}

.list-view .park-img-inner .location-item,
.map-view .park-listing-col .park-img-inner .location-item  {
	margin: 4px 0 0;
	gap: 0;
}

.list-view .park-img-inner .location-item img,
.map-view .park-listing-col .park-img-inner .location-item img {
	display: none;
}

.list-view .park-img-inner .location-item span,
.map-view .park-listing-col .park-img-inner .location-item span {
	font-weight: 400;
}

.list-view .feature-list,
.map-view .park-listing-col .feature-list {
	margin-top: 12px;
	gap: 12px;
}

.list-view .feature-list li {
	width: calc(33.33% - 8px);
}

.list-view .feature-list li span,
.map-view .park-listing-col .feature-list li span {
	display: block;
}

.list-view .park-review-action,
.map-view .park-listing-col .park-review-action {
	width: 189px;
	margin-top: 0;
	padding:  16px;
	border-radius: 16px;
	background: #F6F7FA;
	display: flex;
	flex-direction: column;
	gap: 9px;
}

.list-view .price-card,
.map-view .park-listing-col .price-card {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	justify-content: space-between;
	gap: 4px;
}

.map-view.park-sidebar-row {
	position: relative;
}

.map-view.park-sidebar-row .park-sidebar {
	padding: 16px;
	border-radius: 16px;
}

.map-view.park-sidebar-row .park-sidebar-col {
	padding-right: 8px;
    width: 50%;
    position: absolute;
	top: 0;
	left: 0;
}

.map-view.park-sidebar-row .park-listing-col {
	padding: 0;
	padding-right: 8px;
	width: 50%;    
	margin-top: 76px;
}

.map-view.park-sidebar-row .park-sidebar-inner {
	padding: 0;
	margin: 0;
	border: 0;
	position: relative;
}

.map-view.park-sidebar-row .sidebar-form-inner {
	display: flex;
	justify-content: space-between;
	gap: 16px;
}

.map-view.park-sidebar-row .populaire-filters, 
.map-view.park-sidebar-row .andere-eigenschappen {
	display: none;
}

.map-view.park-sidebar-row .park-sidebar-inner h5 {
	display: flex;
    flex-direction: row-reverse;
    justify-content: flex-end;
	color: #636D71;
}

.map-view.park-sidebar-row .checkbox-list {
	position: absolute;
	left: -10px;
	top: calc(100% + 16px);
	background: #fff;
	border-radius: 10px;
	z-index: 10;
	box-shadow: 0 3px 6px rgba(0, 0, 0, .10);
	display: flex;
    flex-direction: column;
    gap: 8px;
}

.map-view.park-sidebar-row .park-sidebar-inner.open .checkbox-list {
	padding: 10px 4px;
	max-height: unset !important;
}

.map-view.park-sidebar-row .checkbox-list li {
	margin-bottom: 0;
}

.park-map-col {
	display: none;
}

.map-view.park-sidebar-row .park-map-col {
	display: block;
	padding-left: 8px;
	width: 50%;
}

.map-view  .park-listing-col .park-img-slider {
	width: 210px;
}

.map-view  .park-listing-col .park-img-slider .swiper-slide img {
    aspect-ratio: 210 / 188;
    height: 100%;
}

.map-view  .park-listing-col .park-img-content {
    width: calc(100% - 161px);
}

.map-view  .park-listing-col .park-img-inner {
    padding: 8px 0 8px 16px;
    width: calc(100% - 210px);
}

.map-view  .park-listing-col .feature-list {
    margin-top: 8px;
    gap: 4px;
}

.map-view  .park-listing-col .feature-list li {
    width: auto;
	background: rgba(0, 128, 0, 0.04);
	border-radius: 8px;
	padding: 4px 6px;
}

.map-view  .park-listing-col .feature-list li .list-icon {
    width: 16px;
    min-width: 16px;
    height: 16px;
    background: transparent;
    border-radius: 0;
	margin-top: 1.5px;
}

.map-view  .park-listing-col .feature-list li span {
	font-size: 12px;
	line-height: 19px;
	display: inline-block;    
	padding-top: 0;
}

.map-view  .park-listing-col .park-review-action {
    width: 161px; 
	background: transparent;
	padding: 8px 8px 8px 16px;
	justify-content: space-between;
}

.park-review-action .general-btn {
	padding: 9.2px 16px;
}

.park-map-inner {
	position: relative;
}

.park-map-inner .embed-map-frame {
	position: relative;
	aspect-ratio: 638/812;
	height: auto;
	width: 100%;
}

.park-map-inner .park-card {
	width: 100%;
	max-width: 305px;
	position: absolute;
	bottom: 24px;
	right: 24px;
	z-index: 50;
}

.sticky-filter-bar {
	position: fixed;
	left: 0;
	bottom: 0;
	z-index: 10;
	background: #fff;
	padding: 8px 16px;
	display: none;
	align-items: center;
	justify-content: space-between;
	width: 100%;
}

.filter-bar-content {
	width: calc(100% - 44px);
	padding-right: 12px;
}

.filter-bar-content span {
	font-size: 12px;
	line-height: 18px;
	color: #636D71;
	display: block;
}

.filter-bar-content h6 {
	font-size: 15px;
	line-height: 24px;
	font-weight: 600;
}

.filter-bar-content p {
	font-size: 12px;
	line-height: 18px;
}

.sticky-filter-bar button {
	width: 44px;
	height: 44px;
	display: flex;
	align-items: center;
	justify-content: center;
	border: 1px solid #DEE5EB;
	background: transparent;
	border-radius: 12px;
}

.sticky-filter-bar button img {
	width: 24px;
	height: 24px;
	object-fit: contain;
}

.park-list-empty {
	max-width: 300px;
	padding: 29px 0 42px;
	text-align: center;
	margin: 0 auto;
}

.park-list-empty img {
	width: 72px;
	height: 72px;
	object-fit: contain;
	margin: 0 auto 32px;
}

.park-list-empty h3 {
	font-size: 28px;
	line-height: 1.3;
	margin-bottom: 12px;
}

.park-list-empty p {
	font-size: 16px;
	line-height: 1.5;
	color: #636D71;
	margin-bottom: 32px;
}

.park-list-empty .general-btn {
	background: transparent;
    color: #008000;
}

.park-list-empty .general-btn:hover {
    background: #008000;
    border-color: #008000;
	color: #fff;
}

.pagination {
	display: flex;
	align-items: center;
	justify-content: center;
	margin-top: 24px;
}

.pagination li {
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 12px;
	width: 56px;
	height: 56px;
	font-size: 16px;
	line-height: 1.5;
	color: #636D71;
}

.pagination button {
	display: flex;
	align-items: center;
	justify-content: center;
	border: 1px solid #DEE5EB;
	transition: 0.4s all ease;
	background: #ffffff;
	border-radius: 12px;
	font-weight: 600;
	width: 56px;
	height: 56px;
	font-size: 16px;
	line-height: 1.5;
	color: #636D71;
	margin-right: 4px;
	cursor: pointer;
}

.pagination button[disabled] {
	cursor: unset;
	opacity: 0.5;
}

.pagination button.active {
	color: #ffffff;
	border-color: #008000;
	background: #008000;
}

.pagination button:first-child,
.pagination button:nth-last-child(2) {
	margin-right: 24px;
}

.pagination button:first-child,
.pagination button:last-child {
	border: 1px solid #008000;
	background: transparent;
}

.pagination button:last-child {
	margin-right: 0;
}

.pagination button svg {
	width: 24px;
	height: 24px;
	object-fit: contain;
}

.pagination button:first-child:not([disabled]):hover,
.pagination button:last-child:not([disabled]):hover {
	background: #008000;
}

.pagination button:first-child:not([disabled]):hover svg path,
.pagination button:last-child:not([disabled]):hover svg path {
	fill: #ffffff;
}
/*-_-_Listing-Page_CSS_End_-_-*/

/*-_-_Detail-Page_CSS_Start_-_-*/
.park-detail-img-wrap {
	background: #fff;
}

.park-detail-img-wrap .park-detail-img-content {
	padding: 20px 0 80px;
}

.park-detail-img-content .local-newspapers-breadcrumb {
	justify-content: flex-start;
	margin-bottom: 24px;
}

.park-detail-img-inner {
	display: flex;
	align-items: flex-end;
	justify-content: space-between;
	margin-bottom: 32px;
	gap: 4px;
}

.park-detail-img-inner h1 {
	font-size: 56px;
	font-weight: 500;
}

.park-detail-img-inner .badge {
	display: inline-flex;
    align-items: center;
    color: #008000;
    background: #F0F8F0;
    border-radius: 6px;
    padding: 8px 8px;
    font-size: 12px;
    line-height: 19px;
    font-weight: 500;
	gap: 6px;
}

.park-detail-img-inner .badge img {
	width: 16px;
	height: 16px;
	object-fit: contain;
}

.park-detail-img-content h2 {
	line-height: 1.12;
	color: #031103;
	font-weight: 700;
	margin-bottom: 40px;
}

.gallery-wrap {
	display: grid;
	grid-template-areas:
		'image1 image1 image1 image1 image1 image1 image2 image2 image2 image3 image3 image3'
		'image1 image1 image1 image1 image1 image1 image2 image2 image2 image4 image4 image4';
	flex-wrap: wrap;
	row-gap: 16px;
	column-gap: 16px;
	grid-template-columns: repeat(12, 1fr);
}

.gallery-wrap .gallery-img {
	position: relative;
}

.gallery-wrap .gallery-img:first-child {
	grid-area: image1;
}

.gallery-wrap .gallery-img:nth-child(2) {
	grid-area: image2;
}

.gallery-wrap .gallery-img:nth-child(3) {
	grid-area: image3;
}

.gallery-wrap .gallery-img:nth-child(4) {
	grid-area: image4;
}

.gallery-wrap .gallery-img:nth-child(5) {
	grid-area: image5;
}

.gallery-wrap .gallery-img img {
	width: 100%;
	aspect-ratio: 308 / 232;
	border-radius: 16px;
	object-fit: cover;
	cursor: pointer;
}

.gallery-wrap .gallery-img:first-child img {
	aspect-ratio: 632 / 480;
}

.gallery-wrap .gallery-img:nth-child(2) img {
	aspect-ratio: 308 / 480;
}

.gallery-wrap .gallery-img .show-more-photos {
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	background: rgba(0, 0, 0, 0.71);
	border-radius: 16px;
	font-size: 18px;
	line-height: 1.35;
	font-weight: 500;
	color: #ffffff;
	border: 0;
	pointer-events: none;
}

.park-row {
	display: flex;
	flex-wrap: wrap;
	align-items: flex-start;
	margin: 32px -10px 0;
}

.park-row .park-inner,
.park-row .park-map {
	width: 50%;
	padding: 0 10px;
}

.park-row .park-map .park-inner-btns {
	display: none;
}

.park-inner .feature-list {
	margin: 0 0 32px;
}

.park-inner .feature-list {
	row-gap: 12px;
	column-gap: 20px;
}

.park-inner > h3 {
	margin: 20px 0;
}

.park-inner-btns {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	margin-top: 32px;
	column-gap: 16px;
	row-gap: 12px;
}

.park-map #map {
	width: 100%;
	height: 340px;
	border-radius: 16px;
}

.offer-list-wrap {
	background: #F6F7FA;
	padding: 80px 0;
}

.offer-list-wrap .offer-list-content {
	margin-bottom: 24px;
}

.offer-list-wrap .offer-list-content h2 {
	margin-bottom: 6px;
}

.offer-list-wrap .offer-list-content p {
	font-size: 16px;
	line-height: 1.5;
	color: #636D71;
}

.holiday-form-wrap .banner-form {
	margin-bottom: 24px;
	bottom: 0;
}

.holiday-form-wrap .banner-form .form-group {
	flex: 1;
}

.holiday-form-wrap .banner-form .form-group.form-group-btn {
	flex: unset;
}

.holiday-form-wrap #zoeken-btn {
	font-size: 24px;
	line-height: 1.3;
	color: #181818;
	background-color: #ffffff;
	border-radius: 16px;
	padding: 18.5px 60px 18.5px 20px;
	border: 0;
	text-align: left;
	position: relative;
	width: 100%;	
	display: none;
}

.holiday-form-wrap #zoeken-btn::before {
	content: "";
	background: url(/images/angle-down-icon.svg) center center no-repeat;
    background-size: contain;
	width: 44px;
	height: 44px;
	right: 8px;
	top: 50%;
	transform: translateY(-50%);
	transition: 0.4s all ease;
	pointer-events: none;
	position: absolute;
}

.offers-wrap.park-list-wrap {
	gap: 20px;
}

.offers-wrap.park-list-wrap .park-card {
    width: calc(25% - 15px);
}

.park-img-inner .per-person {
	display: flex;
	align-items: center;
	font-size: 16px;
	line-height: 1.5;
	margin-bottom: 2px;
	color: #636D71;
	gap: 4px;
}

.park-img-inner .per-person img {
	width: 16px;
	height: 16px;
	object-fit: contain;
}

.park-img-inner .free-cancellation {
	font-size: 14px;
	line-height: 1.5;
	font-weight: 500;
	color: #008000;
	margin-top: 2px;
}

.offers-wrap.park-list-wrap .park-review-action {
    border-radius: 20px;
}

.offers-wrap.park-list-wrap .feature-list li {
	width: calc(50% - 6px);
}

.feature-list li.read-more-toggle {
	display: none !important;
}

.feature-list li .list-icon {
	position: relative;
}

.feature-list li .list-icon::before {
	content: "";
	background-position: center center;
	background-repeat: no-repeat;
	background-size: contain;
	left: 50%;
	top: 50%;
	width: 16px;
	height: 16px;
	transform: translate(-50%, -50%);
	position: absolute;
	z-index: 1;
}

.feature-list li[data-slug="padel-court"] .list-icon::before {
	background-image: url(/images/padelbaan.svg);
}

.feature-list li[data-slug="campsite-as-well"] .list-icon::before {
	background-image: url(/images/camping.svg);
}

.feature-list li[data-slug="bicycle-rental"] .list-icon::before {
	background-image: url(/images/fietsverhuur.svg);
}

.feature-list li[data-slug="fast-food-restaurant"] .list-icon::before {
	background-image: url(/images/snackbar.svg);
}

.feature-list li[data-slug="restaurant"] .list-icon::before {
	background-image: url(/images/restaurant.svg);
}

.feature-list li[data-slug="dog-friendly"] .list-icon::before {
	background-image: url(/images/hondvriendelijk.svg);
}

.feature-list li[data-slug="swimming-pool"] .list-icon::before {
	background-image: url(/images/zwembad.svg);
}

.feature-list li[data-slug="indoor-swimming-pool"] .list-icon::before {
	background-image: url(/images/zwembad.svg);
}

.feature-list li[data-slug="entertainment-team"] .list-icon::before {
	background-image: url(/images/entertainment-team.svg);
}

.feature-list li[data-slug="playground"] .list-icon::before {
	background-image: url(/images/speeltuin.svg);
}

.feature-list li[data-slug="supermarket"] .list-icon::before {
	background-image: url(/images/supermarkt.svg);
}

.feature-list li[data-slug="football-field"] .list-icon::before {
	background-image: url(/images/voetbalveld.svg);
}

.feature-list li .list-icon.slaapkamers::before,
.feature-list li .list-icon.slaapkamer::before {
	background-image: url(/images/bedroom-icon.svg);
}

.feature-list li .list-icon.badkamers::before,
.feature-list li .list-icon.badkamer::before {
	background-image: url(/images/bath-icon.svg);
}

.feature-list li .list-icon.televisie::before {
	background-image: url(/images/tv-icon.svg);
}

.offers-wrap.park-list-wrap .feature-list li span {
	display: inline-block;
}
/*-_-_Detail-Page_CSS_End_-_-*/

/*-_-_Photo-Gallery_CSS_Start_-_-*/
/* backdrop */
.modal-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.5);
  opacity: 0;
  transition: opacity .15s linear;
  z-index: 1050;
}

.modal-backdrop.show {
  opacity: 1;
}

/* modal */
.modal {
  position: fixed;
  inset: 0;
  display: none;
  overflow-x: hidden;
  overflow-y: auto;
  z-index: 1055;
}

/* show state */
.modal.show {
  display: block;
}

.modal-dialog-centered {
  display: flex;
  align-items: center;
  min-height: calc(100% - 1rem);
}

/* dialog */
.modal-dialog {
  position: relative;
  width: auto;
  margin: 1.75rem auto;
  max-width: 500px;
  pointer-events: none;
  padding: 0 15px;
}

/* content */
.modal-content {
  position: relative;
  background: #fff;
  border-radius: .5rem;
  box-shadow: 0 .5rem 1rem rgba(0,0,0,.15);
  pointer-events: auto;
  display: flex;
  flex-direction: column;
  width: 100%;
}

/* header/body/footer */
.modal-header,
.modal-footer {
  padding: 1rem;
  border-bottom: 1px solid #dee2e6;
}

.modal-footer {
  border-top: 1px solid #dee2e6;
  border-bottom: 0;
}

.modal-body {
  padding: 1rem;
}

/* close button */
.btn-close {
  background: none;
  border: 0;
  font-size: 20px;
  cursor: pointer;
}

/* animation */
.modal.fade .modal-dialog {
  transform: translateY(-50px);
  transition: transform .2s ease-out;
}

.modal.show .modal-dialog {
  transform: translateY(0);
}

.gallery-modal .modal-content {
	padding: 32px;
	border-radius: 16px;
	border: 0;
}

.gallery-modal .modal-body {
	padding: 0;
}

.gallery-modal .modal-heading {
    margin-bottom: 0 !important;
    padding-bottom: 0 !important;
}

.gallery-modal .modal-back {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 4px; /* eventueel nog kleiner */
    margin-bottom: 0 !important;
    padding-bottom: 0 !important;
    line-height: 1.2;

	display: flex;
	align-items: center;
	flex-wrap: nowrap; /* Belangrijk */
	white-space: nowrap; /* Belangrijk */
	gap: 6px; /* optioneel: stel de afstand in */
	overflow: hidden;

}

.gallery-modal .modal-back .btn-close {
	width: 32px;
	height: 32px;
	background: transparent;
	object-fit: contain;
	margin-right: 12px;
	padding: 0;
	opacity: 1;
}

.gallery-modal .modal-back span {
    font-size: clamp(18px, 5vw, 32px);
    line-height: 1.2;
    font-weight: 700;
    margin: 0 !important;
    padding: 0 !important;
}

.gallery-modal .nav-tabs-wrap {
	overflow-x: auto;
	margin-bottom: 30px;
}

.gallery-modal .nav-tabs-wrap::-webkit-scrollbar-track {
	border-radius: 10px;
	background-color: #EDEDED;
}

.gallery-modal .nav-tabs-wrap::-webkit-scrollbar {
	height: 5px;
	border-radius: 10px;
	background-color: #EDEDED;
}

.gallery-modal .nav-tabs-wrap::-webkit-scrollbar-thumb {
	border-radius: 10px;
	/* background-color: #008000; */
	background-color: #D3D3D3;
}

.gallery-modal .nav-tabs {
	display: flex;
	flex-wrap: nowrap;
	justify-content: flex-start;
	position: relative;
	border: 0;
	width: auto;
	padding: 0;
	padding-bottom: 2px;
}

.gallery-modal .nav-tabs button {
	font-size: 20px;
	line-height: 1.3;
	font-weight: 600;
	color: #252525;
	border: 0;
	border-bottom: 1.5px solid #E3E3E3;
	position: relative;
	z-index: 1;
	margin: 0;
	border-radius: 0 !important;
	padding: 16.6px 10px;
	background: transparent;
	min-width: 185px;
	white-space: nowrap;
	cursor: pointer;
}

.gallery-modal .nav-tabs .nav-item.show .nav-link, 
.gallery-modal .nav-tabs .nav-link.active {
	color: #008000;
	border-color: #008000;
}

.gallery-modal .tab-panel {
  display: none;
}

.gallery-modal .tab-panel.active {
  display: block;
}

.gallery-modal .tab-content {
	max-height: calc(100vh - 290px);
	overflow-y: auto;
	overflow-x: hidden;
	padding-right: 11px;
	margin-right: -18px;
}

.gallery-modal .tab-content::-webkit-scrollbar-track {
	border-radius: 10px;
	background-color: #EDEDED;
}

.gallery-modal .tab-content::-webkit-scrollbar {
	width: 7px;
	border-radius: 10px;
	background-color: #EDEDED;
}

.gallery-modal .tab-content::-webkit-scrollbar-thumb {
	border-radius: 10px;
	/* background-color: #008000; */
	background-color: #D3D3D3;
}
.gallery-modal .tab-content .tab-pane h3 {
	font-size: 32px;
	line-height: 1.25;
	color: #252525;
	font-weight: 700;
	margin-bottom: 32px;
}

/* panes */
.tab-pane {
  display: none;
}

.tab-pane.active {
  display: block;
}

/* optional fade animation like Bootstrap */
.tab-pane.fade {
  opacity: 0;
  transition: opacity .15s linear;
}

.tab-pane.fade.show {
  opacity: 1;
}

.gallery-row {
	display: flex;
	flex-wrap: wrap;
	margin: 0 -10px;
	row-gap: 20px;
}

.gallery-row .gallery-col {
	width: 50%;
	padding: 0 10px;
}

.gallery-row .gallery-col img {
	width: 100%;
	aspect-ratio: 538 / 360;
	object-fit: cover;
}

.gallery-row .gallery-col p {
	font-size: 24px;
	line-height: 1;
	color: #252525;
	font-weight: 600;
}
/*-_-_Photo-Gallery_CSS_End_-_-*/

/*-_-_Responsiveness_-_-*/
@media only screen and (min-width: 575px) {
	.container {
		max-width: 540px;
	}
}

@media only screen and (min-width: 768px) {
	.container {
		max-width: 720px;
	}

	.navbar-expand-md {
		flex-wrap: nowrap;
		justify-content: flex-start;
	}

	.navbar-expand-md .navbar-toggler {
		display: none;
	}

	.navbar-expand-md .navbar-collapse {
		display: flex !important;
		flex-basis: auto;
	}

	.navbar-expand-md .navbar-nav {
		flex-direction: row;
	}
}

@media only screen and (min-width: 992px) {
	.container {
		max-width: 960px;
	}

	.modal-lg,
	.modal-xl {
		max-width: 800px;
	}
}

@media only screen and (min-width: 1200px) {
	.container {
		max-width: 1140px;
	}

	.modal-xl {
		max-width: 1140px;
	}
}

@media only screen and (min-width: 1400px) {
	.container {
		max-width: 1304px;
	}
}

@media only screen and (max-width: 1399.5px) {
	h1 {
		font-size: 64px;
		/* 72px 40px */
	}

	h2 {
		font-size: 33px;
		/* 36px 26px */
	}

	h3 {
		font-size: 26px;
		/* 28px 22px */
	}

	h4 {
		font-size: 22px;
		/* 24px 18px */
	}

	.banner {
		padding-top: 260px;
		margin-bottom: 50px;
	}

	.local-newspapers-wrap {
		padding: 72px 0;
	}

	.local-newspapers-wrap>div>h2 {
		margin-bottom: 44px;
	}

	.news-feature-content {
		border-radius: 28px;
	}

	.news-feature-list {
		gap: 16px;
		padding: 30px 30px;
	}

	.news-feature-card {
		padding: 16px;
		border-radius: 20px;
	}

	.news-feature-card .nf-card-img {
		width: 54px;
		height: 54px;
	}

	.news-feature-card .nf-card-inner {
		width: calc(100% - 54px);
		padding-left: 12px;
	}

	.local-newspapers-content {
		padding-top: 44px;
	}

	.local-newspapers-content h2 {
		margin-bottom: 34px;
	}

	.local-newspapers-content .local-newspapers-list {
		gap: 16px;
	}

	.local-newspapers-list li {
		border-radius: 22px;
		width: 185px;
	}

	.holiday-parks-wrap {
		padding: 72px 0;
	}

	.holiday-parks-wrap .customer-reviews-content h2 {
		max-width: 380px;
	}

	.parks-tab-buttons {
		padding: 6px;
		gap: 10px;
	}

	.parks-tab-buttons .tab-btn {
		padding: 15px 20px 15px 16px;
	}

	.parks-tab-content .tab-panel {
		padding: 22px;
	}

	.parks-tab-content .tab-panel>img {
		border-radius: 28px;
	}

	.parks-tab-inner {
		border-radius: 22px;
		padding: 30px 40px 30px 22px;
		max-width: 480px;
	}

	.parks-tab-inner h3 {
		margin-bottom: 19px;
	}

	.popular-themes-wrap .popular-themes-content {
		padding: 52px 0 72px;
	}

	.popular-themes-wrap .popular-themes-content h2 {
		margin-bottom: 34px;
	}

	.popular-themes-card img {
		border-radius: 22px;
	}

	.popular-themes-row {
		margin: 0 -8px;
	}

	.popular-themes-row .popular-themes-col {
		padding: 0 8px;
	}

	.popular-themes-card .popular-themes-inner {
		width: calc(100% - 22px);
		bottom: 11px;
		left: 11px;
		border-radius: 15px;
	}

	.dream-trip-wrap,
	.customer-reviews-wrap,
	.popular-wrap .popular-row,
	.faqs-wrap .faqs-row {
		padding: 72px 0;
	}

	.personal-search-content h2 {
		width: 380px;
	}

	.personal-search-content .personal-search-inner {
		width: calc(100% - 400px);
	}

	.dream-trip-wrap .dream-trip-content {
		padding-top: 72px;
	}

	.dream-trip-content img {
		aspect-ratio: 1280 / 580;
		border-radius: 28px;
	}

	.dream-trip-content .dream-trip-card {
		bottom: 22px;
		left: 22px;
		width: 498px;
		max-width: calc(100% - 44px);
		border-radius: 22px;
		padding: 30px 22px;
	}

	.dream-trip-content .dream-trip-card h2 {
		margin-bottom: 15px;
	}

	.dream-trip-content .dream-trip-card p {
		margin-bottom: 28px;
	}

	.faqs-accordion .accordion-item {
		border-radius: 22px;
		padding: 11px 11px 11px 22px;
	}

	.popular-wrap .popular-content,
	.faqs-wrap .faqs-content {
		width: 380px;
	}

	.popular-wrap .popular-slider-wrap,
	.faqs-wrap .faqs-accordion-wrap {
		width: calc(100% - 400px);
	}

	.faqs-accordion .accordion-button {
		font-size: 22px;
	}

	.popular-themes-wrap .popular-themes-card p {
		min-height: 63.75px;
		font-size: 17px;
	}

	.footer-desp-wrap {
		width: 30%;
		max-width: unset;
	}

	.footer-links-wrap {
		max-width: unset;
		width: 70%;
	}

	.footer-links ul li a {
		overflow-wrap: anywhere;
	}

	/*-_-_Listing-Page_CSS_Start_-_-*/
	.listing-banner.banner .banner-content h1 {
		font-size: 52px;
	}

	.park-sidebar-row .park-sidebar-col {
		width: 280px;
	}

	.checkbox-list li {
		padding: 0;
	}

	.park-sidebar-row .park-listing-col {
		width: calc(100% - 280px);
		padding-left: 24px;
	}

	.park-list-wrap {
		gap: 12px;
	}

	.list-view .feature-list {
		gap: 8px;
	}

	.list-view .feature-list li {
		width: calc(50% - 4px);
	}

	.map-view.park-sidebar-row .park-sidebar-col,
	.map-view.park-sidebar-row .park-listing-col {
		width: 55%;
	}

	.map-view.park-sidebar-row .park-map-col {
		width: 45%;
	}
	/*-_-_Listing-Page_CSS_End_-_-*/

	/*-_-_Detail-Page_CSS_Start_-_-*/
	.park-detail-img-wrap .park-detail-img-content {
		padding: 20px 0 72px;
	}

	.park-detail-img-content .local-newspapers-breadcrumb {
		margin-bottom: 22px;
	}

	.park-detail-img-inner {
		margin-bottom: 30px;
	}

	.park-detail-img-inner h1 {
		font-size: 51px;
	}

	.gallery-wrap {
		row-gap: 14px;
		column-gap: 14px;
	}

	.gallery-wrap .gallery-img .show-more-photos {
		border-radius: 14px;
		font-size: 17px;
	}

	.park-row {
		margin-top: 30px;
	}

	.park-inner .feature-list {
		margin-bottom: 30px;
	}

	.park-inner > h3 {
		margin: 18px 0;
	}

	.park-inner-btns {
		margin-top: 30px;
	}

	.offer-list-wrap {
		padding: 72px 0;
	}

	.offers-wrap.park-list-wrap {
		gap: 20px;
	}

	.gallery-wrap .gallery-img img {
		border-radius: 14px;
	}

	.offers-wrap.park-list-wrap .park-card {
		width: calc(33.33% - 13.3px);
	}
	/*-_-_Detail-Page_CSS_End_-_-*/
}

@media only screen and (max-width: 1199.5px) {
	h1 {
		font-size: 56px;
		/* 72px 40px */
	}

	h2 {
		font-size: 30px;
		/* 36px 26px */
	}

	h3 {
		font-size: 24px;
		/* 28px 22px */
	}

	h4 {
		font-size: 20px;
		/* 24px 18px */
	}

	header .navbar-nav>li>a {
		padding: 6px 14px !important;
	}

	.banner {
		padding-top: 200px;
		margin-bottom: 50px;
	}

	.banner .banner-content .banner-inner p {
		font-size: 17px;
	}

	.banner-form input[type="text"], 
	.banner-form .flatpickr-alt-input, 
	.banner-form select, 
	#guests-field .select-styled {
	    font-size: 17px;
	}

	.local-newspapers-wrap {
		padding: 66px 0;
	}

	.local-newspapers-wrap>div>h2 {
		max-width: 720px;
		margin: 0 auto 40px;
	}

	.news-feature-content {
		border-radius: 24px;
	}

	.news-feature-list {
		flex-wrap: wrap;
		gap: 16px;
		padding: 50px;
	}

	.news-feature-card {
		flex: unset;
		padding: 16px;
		border-radius: 20px;
		width: calc(50% - 8px);
	}

	.news-feature-card .nf-card-img {
		width: 52px;
		height: 52px;
	}

	.news-feature-card .nf-card-inner {
		width: calc(100% - 52px);
	}

	.local-newspapers-content {
		padding-top: 40px;
	}

	.local-newspapers-content h2 {
		margin-bottom: 32px;
	}

	.local-newspapers-content .local-newspapers-list {
		max-width: 720px;
		margin: 0 auto;
		gap: 16px;
	}

	.local-newspapers-list li {
		border-radius: 20px;
		width: 180px;
	}

	.holiday-parks-wrap {
		padding: 66px 0;
	}

	.holiday-parks-wrap .customer-reviews-content h2 {
		max-width: 350px;
	}

	.parks-tab-buttons {
		padding: 5px;
		gap: 8px;
	}

	.parks-tab-buttons .tab-btn {
		padding: 14px 20px 14px 16px;
	}

	.parks-tab-content .tab-panel {
		padding: 20px;
	}

	.parks-tab-content .tab-panel>img {
		border-radius: 24px;
	}

	.parks-tab-inner {
		border-radius: 20px;
		padding: 28px 32px 28px 20px;
		max-width: 420px;
	}

	.parks-tab-inner h3 {
		margin-bottom: 18px;
	}

	.popular-themes-wrap .popular-themes-content {
		padding: 52px 0 66px;
	}

	.popular-themes-wrap .popular-themes-content h2 {
		margin-bottom: 32px;
	}

	.popular-themes-card img {
		border-radius: 20px;
	}

	.popular-themes-row {
		margin: 0 -6px;
	}

	.popular-themes-row .popular-themes-col {
		padding: 0 6px;
	}

	.popular-themes-card .popular-themes-inner {
		width: calc(100% - 20px);
		bottom: 10px;
		left: 10px;
		border-radius: 14px;
	}

	.dream-trip-wrap,
	.customer-reviews-wrap,
	.popular-wrap .popular-row,
	.faqs-wrap .faqs-row {
		padding: 66px 0;
	}

	.personal-search-content h2 {
		width: 320px;
	}

	.personal-search-content .personal-search-inner {
		width: calc(100% - 340px);
	}

	.dream-trip-wrap .dream-trip-content {
		padding-top: 66px;
	}

	.dream-trip-content img {
		aspect-ratio: 1280 / 640;
		border-radius: 24px;
	}

	.dream-trip-content .dream-trip-card {
		bottom: 20px;
		left: 20px;
		width: 440px;
		max-width: calc(100% - 40px);
		border-radius: 20px;
		padding: 28px 20px;
	}

	.dream-trip-content .dream-trip-card h2 {
		margin-bottom: 14px;
	}

	.dream-trip-content .dream-trip-card p {
		margin-bottom: 24px;
	}

	.faqs-accordion .accordion-item {
		border-radius: 20px;
		padding: 10px 10px 10px 20px;
	}

	.popular-wrap .popular-content,
	.faqs-wrap .faqs-content {
		width: 320px;
	}

	.popular-wrap .popular-slider-wrap,
	.faqs-wrap .faqs-accordion-wrap {
		width: calc(100% - 340px);
	}

	.faqs-accordion .accordion-button {
		font-size: 20px;
	}

	.popular-themes-wrap .popular-themes-card p {
		min-height: 60px;
		font-size: 16px;
	}

	.footer-desp-wrap,
	.footer-links-wrap {
		padding: 0;
		width: 100%;
	}

	/*-_-_Listing-Page_CSS_Start_-_-*/
	.listing-banner.banner .banner-content h1 {
		font-size: 48px;
	}

	.park-sidebar-row .park-sidebar-col {
		width: 280px;
	}

	.checkbox-list li {
		padding: 0;
	}

	.park-sidebar-row .park-listing-col {
		width: calc(100% - 280px);
		padding-left: 16px;
	}

	.park-card {
    	width: calc(50% - 6px);
	}

	.park-view-btn#list-btn,
	.park-list-wrap.list-view {
		display: none;
	}

	.map-view.park-sidebar-row .park-sidebar-col,
	.map-view.park-sidebar-row .park-listing-col {
		width: 60%;
	}

	.map-view.park-sidebar-row .park-sidebar-inner h5 {
    	font-size: 14px;
	}

	.map-view.park-sidebar-row .park-map-col {
		width: 40%;
	}

	.park-map-inner .park-card {
		max-width: 280px;
		bottom: 12px;
		right: 12px;
	}

	.park-map-inner .embed-map-frame {
		height: 650px;
		aspect-ratio: unset;
	}
	/*-_-_Listing-Page_CSS_End_-_-*/

	/*-_-_Photo-Gallery_CSS_Start_-_-*/
	.gallery-modal .modal-content {
		padding: 28px;
	}

	.gallery-modal .modal-heading {
		margin-bottom: 24px;
	}

	.gallery-modal .modal-back .btn-close {
		width: 24px;
		height: 24px;
		margin-right: 10px;
	}

	.gallery-modal .modal-back span {
		font-size: 26px;
	}

	.gallery-modal .nav-tabs-wrap {
		margin-bottom: 22px;
	}

	.gallery-modal .nav-tabs button {
		font-size: 16px;
		min-width: 160px;
		padding: 16.2px 10px;
	}

	.gallery-modal .tab-content {
		max-height: calc(100vh - 250px);
		padding-right: 10px;
		margin-right: -16px;
	}

	.gallery-modal .tab-content::-webkit-scrollbar {
		width: 6px;
	}

	.gallery-modal .tab-content .tab-pane h3 {
		font-size: 28px;
		line-height: 1.2;
		margin-bottom: 28px;
	}

	.gallery-row {
		margin: 0 -12px;
		row-gap: 24px;
	}

	.gallery-row .gallery-col {
		padding: 0 12px;
	}

	.gallery-row .gallery-col img {
		width: 100%;
		aspect-ratio: 538 / 360;
		object-fit: cover;
	}

	.gallery-row .gallery-col p {
		font-size: 20px;
		line-height: 1;
	}
	/*-_-_Photo-Gallery_CSS_End_-_-*/
	
	/*-_-_Detail-Page_CSS_Start_-_-*/
	.park-detail-img-wrap .park-detail-img-content {
		padding: 20px 0 66px;
	}

	.park-detail-img-content .local-newspapers-breadcrumb {
		margin-bottom: 20px;
	}

	.park-detail-img-inner {
		margin-bottom: 28px;
	}

	.park-detail-img-inner h1 {
		font-size: 46px;
	}

	.gallery-wrap {
		row-gap: 12px;
		column-gap: 12px;
	}

	.gallery-wrap .gallery-img .show-more-photos {
		border-radius: 12px;
		font-size: 16px;
	}

	.park-row {
		margin-top: 28px;
	}

	.park-inner .feature-list {
		margin-bottom: 28px;
	}

	.park-inner > h3 {
		margin: 16px 0;
	}

	.park-inner-btns {
		margin-top: 28px;
	}

	.offer-list-wrap {
		padding: 66px 0;
	}

	.offers-wrap.park-list-wrap {
		gap: 16px;
	}

	.offers-wrap.park-list-wrap .park-card {
		width: calc(33.33% - 10.667px);
	}

	.gallery-wrap .gallery-img img {
		border-radius: 12px;
	}

	.gallery-wrap .gallery-img .show-more-photos {
		border-radius: 14px;
		font-size: 16px;
	}
	/*-_-_Detail-Page_CSS_End_-_-*/
}

@media only screen and (max-width: 991.5px) {
	h1 {
		font-size: 48px;
		/* 72px 40px */
	}

	h2 {
		font-size: 28px;
		/* 36px 26px */
	}

	h3 {
		font-size: 23px;
		/* 28px 22px */
	}

	h4 {
		font-size: 19px;
		/* 24px 18px */
	}

	header .navbar-nav>li>a {
		padding: 6px 10px !important;
	}

	.banner {
        padding: 180px 0 50px;
        margin-bottom: 0;
    }

	.banner .banner-content .banner-inner {
		margin-bottom: 20px;
	}

	.banner-form {
		border-radius: 20px;
		padding: 12px 20px 16px;
		bottom: unset;
	}
	
	.banner-form .form-row {
		margin: 0;
	}

	.banner-form .form-group,
	.banner-form .form-group#guests-field {
		padding: 8px 0;
		width: 100%;
		border-right: 0;    
		border-bottom: 1px solid #DEE5EB;
	}

	.label-wrap label {
		font-size: 13px;
		line-height: 16px; 
		position: absolute;
		width: 100%;
		left: 0;
		top: 0;
		padding-right: 56px;
		pointer-events: none;
	}

	.banner-form input[type="text"], 
	.banner-form .flatpickr-alt-input, 
	.banner-form select, 
	#guests-field .select-styled {
		font-size: 16px;
		line-height: 24px;
		font-weight: 500;
		display: block;
		width: 100%;
		height: 48px;
		padding: 20px 56px 4px 0;
	}

	.banner-form .form-group.form-group-btn {
		padding: 8px 0 0;
		width: 100%;
	}

	.local-newspapers-wrap {
		padding: 58px 0;
	}

	.local-newspapers-wrap>div>h2 {
		margin: 0 auto 36px;
	}

	.news-feature-content {
		border-radius: 20px;
	}

	.news-feature-content>img {
		height: 460px;
	}

	.news-feature-list {
		gap: 16px;
		padding: 30px;
	}

	.news-feature-card {
		flex: unset;
		padding: 14px;
		border-radius: 18px;
		width: calc(50% - 8px);
	}

	.news-feature-card .nf-card-img {
		width: 50px;
		height: 50px;
	}

	.news-feature-card .nf-card-inner {
		width: calc(100% - 50px);
	}

	.local-newspapers-content {
		padding-top: 36px;
	}

	.local-newspapers-content h2 {
		margin-bottom: 30px;
	}

	.local-newspapers-content .local-newspapers-list {
		gap: 14px;
	}

	.local-newspapers-list li {
		border-radius: 18px;
		width: 170px;
	}

	.holiday-parks-wrap {
		padding: 58px 0;
	}

	.holiday-parks-wrap .customer-reviews-content h2 {
		max-width: 100%;
	}

	.parks-tab-buttons {
		width: 100%;
		padding: 5px;
		gap: 6px;
	}

	.parks-tab-buttons .tab-btn {
		width: calc(25% - 4.667px);
		padding: 14px 20px 14px 16px;
	}

	.parks-tab-content .tab-panel {
		padding: 18px;
	}

	.parks-tab-content .tab-panel>img {
		border-radius: 20px;
	}

	.parks-tab-inner {
		border-radius: 16px;
		padding: 26px 24px 26px 18px;
		max-width: 380px;
	}

	.parks-tab-inner h3 {
		margin-bottom: 17px;
	}

	.popular-themes-wrap .popular-themes-content {
		padding: 52px 0 58px;
	}

	.popular-themes-wrap .popular-themes-content h2 {
		margin-bottom: 30px;
	}

	.popular-themes-card img {
		border-radius: 18px;
	}

	.popular-themes-row {
		margin: 0 -6px;
		row-gap: 12px;
	}

	.popular-themes-row .popular-themes-col {
		width: 50%;
		padding: 0 6px;
	}

	.popular-themes-card .popular-themes-inner {
		width: calc(100% - 18px);
		bottom: 9px;
		left: 9px;
		border-radius: 13px;
	}

	.popular-wrap .popular-content {
		display: flex;
		align-items: center;
		justify-content: space-between;
	}

	.popular-wrap .popular-content h2 {
		margin-bottom: 12px;
	}

	.popular-wrap .popular-content p {
		margin: 0;
	}

	.dream-trip-wrap,
	.customer-reviews-wrap,
	.popular-wrap .popular-row,
	.faqs-wrap .faqs-row {
		padding: 58px 0;
	}

	.personal-search-content h2 {
		width: 100%;
		margin-bottom: 12px;
	}

	.personal-search-content .personal-search-inner {
		width: 100%;
	}

	.personal-search-list .personal-search-content {
		padding-bottom: 32px;
		margin-bottom: 32px;
	}

	.dream-trip-wrap .dream-trip-content {
		padding-top: 58px;
	}

	.dream-trip-content img {
		aspect-ratio: 1280 / 560;
		border-radius: 20px;
	}

	.dream-trip-content .dream-trip-card {
		position: relative;
		left: 0;
		bottom: auto;
		width: 100%;
		max-width: 100%;
		border-radius: 16px;
		padding: 26px 18px;
		background: #F6F7FA;
		margin-top: -30px;
		z-index: 1;
	}

	.dream-trip-content .dream-trip-card h2 {
		margin-bottom: 13px;
	}

	.dream-trip-content .dream-trip-card p {
		margin-bottom: 20px;
	}

	.popular-wrap .popular-content,
	.faqs-wrap .faqs-content {
		width: 100%;
		margin-bottom: 32px;
	}

	.popular-wrap .popular-slider-wrap,
	.faqs-wrap .faqs-accordion-wrap {
		width: 100%;
	}

	.faqs-accordion .accordion-item {
		padding: 9px 9px 9px 18px;
		border-radius: 18px;
	}

	.faqs-accordion .accordion-button {
		font-size: 19px;
	}

	.popular-themes-wrap .popular-themes-card p {
		min-height: 45px;
		font-size: 18px;
	}

	.footer-row {
		row-gap: 30px;
	}

	.footer-row .footer-col {
		width: 50%;
	}

	/*-_-_Listing-Page_CSS_Start_-_-*/
	.listing-banner.banner .banner-content {
		padding: 110px 0 48px;
	}

	.listing-banner.banner .banner-content h1 {
		font-size: 44px;
	}

	.listing-banner.banner .banner-content .banner-inner {
        margin-bottom: 0;
    }

	.main-form-wrap {
		padding-top: 50px;
		margin: 0;
	}

	.park-listing-wrap {
		padding-top: 24px;
	}

	.main-form-wrap .holiday-form-wrap {
		margin: 0;
	}

	.park-listing-content {
		flex-wrap: wrap;
		gap: 24px;
		margin-bottom: 24px;
	}
	
	.park-listing-inner,
	.park-filters-wrap {
		width: 100%;
	}

	.holiday-form-wrap {
		margin-bottom: 24px;
	}

	.holiday-form-wrap .form-wrap {
		display: none;
	}

	.holiday-form-wrap #zoeken-btn {
		display: block;
	}

	.holiday-form-wrap #zoeken-btn.is-active::before {
		transform: translateY(-50%) rotate(180deg);
	}

	.holiday-form-wrap {
		position: relative;
	}

	.holiday-form-wrap .form-wrap.is-open {
		margin-top: 8px;
		display: block;
		position: absolute;
		left: 0;
		top: 100%;
		width: 100%;
		z-index: 5;
	}

	.holiday-form-wrap .banner-form {
		margin: 0;
	}

	.park-sidebar-row .park-sidebar-col {
		width: 250px;
	}

	.park-sidebar {
		padding: 16px;
		border-radius: 20px;
	}

	.checkbox-list .form-check .form-check-label,
	.checkbox-list li>span {
    	font-size: 14px;
	}

	.checkbox-list li {
		padding: 0;
	}

	.park-sidebar-row .park-listing-col {
		width: calc(100% - 250px);
		padding-left: 16px;
	}

	.park-card {
    	width: calc(50% - 6px);
	}

	.price-card {
		gap: 8px;
		align-items: flex-start;
		flex-direction: column;
	}

	.price-card > div {
		width: 100%;
	}

	.park-review-action {
		border-radius: 12px;
	}

	.park-list-empty {
		padding: 38px 0 0;
	}

	.map-view.park-sidebar-row .park-sidebar-col,
	.map-view.park-sidebar-row .park-listing-col {
		display: none;
	}

	.map-view.park-sidebar-row .park-map-col {
        width: 100%;
		padding: 0;
    }

	.park-map-inner .embed-map-frame {
		height: 720px;
	}

	.park-map-inner .park-card { 
		max-width: 305px;
        bottom: 24px;
        right: 24px;
	}
	/*-_-_Listing-Page_CSS_End_-_-*/

	/*-_-_Photo-Gallery_CSS_Start_-_-*/
	.gallery-modal .modal-content {
		padding: 24px;
	}

	.gallery-modal .modal-heading {
		align-items: flex-start;
		justify-content: flex-start;
		flex-direction: column;
		margin-bottom: 0;
	}

	.gallery-modal .modal-back .btn-close {
		width: 24px;
		height: 24px;
		margin-right: 10px;
	}

	.gallery-modal .modal-back span {
		font-size: 20px;
		line-height: 56px;
	}

	.gallery-modal .modal-heading .general-btn {
		width: 100%;
	}

	.gallery-modal .nav-tabs-wrap {
		margin-bottom: 20px;
	}

	.gallery-modal .nav-tabs {
		padding-bottom: 0;
	}

	.gallery-modal .nav-tabs button {
		font-size: 14px;
		min-width: unset;
		padding: 17.5px 16px;
	}

	.gallery-modal .tab-content {
		max-height: calc(100vh - 240px);
		padding-right: 10px;
		margin-right: -16px;
	}

	.gallery-modal .tab-content::-webkit-scrollbar {
		width: 6px;
	}

	.gallery-modal .tab-content .tab-pane h3 {
		font-size: 24px;
		line-height: 1.2;
		margin-bottom: 20px;
	}

	.gallery-row {
		margin: 0 -10px;
		row-gap: 20px;
	}

	.gallery-row .gallery-col {
		padding: 0 10px;
	}

	.gallery-row .gallery-col img {
		width: 100%;
		aspect-ratio: 280 / 155;
		object-fit: cover;
		border-radius: 16px;
	}

	.gallery-wrap .gallery-img img {
        border-radius: 10px;
    }

	.gallery-row .gallery-col p {
		font-size: 16px;
		line-height: 1;
	}
	/*-_-_Photo-Gallery_CSS_End_-_-*/
	
	/*-_-_Detail-Page_CSS_Start_-_-*/
	.park-detail-img-wrap .park-detail-img-content {
		padding: 20px 0 58px;
	}

	.park-detail-img-content .local-newspapers-breadcrumb {
		margin-bottom: 18px;
	}

	.park-detail-img-inner {
		margin-bottom: 26px;
	}

	.park-detail-img-inner h1 {
		font-size: 41px;
	}

	.gallery-wrap .gallery-img .show-more-photos {
		border-radius: 10px;
		font-size: 15px;
	}

	.park-row {
		margin-top: 26px;
	}

	.park-row .park-inner, 
	.park-row .park-map {
		width: 100%;
	}

	.park-row .park-map {
		margin-top: 24px;
	}

	.park-row .park-inner .park-inner-btns {
		display: none;
	}

	.park-row .park-map .park-inner-btns {
		display: flex;
	}

	.park-map #map {
		height: 370px;
	}

	.park-inner-btns a {
		width: 100%;
	}

	.park-inner .feature-list {
		margin-bottom: 26px;
	}

	.park-inner > h3 {
		margin: 14px 0;
	}

	.park-inner-btns {
		margin-top: 26px;
	}

	.offer-list-wrap {
		padding: 58px 0;
	}

	.holiday-form-wrap .banner-form .form-group {
		flex: unset;
	}

	.offers-wrap.park-list-wrap .park-card {
		width: calc(50% - 8px);
	}
	/*-_-_Detail-Page_CSS_End_-_-*/
}

@media only screen and (max-width: 767.5px) {
	h1 {
		font-size: 40px;
		/* 72px 40px */
	}

	h2 {
		font-size: 26px;
		/* 36px 26px */
	}

	h3 {
		font-size: 22px;
		/* 28px 22px */
	}

	h4 {
		font-size: 18px;
		/* 24px 18px */
	}

	.general-btn {
		font-size: 15px;
		line-height: 24px;
		padding: 15px 20px;
	}

	header {
		z-index: 2;
	}

	header .navbar-collapse {
		position: absolute;
		left: 0;
		top: 100%;
		width: 100%;
		height: 0;
		overflow: hidden;
		transition: height 0.35s ease;
		background: #fff;
		z-index: 5;
		display: flex;
		flex-direction: column;
		justify-content: space-between;
	}

	header .navbar-collapse.show {
		height: calc(100dvh - 60px);
	}

	header .navbar-nav,
	header .nav-contact {
		margin: 0 auto;
		max-width: 540px;
		width: 100%;
	}

	header .navbar-nav {
		margin: auto;
	}

	header .navbar-nav>li {
		width: 100%;
	}

	header .navbar-nav>li>a {
		width: 100%;
		font-size: 20px;
		line-height: 22px;
		padding: 10px 16px !important;
	}

	header .nav-contact {
		padding: 32px 16px;
	}

	header .nav-contact .footer-contact {
		display: block;
		margin-bottom: 24px;
	}

	header .nav-contact .footer-contact li a {
		opacity: 0.7;
	}

	header .nav-contact .footer-contact li a:hover {
		opacity: 1;
	}

	header .nav-contact .social-links {
		display: flex;
		margin-bottom: 24px;
	}

	header .nav-contact .feedback-btn {
		width: 100%;
		font-weight: 400;
		text-align: center;
		padding: 16.7px 20px;
		border-radius: 30px;
	}

	.banner {
        padding: 120px 0 16px;
        margin-bottom: 0;
        background-image: url(/images/banner-bg-768_new.webp);
    }

	.banner .banner-content .banner-inner {
		text-align: left;
		margin-bottom: 16px;
	}

	.banner-form {
		border-radius: 16px;
		padding: 8px 16px 12px;
		bottom: unset;
	}
	
	.banner-form .form-row {
		margin: 0;
	}

	.banner-form .form-group {
		padding: 8px 0;
		width: 100%;
		border-right: 0;    
		border-bottom: 1px solid #DEE5EB;
	}

	.label-wrap label {
		font-size: 12px;
		line-height: 15px; 
		position: absolute;
		left: 0;
		top: 0;
		padding-right: 48px;
	}

	.banner-form input[type="text"], 
	.banner-form .flatpickr-alt-input, 
	.banner-form select, 
	#guests-field .select-styled {
		font-size: 15px;
		line-height: 22px;
		font-weight: 500;
		display: block;
		width: 100%;
		height: 42px;
		padding: 18px 48px 4px 0;
	}

	.label-wrap select {
		background-size: 42px;
	}

	.select {
		height: 42px;
		min-height: 42px;
	}

	.calender-wrap:after,
	.select-styled:after {
		width: 42px;
		height: 42px;
	}

	#dates-overlay.open {
		position: fixed;
		left: 0;
		top: 0;
		right: 0;
		bottom: 0;
		background: rgba(0, 0, 0, .5);
		z-index: 50;
		display: flex;
		align-items: center;
		justify-content: center;
	}

	#dates-sheet.open {
		left: 50%;
        top: 50%;
        transform: translate(-50%, -50%);
        position: fixed;
        z-index: 51;
        width: 100%;
        max-width: 343px;
		display: block;
	}

	#guests-dropdown {}

	#guests-dropdown.open {
		display: block;
		transform: translate(-50%,-50%);
		left: 50% !important;
		top: 50% !important;
		position: fixed;
	}

	#guests-overlay.open {
		opacity: 1;
		visibility: visible;
	}

	#guests-dropdown .sheet-header {
		display: flex;
		align-items: center;
		justify-content: space-between;
		padding: 12px 10px 12px 20px;
		background: #F6F7FA;
	}

	#guests-dropdown .sheet-title {
		font-size: 22px;
		line-height: 1.3;
	}

	#guests-dropdown .sheet-close {
	}

	.total-reviews {
		font-size: 15px;
	}

	.total-reviews span {
		font-size: 12px;
		padding: 6px 8px 6px 6px;
		border-radius: 6px;
	}
	
	.local-newspapers-breadcrumb li, 
	.local-newspapers-breadcrumb li a {
		font-size: 12px;
		line-height: 18px;
	}

	.local-newspapers-wrap {
		padding: 52px 0;
	}

	.local-newspapers-wrap>div>h2 {
		max-width: 100%;
		margin-bottom: 32px;
	}

	.news-feature-content {
		display: flex;
		flex-direction: column-reverse;
		gap: 32px;
		border-radius: 0;
		overflow: unset;
	}

	.news-feature-content::after {
		display: none;
	}

	.news-feature-content>img {
		height: auto;
		aspect-ratio: 375/400;
	}

	.news-feature-list {
		gap: 8px;
		position: static;
		align-items: unset;
		padding: 0;
	}

	.news-feature-card {
		flex: unset;
		padding: 12px;
		border-radius: 16px;
		width: calc(50% - 4px);
		background: #F6F7FA;
		display: block;
	}

	.news-feature-card .nf-card-img {
		width: 48px;
		height: 48px;
		background: #fff;
	}

	.news-feature-card .nf-card-inner {
		width: 100%;
		padding: 12px 0 0;
	}

	.news-feature-card .nf-card-inner p {
		font-size: 17px;
		line-height: 26px;
		letter-spacing: 0;
	}

	.local-newspapers-content {
		padding-top: 32px;
	}

	.local-newspapers-content h2 {
		margin-bottom: 28px;
	}

	.local-newspapers-content .local-newspapers-list {
		gap: 12px;
	}

	.local-newspapers-list li {
		padding: 11.5px 10px;
		border-radius: 16px;
		width: 160px;
	}

	.local-newspapers-list li img {
		aspect-ratio: 140/77;
	}

	.holiday-parks-wrap {
		padding: 52px 0;
	}

	.parks-tab-buttons {
		width: 100%;
		padding: 4px;
		gap: 0;
	}

	.parks-tab-buttons .tab-btn {
		font-size: 15px;
		line-height: 20px;
		width: 25%;
		padding: 12px 10px;
	}

	.parks-tab-buttons .tab-btn svg {
		display: none;
	}

	.parks-tab-content .tab-panel {
		padding: 0;
	}

	.parks-tab-content .tab-panel>img {
		aspect-ratio: 343/300;
		position: static;
		border-radius: 16px;
		margin-bottom: 16px;
	}

	.parks-tab-inner {
		border-radius: 0;
		padding: 0;
		max-width: 100%;
	}

	.parks-tab-inner h3 {
		margin-bottom: 16px;
	}

	.parks-tab-inner a {
		width: 100%;
	}

	.popular-themes-wrap .popular-themes-content {
		padding: 52px 0;
	}

	.popular-themes-wrap .popular-themes-content h2 {
		margin-bottom: 28px;
	}

	.popular-themes-card img {
		aspect-ratio: 320 / 280;
		border-radius: 16px;
	}

	.popular-themes-card .popular-themes-inner {
		width: calc(100% - 16px);
		bottom: 8px;
		left: 8px;
		border-radius: 12px;
	}

	.dream-trip-wrap,
	.customer-reviews-wrap,
	.popular-wrap .popular-row,
	.faqs-wrap .faqs-row {
		padding: 52px 0;
	}

	.dream-trip-wrap .dream-trip-content {
		padding-top: 52px;
	}

	.dream-trip-wrap .dream-trip-content {
		padding-top: 58px;
	}

	.dream-trip-content img {
		aspect-ratio: 343 / 277;
		border-radius: 16px;
	}

	.dream-trip-content .dream-trip-card {
		border-radius: 16px;
		padding: 24px 16px;
		margin-top: -24px;
	}

	.dream-trip-content .dream-trip-card h2 {
		margin-bottom: 12px;
	}

	.dream-trip-content .dream-trip-card p {
		margin-bottom: 16px;
	}

	.dream-trip-content .dream-trip-card .general-btn {
		width: 100%;
	}

	.popular-wrap .popular-content h2,
	.faqs-wrap .faqs-content h2 {
		margin-bottom: 8px;
	}

	.faqs-wrap .faqs-content p {
		font-size: 17px;
	}

	.faqs-accordion .accordion-item {
		padding: 8px 8px 8px 16px;
		border-radius: 16px;
	}

	.faqs-accordion .accordion-button {
		font-size: 18px;
	}

	.faqs-accordion .accordion-body p {
		font-size: 15px;
	}

	.popular-themes-wrap .popular-themes-card p {
		min-height: 60px;
		font-size: 16px;
	}

	.footer-row {
		margin: 0 -12px;
	}

	.footer-row .footer-col {
		padding: 0 12px;
	}

	footer .footer-content {
		padding: 52px 0 48px;
	}

	.footer-content .footer-main-row {
		row-gap: 48px;
	}

	.footer-row {
		row-gap: 40px;
	}

	.footer-links h5 {
		letter-spacing: -0.1px;
	}

	.footer-links ul li,
	.footer-links ul li a {
		font-size: 15px;
	}

	.copyright-wrap p {
		text-align: left;
	}

	/*-_-_Listing-Page_CSS_Start_-_-*/
	.listing-banner.banner .local-newspapers-breadcrumb {
        justify-content: center;
    } 

	
	.listing-banner.banner .banner-content {
		padding: 81px 0 32px;
	}

	.listing-banner.banner .banner-content .banner-inner {
		text-align: center;
		margin: 0;
	}

	.listing-banner.banner .banner-content h1 {
		font-size: 40px;
	}

	.park-sidebar-row .park-sidebar-col {
		width: 100%;
		position: fixed;
		left: 0;
		top: 0;
		width: 100%;
		height: 100dvh;
		z-index: 50;
		background: rgba(0, 0, 0, .5);       
		display: none;
        align-items: flex-end;
	}

	.park-sidebar {
		padding: 8px;
		border-radius: 24px 24px 0 0;
        max-height: calc(100dvh - 39px);
		overflow-y: auto;
		width: 100%;
	}

	.park-sidebar .park-sidebar-inner:last-child {
		padding-bottom: 16px;
	}

	.park-sidebar .park-sidebar-inner {
		padding: 0 12px 20px;
		border-bottom: 1px solid #DEE5EB;
		margin-bottom: 20px;
	}

	.park-sidebar-title {
		display: flex;
	}

	.checkbox-list .form-check .form-check-label {
        font-size: 15px;
    	padding-left: 32px;
	}

	.checkbox-list li>span {
        font-size: 15px;
    }

	.checkbox-list .form-check .form-check-label::before {
		width: 24px;
		height: 24px;
		border-radius: 8px;
		top: 0;
	}

	.park-sidebar-row .park-listing-col {
		width: 100%;
		padding-left: 0;
	}

	.park-card {
    	width: calc(50% - 6px);
	}

	.price-card {
		gap: 16px;
	}

	.price-card > div {
		flex: unset;
	}

	.price-card {
        gap: 10px;
        flex-direction: row;
        align-items: flex-end;
    }

	.sticky-filter-bar {
		display: flex;
	}

	.park-list-empty {
		padding: 118px 0 80px;
	}

	.park-list-empty .general-btn {
		padding: 15.2px 32px;
	}
	/*-_-_Listing-Page_CSS_End_-_-*/
	
	/*-_-_Detail-Page_CSS_Start_-_-*/
	.park-detail-img-wrap .park-detail-img-content {
		padding: 16px 0 52px;
	}

	.park-detail-img-content .local-newspapers-breadcrumb {
		margin-bottom: 32px;
	}

	.park-detail-img-inner {
		align-items: flex-start;
        flex-direction: column-reverse;
		margin-bottom: 24px;
	}

	.park-detail-img-inner h1 {
		font-size: 36px;
	}

	.gallery-wrap {
		grid-template-areas:
		'image1 image1'
        'image2 image2'
        'image3 image4';
		grid-template-columns: repeat(2, 1fr);
		row-gap: 8px;
		column-gap: 8px;
	}

	.gallery-wrap .gallery-img img {
        border-radius: 8px;
		width: 100%;
		aspect-ratio: 170 / 120;
	}

	.gallery-wrap .gallery-img:first-child img {
		aspect-ratio: 343 / 300;
	}

	.gallery-wrap .gallery-img:nth-child(2) img {
		aspect-ratio: 300 / 115;
	}

	.gallery-wrap .gallery-img .show-more-photos {
		border-radius: 8px;
	}

	.park-row {
		margin-top: 24px;
	}

	.park-inner .feature-list {
		margin-bottom: 24px;
	}

	.park-inner > h3 {
		margin: 12px 0;
	}

	.park-inner-btns {
		margin-top: 24px;
	}

	.offer-list-wrap {
		padding: 52px 0;
	}

	.offers-wrap.park-list-wrap .park-card {
		width: 100%;
	}

	.park-card .badge {
		font-size: 10px;
		line-height: 15px;
		font-weight: 400;
	}

	.park-img-inner .per-person,
	.price-card .price-card__label, 
	.price-card .price-card__fees {
		font-size: 12px;
	}
	/*-_-_Detail-Page_CSS_End_-_-*/
}

@media only screen and (max-width: 575.5px) {

	header .navbar-nav,
	header .nav-contact {
		max-width: 100%;
	}

	.local-newspapers-breadcrumb {
		justify-content: flex-start;
	}

	.local-newspapers-wrap>div>h2,
	.local-newspapers-content h2 {
		text-align: left;
	}

	.news-feature-content>img {
		width: calc(100% + 24px);
		margin: 0 -12px;
	}

	.local-newspapers-content .local-newspapers-list {
		width: calc(100% + 12px);
		overflow-x: auto;
		flex-wrap: nowrap;
		padding-right: 12px;
		justify-content: unset;
	}

	.local-newspapers-list li {
		min-width: 160px;
	}

	.popular-wrap .popular-content {
		max-width: 240px;
	}

	.popular-wrap .popular-content p {
		margin-bottom: 0;
	}

	.popular-themes-row {
		margin: 0 -6px;
		row-gap: 12px;
	}

	.popular-themes-wrap .popular-themes-content h2 {
		max-width: 240px;
		text-align: left;
	}

	.popular-themes-row {
		width: calc(100% + 12px);
		flex-wrap: nowrap;
		overflow-x: auto;
		margin: 0;
	}

	.popular-themes-row .popular-themes-col {
		width: auto;
		min-width: 320px;
		padding: 0;
		margin-right: 12px;
	}

	.popular-themes-wrap .popular-themes-card p {
		min-height: 45px;
		font-size: 18px;
	}

	
	/*-_-_Listing-Page_CSS_Start_-_-*/
	.park-card {
    	width: 100%;
	}
	/*-_-_Listing-Page_CSS_End_-_-*/

	/*-_-_Photo-Gallery_CSS_Start_-_-*/
	.gallery-modal .tab-content {
		max-height: calc(100vh - 200px);
	}
	/*-_-_Photo-Gallery_CSS_End_-_-*/
}

@media only screen and (max-width: 374.5px) {
	h1 {
		font-size: 34px;
	}

	.parks-tab-buttons .tab-btn {
		font-size: 13px;
	}

	.popular-themes-row .popular-themes-col {
        min-width: 280px;
    }

	#dates-sheet.open {
        max-width: 300px;
	}

	.flatpickr-calendar {
		padding: 16px !important;
	}

	.flatpickr-calendar .flatpickr-day {
		height: 38px;
		line-height: 38px;
		font-size: 14px;
	}

	#guests-dropdown {
		width: 300px !important;
	}

	#guests-dropdown .sheet-body {
		padding: 24px 16px;
		gap: 20px;
	}

	#guests-dropdown .counter button {
		width: 40px;
		height: 40px;
		border-radius: 10px;
	}

	#guests-dropdown .counter input { 
		width: 50px;
		height: 40px;
	}
	/*-_-_Listing-Page_CSS_Start_-_-*/
	.listing-banner.banner .banner-content h1 {
		font-size: 32px;
	}

	.park-map-inner .park-card { 
		max-width: 280px;
        bottom: 16px;
        right: 10px;
	}
	/*-_-_Listing-Page_CSS_End_-_-*/
}