* {
	font-family: "Barlow", sans-serif;
	font-weight: 400;
	color: #212121;
	box-sizing: border-box;
}

body {
	background: linear-gradient(20deg, #90C700 -20%, #259535 120%);
	min-height: 100vh;
	width: 100%;
}
.container {
	display: grid;
	grid-template-columns: 1fr;
	grid-gap: 32px;
	margin: 0 auto;
	max-width: 676px;
	width: 100%;
	box-sizing: border-box;
}
.steps, .summary  {
	background: #fff;
	padding: 24px;
	border-radius: 12px;
	width: 100%;
	box-sizing: border-box;
	margin-bottom: 32px;
}
.hidden {
	font-size: 0;
	height: 0;
	overflow: hidden;
}

fieldset {
	padding: 0;
	margin: 0;
	border: none;
	outline: none;
}
.btn {
	border: none;
	color: #fff;
	background: linear-gradient(20deg, #90C700 -20%, #259535 120%);
	padding: 10px 16px;
	border-radius: 24px;
	display: inline-block;
	cursor: pointer;
}
.btn.disabled {
	opacity: .5;
	pointer-events: none;
}
.btn#button-prev {
	background: linear-gradient(20deg, #FFF33B -30%, #FDC70C 15%, #F3903F 50%, #ED683C 75%, #ED683C 110%);
}
header {
	display: flex;
	justify-content: space-between;
	margin-bottom: 32px;
}
.barlow-regular {
	font-family: "Barlow", sans-serif;
	font-weight: 400;
	font-style: normal;
}
.barlow-semibold {
	font-family: "Barlow", sans-serif;
	font-weight: 600;
	font-style: normal;
}
.barlow-bold {
	font-family: "Barlow", sans-serif;
	font-weight: 700;
	font-style: normal;
}
form label {
	display: block;
}
form input {
	display: block;
}
#range-error {
	display: none;
}
header img {
	width: 120px;
}
.steps .step:not(.active) {
	display: none;
}
#steps-button-container {
	padding-top: 24px;
	width: 100%;
	display: flex;
	justify-content: space-between;
}
.hide {
	visibility: hidden;
}
.residence-wrapper {
	display: grid;
	grid-template-columns: 1fr 1fr;
	grid-gap: 12px;
}
.residence {
/* 	border: 2px solid #f2f2f2; */
	box-shadow: 0 7px 14px 0 rgba(65, 69, 88, .1), 0 3px 6px 0 rgba(0, 0, 0, .07);
	border-radius: 6px;
	display: flex;
	justify-content: center;
	align-content: center;
	aspect-ratio: 2/1;
	flex-wrap: wrap;
	cursor: pointer;
}
.residence.active {
	background: linear-gradient(20deg, #90C700 -20%, #259535 120%);
}
.residence.active span {
	color: #fff;
}
.step label, .stalling-form label {
	margin-bottom: 4px;
}
.step input {
	font-size: 16px;
  font-size: max(16px, 1em);
  font-family: inherit;
  padding: 0.25em 0.5em;
  background-color: #fff;
  border: 2px solid #f2f2f2;
  border-radius: 4px;
  transition: 180ms box-shadow ease-in-out;
  margin-bottom: 12px;
  width: 100%;
}
.stalling-form input {
	font-size: 16px;
  font-size: max(16px, 1em);
  font-family: inherit;
  padding: 0.25em 0.5em;
  background-color: #fff;
  border: 2px solid #f2f2f2;
  border-radius: 4px;
  transition: 180ms box-shadow ease-in-out;
  margin-bottom: 12px;
  width: 100%;
}
textarea {
	font-size: 16px;
  font-size: max(16px, 1em);
  font-family: inherit;
  padding: 0.25em 0.5em;
  background-color: #fff;
  border: 2px solid #f2f2f2;
  border-radius: 4px;
  transition: 180ms box-shadow ease-in-out;
  margin-bottom: 12px;
  width: 100%;
}
.step .row {
	display: grid;
	grid-template-columns: 1fr 1fr;
	grid-gap: 32px;
}
.form-control {
	margin-top: 24px;
  font-family: system-ui, sans-serif;
  line-height: 1.1;
  display: grid;
  grid-template-columns: 1em auto;
  gap: 0.5em;
}
#book-button {
	display: none
}
#datepicker {
	font-size: 0;
	height: 0;
	color: #fff;
}
.steps, ,summary {
	width: 100%;
}
.summary {
	max-width: 480px;
	margin: 0 auto;
	margin-bottom: 32px;
}
.summary-step {
	display: flex;
	flex-wrap: wrap;
}
.summary-row {
	width: 100%;
	display: flex;
	flex-wrap: wrap;
}
.summary-column {
	width: 50%;
}
.summary-step h2 {
	font-size: 16px;
}
.summary-title {
	width: 50%;
	opacity: 0.35;
}
.summary-data {
	width: 50%;
	text-align: right;
}
.summary-header {
	display: flex;
	justify-content: space-between;
	width: 100%;
	border-bottom: 1px dashed rgba(0,0,0,.2);
	align-content: center;
	margin-bottom: 24px;
}
.summary-header h1 {
	margin: 0;
	padding: 0 0 24px 0;
}
.summary-booking-number {
	text-align: right;
	opacity: 0.35;
	margin: 0;
	padding: 24px 0;
	font-size: 16px;
	line-height: 16px;
	display: flex;
	align-self: center;
}

.message {
	border-radius: 12px;
	color: #fff;
	padding: 24px;
	max-width: 480px;
	width: 100%;
	margin: 0 auto;
}

.message h3 {
	color: #fff;
}
.message.succes {
	background: linear-gradient(20deg, #90C700 -20%, #259535 120%);
	border: 2px solid #fff;
}

.message.warning {
	background: linear-gradient(20deg, #FFF33B -30%, #FDC70C 15%, #F3903F 100%);
}

.message.error {
	background: linear-gradient(20deg, #F3903F 0%, #ED683C 50%, #ED683C 110%);
}

/* Hide show in the end */
body.succes .summary {
	display: block;
}
body.succes .steps {
	display: none;
}
body:not(.succes) .summary {
	display: none;
}

.easepick-wrapper, #datepicker {
	width: 100% !important;
	display: block;
}

.booking-header {
	background: #fff;
}

.booking-header .wrapper {
	max-width: 1440px;
	padding: 24px;
	width: 100%;
	margin: 0 auto;
	display: flex;
	justify-content: space-between;
	align-content: center;
	align-items: center;
}

#back-to-site {
	border: none;
    background: linear-gradient(20deg, #FFF33B -30%, #FDC70C 15%, #F3903F 50%, #ED683C 75%, #ED683C 110%);
    color: #fff;
    padding: 10px 16px;
    border-radius: 24px;
    display: inline-block;
    width: auto;
    text-decoration: none;
}

.summary-step ul {
	list-style: none;
	padding: 0;
	margin: 0;
	margin-top: 24px;
	width: 100%;
}

.summary-step ul li {
	margin-bottom: 12px;
}
.steps-header h1 {
	margin-bottom: 12px;
	margin-top: 0;
}
.summary-step {
	width: 100% !important;
}

.align-right {
	float: right;
}

fieldset.step h3 {
	margin-top: 0;
	margin-bottom: 24px;
}

.stallinig-form h3 {
	margin-top: 0;
	margin-bottom: 24px;
}

.mobile {
	display: none;
}

/* Responsive */
@media only screen and (max-width: 768px) {
  .container {
    padding: 0 12px;
  }
  .btn {
	  font-size: 16px;
  }
  #markdal-reservation-form > fieldset.step:nth-child(2) > h3 {
	  margin-bottom: 0;
  }
  .mobile {
	  display: block;
	  font-size: 14px;
	  line-height: 20px;
	  margin-bottom: 24px
	  }
	.step .row {
		grid-template-columns: 1fr;
		grid-gap: 0;
	}
}


/* show hand cursor on selectable days */
.day:not(.not-available):not(.locked) {
  cursor: pointer;
}

/* optional: clearer cursor on blocked days */
.day.not-available, .day.locked {
  cursor: not-allowed;
}

.lodge-cards{display:grid;grid-template-columns:repeat(1,minmax(0,1fr));gap:16px}
.lodge-card{border:1px solid #ddd;border-radius:10px;overflow:hidden;cursor:pointer}
.lodge-card img{width:100%;object-fit:contain; display:block}
.lodge-card.active{border-color:#259535;box-shadow:0 0 0 2px #259535 inset}
.lodge-card-text{padding:12px}

.image-slider {
  position: relative;
  overflow: hidden;
}

.slides {
  display: flex;
  transition: transform 0.4s ease-in-out;
}


.image-slider img {
  flex: 0 0 100%; /* each slide = 100% of slider */
  width: 100%;
  display: block;
  aspect-ratio: 640 / 480;
  padding: 24px;
  background-color: #f2f2f2;
}


.prev,
.next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0,0,0,0.5);
  color: #fff;
  border: none;
  padding: 10px 14px;
  cursor: pointer;
  font-size: 18px;
}

.prev { left: 10px; }
.next { right: 10px; }

