@charset "UTF-8";
/*

	Media Query mixin

	See https://github.com/sass-mq/sass-mq/ for original full version.

	@example scss
	 .element {
	   @include mq($from: mobile) {
		 color: red;
	   }

	   @include mq($to: tablet) {
		 color: blue;
	   }

	   @include mq(mobile, tablet) {
		 color: green;
	   }

	   @include mq($from: tablet, $and: '(orientation: landscape)') {
		 color: teal;
	   }

	   @include mq(em(950px)) {
		 color: hotpink;
	   }

	   @include mq(em(950px), $media-feature: height) {
		 color: hotpink;
	   }

	   @include mq(tablet, $media-type: screen) {
		 color: hotpink;
	   }

	   // Advanced use:
	   $custom-breakpoints: (L: 900px, XL: 1200px);
	   @include mq(L, $bp: $custom-breakpoints) {
		 color: hotpink;
	   }
	 }

*/
/*

	Margin / Padding Quick Resets

	example: top & bottom margin set to $spacing-unit
	.element {
		@include push--ends;
	}

	example: left & right padding set to $spacing-unit--small
	.element {
		@include soft--sides($spacing-unit--small);
	}

*/
/*

	Helper mixins

*/
/*

	Form input placeholder text

	example:

	input,
	textarea {
		@include input-placeholder {
			color: $grey;
		}
	}

*/
/*

	Retina images

	example:

	.element {
		@include retina {
			background-image: url(../img/background@2x.png);
		}
	}

*/
/*

	Content margins

	fore removing first/last child margins

	example: default
	.element {
		@include content-margins;
	}

	output:
	.element > *:first-child {
		margin-top: 0;
	}
	.element > *:last-child {
		margin-bottom: 0;
	}

	example: empty selector
	.element {
		@include content-margins('false');
	}

	output:
	.element:first-child {
		margin-top: 0;
	}
	.element:last-child {
		margin-bottom: 0;
	}

*/
/*

	CSS Triangle

	used for creating CSS only triangles

	example:
	.element {

		&::before {
			@include css-triangle(blue, down);
		}
	}

*/
/*

	Hide text

	example:

	.element {
		@include hide-text;
	}

*/
/*

	Responsive ratio

	Used for creating scalable elements that maintain the same ratio

	example:
	.element {
		@include responsive-ratio(400, 300);
	}

*/
/*

	Icon

	For using fontastic icons in pseudo elements

*/
/*

	Colours

	background, colour, etc. match up with colour map in _variables.scss

	modify to suit per project

*/
/*

	Fluid Property

	http://www.adrenalinmedia.com.au/the-agency/insights/this-changes-everything-css-fluid-properties.aspx

	HTML:

	<h1 class="element">
		<span>Text to replace</span>
	</h1>

	example:
	h1 {
		@include fp(font-size, 50, 100); // 50px at 320, 100px at 1920;
	}

	output:
	h1 {
		font-size: calc(3.125vw + 40px); //This is the magic!
	}

	@media (max-width:320px){ //Clips the start to the min value
		font-size:50px;
	}

	@media (min-width:1920px){ //Clips the end to the max value
		font-size:100px;
	}


*/
/*

	Misc

*/
/*

	Font face

	example:

	@include font-face('Clarendon', 'clarendon-webfont');
	@include font-face('Clarendon', 'clarendon-webfont', $w--bold, italic);

*/
/*

	REMs

*/
/*

	EMs calculator

*/
/*

	SVG inliner

*/
:root {
  --booking-radius: 12px;
  --booking-radius-lg: 16px;
  --booking-radius-box: 24px;
  --booking-border: var(--lightgray-300);
  --booking-muted: var(--lightgray-200);
  --booking-shadow: 0 4px 40px 0 rgba(0, 0, 0, .08);
  --booking-warning: #B54708;
  --booking-danger: #B42318;
}

.booking-widget {
  position: relative;
}
.booking-widget__head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 4px;
}
.booking-widget__head h3 {
  display: flex;
  align-items: baseline;
  gap: 8px;
  flex-wrap: wrap;
  margin: 0;
}
.booking-widget__was {
  font-size: 1rem;
  font-weight: 500;
  color: var(--booking-muted);
  text-decoration: line-through;
}
.booking-widget__unit {
  font-size: 0.8125rem;
  font-weight: 400;
  color: var(--gray);
}
.booking-widget__note {
  font-size: 0.75rem;
  color: var(--booking-muted);
  margin: 0 0 1rem;
}
.booking-widget .btn {
  width: 100%;
  min-width: 0;
}
.booking-widget__cta-note {
  font-size: 0.75rem;
  color: var(--booking-muted);
  margin: 0.5rem 0 0;
  text-align: center;
}

.booking-fields {
  position: relative;
  margin-bottom: 1rem;
  border: 1px solid var(--booking-border);
  border-radius: var(--booking-radius);
  overflow: visible;
}

.booking-dates {
  display: grid;
  grid-template-columns: 1fr 1fr;
}
.booking-dates__field {
  appearance: none;
  background: var(--white);
  border: 0;
  text-align: start;
  padding: 10px 14px;
  cursor: pointer;
  border-start-start-radius: var(--booking-radius);
}
.booking-dates__field:last-child {
  border-inline-start: 1px solid var(--booking-border);
  border-start-start-radius: 0;
  border-start-end-radius: var(--booking-radius);
}
.booking-dates__field label {
  display: block;
  font-size: 0.6875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--textcolor);
  pointer-events: none;
  margin-bottom: 2px;
}
.booking-dates__field output {
  display: block;
  font-size: 0.875rem;
  color: var(--gray);
  pointer-events: none;
}
.booking-dates__field.is-active {
  outline: 2px solid var(--primary);
  outline-offset: -2px;
  border-radius: var(--booking-radius);
  position: relative;
  z-index: 1;
}

.booking-guests {
  position: relative;
  border-top: 1px solid var(--booking-border);
}
.booking-guests__toggle {
  appearance: none;
  background: var(--white);
  border: 0;
  width: 100%;
  text-align: start;
  padding: 10px 14px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-end-start-radius: var(--booking-radius);
  border-end-end-radius: var(--booking-radius);
}
.booking-guests__toggle label {
  display: block;
  font-size: 0.6875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--textcolor);
  pointer-events: none;
  margin-bottom: 2px;
}
.booking-guests__toggle output {
  display: block;
  font-size: 0.875rem;
  color: var(--gray);
  pointer-events: none;
}
.booking-guests__toggle svg {
  color: var(--booking-muted);
  transition: transform 0.2s ease;
}
.booking-guests__toggle[aria-expanded=true] svg {
  transform: rotate(180deg);
}
.booking-guests__panel {
  position: absolute;
  top: calc(100% + 8px);
  inset-inline: -1px;
  background: var(--white);
  border: 1px solid var(--booking-border);
  border-radius: var(--booking-radius-lg);
  box-shadow: var(--booking-shadow);
  padding: 1.125rem;
  z-index: 55;
}
.booking-guests__panel[hidden] {
  display: none;
}
.booking-guests__row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 8px 0;
}
.booking-guests__row + .booking-guests__row {
  border-top: 1px solid var(--lightgray);
}
.booking-guests__label strong {
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--textcolor);
}
.booking-guests__label span {
  font-size: 0.75rem;
  color: var(--booking-muted);
}

.booking-stepper {
  display: flex;
  align-items: center;
  gap: 12px;
}
.booking-stepper button {
  appearance: none;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 1px solid var(--booking-border);
  background: var(--white);
  color: var(--textcolor);
  font-size: 1.125rem;
  line-height: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
.booking-stepper button:hover:not(:disabled) {
  border-color: var(--primary);
  color: var(--primary);
}
.booking-stepper button:disabled {
  opacity: 0.35;
  cursor: not-allowed;
}
.booking-stepper output {
  min-width: 20px;
  text-align: center;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--textcolor);
}

.booking-popover {
  position: absolute;
  top: calc(100% + 8px);
  inset-inline-end: -1px;
  width: min(660px, 100vw - 48px);
  background: var(--white);
  border: 1px solid var(--booking-border);
  border-radius: var(--booking-radius-box);
  box-shadow: var(--booking-shadow);
  padding: 1.5rem;
  z-index: 60;
}
.booking-popover[hidden] {
  display: none;
}
.booking-popover__header {
  display: none;
}
.booking-popover__toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 0.75rem;
}
.booking-popover__toolbar strong {
  font-size: 0.9375rem;
  font-weight: 700;
  color: var(--textcolor);
}
.booking-popover__nav {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid var(--booking-border);
  background: var(--white);
  color: var(--primary);
  cursor: pointer;
}
.booking-popover__nav:hover:not(:disabled) {
  background: var(--secondary);
  border-color: var(--primary);
}
.booking-popover__nav:disabled {
  opacity: 0.35;
  cursor: not-allowed;
}
[dir=rtl] .booking-popover__nav svg {
  transform: scaleX(-1);
}
.booking-popover__months {
  display: flex;
  gap: 1.5rem;
}
.booking-popover__months > div {
  flex: 1 1 0;
  min-width: 0;
}
.booking-popover__month-label {
  text-align: center;
  font-size: 0.9375rem;
  font-weight: 700;
  color: var(--textcolor);
  margin-bottom: 0.625rem;
}
.booking-popover__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: 0.875rem;
  padding-top: 0.875rem;
  border-top: 1px solid var(--booking-border);
}
.booking-popover__message {
  font-size: 0.8125rem;
  color: var(--booking-warning);
  min-height: 1.2em;
  flex: 1;
}
.booking-popover__message:empty::before {
  content: " ";
}
.booking-popover__clear {
  appearance: none;
  background: none;
  border: 0;
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--primary);
  text-decoration: underline;
  cursor: pointer;
  white-space: nowrap;
}
.booking-popover__clear:hover {
  text-decoration: none;
}
.booking-popover__done {
  display: none;
}

.booking-calendar__weekdays {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 2px;
  margin-bottom: 4px;
}
.booking-calendar__weekday {
  text-align: center;
  font-size: 0.6875rem;
  font-weight: 600;
  color: var(--booking-muted);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  padding-bottom: 4px;
}
.booking-calendar__grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 2px;
}

.booking-day {
  position: relative;
  aspect-ratio: 1;
  min-height: 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1px;
  border: 1px solid transparent;
  border-radius: var(--booking-radius);
  background: var(--white);
  cursor: pointer;
  font-size: 0.8125rem;
  color: var(--textcolor);
  padding: 2px;
}
.booking-day__number {
  font-weight: 500;
  line-height: 1.1;
}
.booking-day__price {
  font-size: 0.5625rem;
  line-height: 1;
  color: var(--booking-muted);
  white-space: nowrap;
  max-width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
}
.booking-day__qty {
  font-size: 0.5rem;
  line-height: 1;
  color: var(--primary);
  white-space: nowrap;
}
.booking-day:hover:not(:disabled):not(.booking-day--unavailable):not(.booking-day--disabled) {
  border-color: var(--primary);
}
.booking-day--outside {
  visibility: hidden;
}
.booking-day--disabled {
  cursor: default;
  color: var(--lightgray-400);
}
.booking-day--disabled .booking-day__price,
.booking-day--disabled .booking-day__qty {
  display: none;
}
.booking-day--unavailable {
  cursor: default;
  color: var(--lightgray-400);
  background: var(--lightgray);
}
.booking-day--unavailable .booking-day__price,
.booking-day--unavailable .booking-day__qty {
  display: none;
}
.booking-day--unavailable::after {
  content: "";
  position: absolute;
  inset-inline: 26%;
  top: 50%;
  height: 1px;
  background: var(--lightgray-400);
}
.booking-day--blocked {
  background: repeating-linear-gradient(45deg, var(--lightgray), var(--lightgray) 3px, var(--white) 3px, var(--white) 7px);
}
.booking-day--preview {
  background: var(--lightgray);
  border-radius: 0;
}
.booking-day--in-range {
  background: var(--secondary);
  border-radius: 0;
}
.booking-day--selected {
  background: var(--primary);
  border-color: var(--primary);
  color: var(--white);
}
.booking-day--selected .booking-day__price {
  color: rgba(255, 255, 255, 0.75);
}
.booking-day--range-start {
  border-start-end-radius: 0;
  border-end-end-radius: 0;
}
.booking-day--range-end {
  border-start-start-radius: 0;
  border-end-start-radius: 0;
}
.booking-day--today:not(.booking-day--selected)::before {
  content: "";
  position: absolute;
  bottom: 4px;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--primary);
}

@media (max-width: 991px) {
  body.booking-sheet-open .mobileMenu {
    display: none !important;
  }
  .booking-popover {
    position: fixed;
    inset: 0;
    width: auto;
    z-index: 1000;
    border: 0;
    border-radius: 0;
    box-shadow: none;
    padding: 0;
    display: flex;
    flex-direction: column;
  }
  .booking-popover[hidden] {
    display: none;
  }
  .booking-popover__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem;
    border-bottom: 1px solid var(--booking-border);
  }
  .booking-popover__header strong {
    font-size: 1rem;
    font-weight: 700;
  }
  .booking-popover__close {
    appearance: none;
    background: var(--lightgray);
    border: 0;
    width: 36px;
    height: 36px;
    border-radius: var(--booking-radius);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--textcolor);
    cursor: pointer;
    font-size: 1.125rem;
  }
  .booking-popover__body {
    flex: 1;
    overflow-y: auto;
    padding: 1rem;
  }
  .booking-popover__toolbar {
    position: sticky;
    top: 0;
    background: var(--white);
    z-index: 1;
    padding-bottom: 0.5rem;
  }
  .booking-popover__months {
    flex-direction: column;
    gap: 1.75rem;
  }
  .booking-popover__footer {
    margin: 0;
    padding: 0.75rem 1rem calc(0.75rem + env(safe-area-inset-bottom));
    background: var(--white);
    border-top: 1px solid var(--booking-border);
  }
  .booking-popover__done {
    display: inline-flex;
    min-width: 120px !important;
    width: auto !important;
  }
  .booking-day {
    min-height: 46px;
  }
  body.booking-sheet-open {
    overflow: hidden;
  }
}
.booking-breakdown {
  margin: 1.25rem 0 0;
}
.booking-breakdown[hidden] {
  display: none;
}
.booking-breakdown__row {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  padding: 7px 0;
  font-size: 0.875rem;
  color: var(--gray);
}
.booking-breakdown__row dt {
  font-weight: 400;
}
.booking-breakdown__row dd {
  margin: 0;
  white-space: nowrap;
}
.booking-breakdown__hint {
  display: block;
  font-size: 0.6875rem;
  color: var(--booking-muted);
}
.booking-breakdown__total {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 10px;
  padding-top: 14px;
  border-top: 1px solid var(--booking-border);
  font-size: 1rem;
  font-weight: 700;
  color: var(--textcolor);
}
.booking-breakdown__aside {
  margin-top: 0.875rem;
  padding: 12px 14px;
  background: var(--lightgray);
  border-radius: var(--booking-radius);
  font-size: 0.75rem;
  color: var(--gray);
}
.booking-breakdown__aside strong {
  color: var(--textcolor);
}
.booking-breakdown__aside ul {
  margin: 4px 0 0;
  padding: 0;
  list-style: none;
}

.booking-policy {
  border: 1px solid var(--booking-border);
  border-radius: var(--booking-radius-lg);
  padding: 1.125rem 1.25rem;
  background: var(--secondary);
}
.booking-policy__title {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--textcolor);
  margin-bottom: 0.75rem;
}
.booking-policy__tier {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 7px 0;
  font-size: 0.8125rem;
  color: var(--gray);
}
.booking-policy__tier + .booking-policy__tier {
  border-top: 1px dashed var(--lightgray-300);
}
.booking-policy--free .booking-policy__title {
  color: var(--green);
}
.booking-policy--non-refundable {
  background: var(--lightgray);
}
.booking-policy--non-refundable .booking-policy__title {
  color: var(--booking-warning);
}

.booking-status {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 3px 12px;
  border-radius: 8px;
  font-size: 0.75rem;
  font-weight: 600;
  line-height: 1.6;
}
.booking-status::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: currentColor;
}
.booking-status--confirmed, .booking-status--completed {
  color: var(--green);
  background: rgba(5, 142, 110, 0.1);
}
.booking-status--pending, .booking-status--awaiting {
  color: var(--primary);
  background: var(--secondary);
}
.booking-status--cancelled, .booking-status--failed {
  color: var(--booking-danger);
  background: rgba(180, 35, 24, 0.1);
}
.booking-status--unknown {
  color: var(--booking-warning);
  background: rgba(181, 71, 8, 0.1);
}

.booking-rating {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--textcolor);
}
.booking-rating svg {
  color: var(--primary);
}
.booking-rating span {
  font-weight: 400;
  color: var(--booking-muted);
}

.booking-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.booking-bar__price strong {
  display: block;
  font-size: 1.125rem;
  font-weight: 900;
  color: var(--primary);
  line-height: 1.2;
}
.booking-bar__price span {
  font-size: 0.75rem;
  color: var(--booking-muted);
}
.booking-bar .btn {
  min-width: 0;
  white-space: nowrap;
}

@media (max-width: 991px) {
  body.stay-page .propertyDetails__marketedBy {
    padding: 12px 0;
  }
  body.detailPage.stay-page {
    padding-bottom: 84px;
  }
}
@media (max-width: 767px) {
  body.detailPage.stay-page {
    padding-bottom: 80px;
  }
}
.booking-checkout__section {
  border: 1px solid var(--booking-border);
  border-radius: var(--booking-radius-lg);
  padding: 1.25rem;
}

.booking-photo-placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  min-height: 320px;
  background: var(--lightgray);
  border-radius: var(--booking-radius-lg);
}
.booking-photo-placeholder img {
  max-width: 120px;
  opacity: 0.4;
}

.booking-photo-groups {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(110px, 1fr));
  gap: 0.5rem;
  margin: 0 0 1rem;
}
.booking-photo-groups a {
  display: block;
  aspect-ratio: 1;
  overflow: hidden;
  border-radius: var(--booking-radius);
  background: var(--lightgray);
}
.booking-photo-groups img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.booking-reviews {
  display: grid;
  gap: 1rem;
}
@media (min-width: 768px) {
  .booking-reviews {
    grid-template-columns: 1fr 1fr;
  }
}
.booking-reviews__item {
  border: 1px solid var(--booking-border);
  border-radius: var(--booking-radius-lg);
  padding: 1.25rem;
}
.booking-reviews__item header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.booking-reviews__item header strong {
  font-size: 0.9375rem;
  color: var(--textcolor);
}
.booking-reviews__item p {
  margin: 0.5rem 0 0;
  font-size: 0.875rem;
  color: var(--gray);
  line-height: 1.5;
}
.booking-reviews__date {
  display: block;
  font-size: 0.75rem;
  color: var(--booking-muted);
  margin-top: 2px;
}
.booking-reviews__title {
  font-size: 0.875rem !important;
  font-weight: 700;
  margin: 0.625rem 0 0 !important;
}
.booking-reviews__positive,
.booking-reviews__negative {
  margin: 0.5rem 0 0;
  font-size: 0.875rem;
  line-height: 1.5;
}
.booking-reviews__positive {
  color: var(--textcolor);
}
.booking-reviews__negative {
  color: var(--booking-muted);
}

.booking-nearby {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.5rem;
}
@media (min-width: 768px) {
  .booking-nearby {
    grid-template-columns: 1fr 1fr;
  }
}
.booking-nearby li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.875rem;
  color: var(--textcolor);
}
.booking-nearby li svg {
  color: var(--primary);
  min-width: 18px;
}
.booking-nearby li span {
  color: var(--booking-muted);
  margin-inline-start: auto;
}

.booking-rooms {
  display: grid;
  gap: 1rem;
}
@media (min-width: 768px) {
  .booking-rooms {
    grid-template-columns: 1fr 1fr;
  }
}
.booking-rooms__card {
  background: var(--secondary);
  border: 1px solid var(--lightgray-500);
  border-radius: 12px;
  padding: 1.25rem 1.375rem;
}
.booking-rooms__card h6 {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 0.75rem !important;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid var(--lightgray-400);
  font-size: 0.95rem !important;
}
.booking-rooms__card h6 svg {
  color: var(--primary);
  flex-shrink: 0;
}
.booking-rooms__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.25rem;
  list-style: none;
  margin: 0 0 0.75rem;
  padding: 0;
  font-size: 12px;
  color: var(--lightgray-200);
}
.booking-rooms__meta li {
  font-size: 14px;
  color: var(--textcolor);
  line-height: 1.2;
}
.booking-rooms__items {
  list-style: none;
  margin: 0;
  padding: 0;
}
.booking-rooms__items li {
  position: relative;
  padding-inline-start: 1rem;
  margin-bottom: 0.4rem;
  font-size: 0.875rem;
  color: var(--textcolor);
  line-height: 1.4;
}
.booking-rooms__items li::before {
  content: "";
  position: absolute;
  inset-inline-start: 0;
  top: 0.55em;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--primary);
}

.booking-facts {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem 1.25rem;
  margin: 0;
}
.booking-facts dt {
  font-size: 12px;
  font-weight: 400;
  color: var(--lightgray-200);
  margin: 0 0 2px;
}
.booking-facts dd {
  margin: 0;
  font-size: 14px;
  font-weight: 600;
  color: var(--textcolor);
  line-height: 1.3;
}
.booking-rooms__card .booking-facts {
  margin-bottom: 0.75rem;
}

body.stay-page .propertyDetails__detail--keyFeatures ul {
  list-style: none;
  margin: 0;
  align-items: stretch;
}
body.stay-page .propertyDetails__detail--keyFeatures ul li {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
  position: relative;
  padding-inline-start: 1.1rem;
}
body.stay-page .propertyDetails__detail--keyFeatures ul li::before {
  content: "";
  position: absolute;
  inset-inline-start: 0;
  top: 0.5em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--primary);
}
.booking-amenity__extra {
  font-size: 12px;
  font-weight: 600;
  color: var(--lightgray-200);
  white-space: nowrap;
}

.booking-house-policies__heading {
  margin: 1rem 0 0.5rem !important;
  font-size: 0.95rem !important;
}
.booking-house-policies__label {
  color: var(--textcolor) !important;
  margin-inline-start: 0 !important;
}

.booking-page-lead {
  color: var(--gray);
}

.booking-panel {
  background: var(--secondary);
  border: 1px solid var(--lightgray-500);
  border-radius: var(--booking-radius);
  padding: 1.375rem 1.875rem;
}
@media screen and (max-width: 767px) {
  .booking-panel {
    padding: 1.25rem 1rem;
  }
}
.booking-panel__hint {
  font-size: 0.875rem;
  color: var(--gray);
  margin-bottom: 1.25rem;
}
.booking-panel .select2-container--default .select2-selection--single {
  height: 55px;
  line-height: 55px;
  border-radius: 24px;
  border-color: rgba(255, 255, 255, 0.75);
  background: var(--white);
}
.booking-panel .select2-container--default .select2-selection--single .select2-selection__rendered {
  line-height: 55px;
  font-size: 1rem;
}
.booking-panel .select2-container--default .select2-selection--single .select2-selection__arrow {
  height: 55px;
}
.booking-panel select.selectpicker {
  width: 100%;
  height: 55px;
  padding: 0 1rem;
  border: 1px solid rgba(255, 255, 255, 0.75);
  border-radius: 24px;
  background: var(--white);
  color: var(--primary);
}

.booking-error {
  padding: 0.75rem 1rem;
  border-radius: var(--booking-radius);
  background: rgba(180, 35, 24, 0.08);
  color: var(--booking-danger);
  font-size: 0.875rem;
  font-weight: 600;
}

@media screen and (max-width: 991px) {
  .booking-checkout .stickColumnWrapper {
    order: -1;
  }
  .booking-checkout .propertyDetails__marketedBy {
    position: static;
    width: auto;
    background: transparent;
    border-top: 0;
    padding-top: 0;
    padding-bottom: 0 !important;
  }
}
.booking-checkout__submit {
  min-width: 220px;
}
@media screen and (max-width: 767px) {
  .booking-checkout__submit {
    width: 100%;
  }
}

.booking-summary__head p {
  margin: 0;
}
.booking-summary__stay {
  display: flex;
  align-items: center;
  gap: 14px;
}
.booking-summary__stay img {
  flex-shrink: 0;
  width: 96px;
  height: 72px;
  object-fit: cover;
  border-radius: var(--booking-radius);
}
.booking-summary__stay h6 {
  font-size: 0.75rem;
  color: var(--booking-muted);
}
.booking-summary__muted {
  font-size: 0.8125rem;
  color: var(--booking-muted);
}
.booking-summary__facts {
  margin: 0;
}
.booking-summary__facts > div {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 6px 0;
  font-size: 0.875rem;
}
.booking-summary__facts dt {
  font-weight: 400;
  color: var(--gray);
}
.booking-summary__facts dd {
  margin: 0;
  font-weight: 600;
  text-align: end;
}

.booking-confirm .booking-status {
  font-size: 0.8125rem;
}

.booking-at-property h6 {
  font-size: 0.8125rem;
  margin-bottom: 6px;
}
.booking-at-property li {
  padding: 3px 0;
  font-size: 0.8125rem;
  color: var(--gray);
}

.booking-error--ok {
  background: rgba(5, 142, 110, 0.08);
  color: var(--green);
}

.booking-date-field input.form-control {
  width: 100%;
  height: 40px;
  padding: 0 10px;
  font-size: 12px;
  color: var(--gray);
  border: 1px solid var(--lightgray-300);
  border-radius: var(--booking-radius);
}

.filters__menu .booking-date-field {
  margin-bottom: 8px;
}
.filters__menu .booking-date-field .form-label {
  font-size: 12px;
  font-weight: 500;
}

.searchList__detail .booking-status {
  font-size: 0.75rem;
}

.filters[data-stay-filters] {
  flex-wrap: wrap;
}
.filters[data-stay-filters] .filters__search {
  min-width: 240px;
}

.searchList__detail .property__image--placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  background: var(--secondary);
}
.searchList__detail .property__image--placeholder img {
  max-width: 120px;
  width: 120px;
  height: auto;
  object-fit: contain;
  opacity: 0.35;
}

.stay-dates-wrap {
  position: relative;
  min-width: 200px;
  max-width: 220px;
}
.stay-dates-wrap .booking-popover {
  inset-inline-start: 0;
  inset-inline-end: auto;
}

.stay-dates-trigger {
  display: flex;
  align-items: center;
  gap: 8px;
  width: 100%;
  height: 40px;
  padding: 0 10px;
  font-size: 12px;
  color: var(--gray);
  text-align: start;
  background: var(--white);
  border: 1px solid var(--lightgray-300);
  border-radius: var(--booking-radius);
  cursor: pointer;
}
.stay-dates-trigger svg {
  flex-shrink: 0;
  color: var(--primary);
}
.stay-dates-trigger output {
  pointer-events: none;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

[data-stay-filters] .filters__filter {
  cursor: pointer;
  flex-shrink: 0;
}
[data-stay-filters] .filters__menu {
  display: none;
  background: var(--white);
  border: 1px solid var(--lightgray-300);
  border-radius: 20px;
  box-shadow: var(--booking-shadow);
  padding: 1.25rem;
  margin-top: 0.75rem;
}
[data-stay-filters] .filters__menu .row > div {
  margin-bottom: 8px;
}
[data-stay-filters] .filters__menu .form-label {
  font-size: 12px;
  font-weight: 500;
}

.responsiveFilters .filters__menu .stay-dates-trigger {
  margin-bottom: 8px;
}

.stay-landing .mainBanner__content h1 {
  color: var(--white);
}
.stay-landing .mainBanner__inner,
.stay-landing .mainBanner__content {
  overflow: visible;
}

.stay-hero__image {
  background: var(--primary);
}
.stay-hero__lead {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.125rem;
  margin-bottom: 1.25rem;
}
.stay-hero__filters {
  background: rgb(255 255 255 / 0.18);
  border: 1px solid rgb(255 255 255 / 0.3);
  box-shadow: 0 18px 44px rgb(0 0 0 / 0.16);
  overflow: visible;
}
.stay-hero__filters .mainBanner__filtersWrapper--filters {
  width: 100%;
  overflow: visible;
}
.stay-hero__filters .form-group .form-control,
.stay-hero__filters .select-wrapper {
  height: 54px;
}
.stay-hero__filters .stay-dates-trigger {
  width: 100%;
  height: 100%;
  padding: 0;
  border: 0;
  border-radius: 16px;
  background: transparent;
  font-size: 0.875rem;
}
.stay-hero__dates,
.stay-hero__guests {
  padding: 0;
  overflow: visible;
  flex: 1 1 0;
}
.stay-hero__dates {
  position: relative;
  min-width: 220px;
}
.stay-hero__dates .booking-popover {
  inset-inline-start: 0;
  inset-inline-end: auto;
}
.stay-hero__guests {
  position: relative;
  min-width: 260px;
}
.stay-hero__guests .booking-guests {
  width: 100%;
  border-top: 0;
  overflow: visible;
}
.stay-hero__guests .booking-guests__toggle {
  height: 54px;
  padding: 0 1rem;
  gap: 10px;
  background: transparent;
  border-radius: 16px;
}
.stay-hero__guests .booking-guests__toggle label {
  font-size: 0.625rem;
  margin-bottom: 0;
}
.stay-hero__guests .booking-guests__toggle output {
  max-width: 180px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.stay-hero__guests .booking-guests__panel {
  inset-inline: auto;
  inset-inline-start: 0;
  min-width: 340px;
  width: max(100%, 340px);
  text-align: start;
  z-index: 60;
}

.stay-section {
  margin-top: 3rem;
}
.stay-section h5 {
  margin: 0;
}

.stay-destinations {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 1rem;
}

.stay-destination {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 10px;
  border: 1px solid var(--booking-border);
  border-radius: var(--booking-radius-lg);
  background: var(--white);
  transition: 0.2s ease all;
}
.stay-destination:hover {
  border-color: var(--primary);
  box-shadow: var(--booking-shadow);
}
.stay-destination__image {
  flex-shrink: 0;
  width: 72px;
  height: 72px;
  border-radius: var(--booking-radius);
  overflow: hidden;
  background: var(--secondary);
  display: flex;
  align-items: center;
  justify-content: center;
}
.stay-destination__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.stay-destination__placeholder {
  width: 40px !important;
  height: auto !important;
  object-fit: contain !important;
  opacity: 0.35;
}
.stay-destination__body strong {
  display: block;
  font-size: 0.9375rem;
  color: var(--textcolor);
}
.stay-destination__body small {
  font-size: 0.8125rem;
  color: var(--booking-muted);
}

.stay-types {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 1rem;
}

.stay-type {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 1.25rem;
  border: 1px solid var(--booking-border);
  border-radius: var(--booking-radius-lg);
  background: var(--white);
  transition: 0.2s ease all;
}
.stay-type svg {
  color: var(--primary);
}
.stay-type:hover {
  border-color: var(--primary);
  box-shadow: var(--booking-shadow);
}
.stay-type strong {
  font-size: 0.9375rem;
  color: var(--textcolor);
}
.stay-type small {
  font-size: 0.8125rem;
  color: var(--booking-muted);
}

.stay-featured-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 1.25rem;
}

.stay-price {
  display: flex;
  flex-direction: column;
  gap: 2px;
  margin-inline-start: auto;
  text-align: end;
}
.stay-price__was {
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--booking-muted);
  text-decoration: line-through;
  line-height: 1.2;
}
.stay-price__amount {
  font-size: 1.375rem;
  font-weight: 700;
  line-height: 1.2;
  color: var(--primary);
}
.stay-price__unit {
  font-size: 0.8125rem;
  font-weight: 400;
  color: var(--gray);
}
.property__body .stay-price {
  margin-inline-start: 0;
  text-align: start;
}
.stay-price--mobile {
  margin-inline-start: 0;
  text-align: start;
}
@media screen and (max-width: 991px) {
  .stay-price__amount {
    font-size: 1.1875rem;
  }
}

.stay-results {
  display: grid;
  gap: 1.5rem;
}
@media screen and (min-width: 992px) {
  .stay-results {
    grid-template-columns: 280px minmax(0, 1fr);
    align-items: start;
  }
}
@media screen and (min-width: 992px) and (max-width: 1200px) {
  .stay-results {
    grid-template-columns: 240px minmax(0, 1fr);
  }
}
.stay-results__list {
  min-width: 0;
}

.stay-filters {
  position: sticky;
  top: 100px;
  align-self: start;
  padding: 1.25rem;
  border: 1px solid var(--booking-border);
  border-radius: var(--booking-radius-lg);
  background: var(--white);
}
.stay-filters__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  margin-bottom: 1rem;
}
.stay-filters__head h6 {
  margin: 0;
  font-size: 1rem;
  font-weight: 700;
}
.stay-filters__clear {
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--primary);
  text-decoration: underline;
  white-space: nowrap;
}
.stay-filters__clear:hover {
  text-decoration: none;
}
.stay-filters__active {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  padding-bottom: 1rem;
  margin-bottom: 1rem;
  border-bottom: 1px solid var(--booking-border);
}
.stay-filters__group {
  margin-bottom: 1rem;
}
.stay-filters__group .form-label {
  font-size: 0.8125rem;
  font-weight: 600;
  margin-bottom: 6px;
  padding-bottom: 0;
}
.stay-filters__pair {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}
.stay-filters .select2-container {
  width: 100% !important;
}

.stay-chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 10px;
  border: 1px solid var(--primary);
  border-radius: 20px;
  background: var(--secondary);
  color: var(--primary);
  font-size: 0.75rem;
  font-weight: 600;
  cursor: pointer;
  max-width: 100%;
}
.stay-chip span {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.stay-chip svg {
  flex-shrink: 0;
  opacity: 0.7;
}
.stay-chip:hover {
  background: var(--primary);
  color: var(--white);
}

.filters__filter {
  position: relative;
}
.filters__filter--count {
  position: absolute;
  top: -4px;
  inset-inline-end: -4px;
  min-width: 18px;
  height: 18px;
  padding: 0 4px;
  border-radius: 9px;
  background: var(--white);
  color: var(--primary);
  font-size: 11px;
  font-weight: 700;
  line-height: 18px;
  text-align: center;
  box-shadow: 0 0 0 1px var(--primary);
}

.stay-history__toolbar {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  gap: 12px;
  padding: 0.5rem 0 1.5rem;
  border-bottom: 1px solid rgba(224, 224, 224, 1);
}
.stay-history__field {
  flex: 1 1 140px;
  min-width: 140px;
  max-width: 200px;
}
.stay-history__field--search {
  flex: 1 1 220px;
  min-width: 200px;
  max-width: none;
}
.stay-history__field .form-label {
  display: block;
  font-size: 0.75rem;
  font-weight: 500;
  margin-bottom: 6px;
  color: var(--textcolor);
}
.stay-history__field .form-control {
  width: 100%;
  height: 40px;
  padding: 0 14px;
  font-size: 14px;
  color: var(--textcolor);
  border: 1px solid var(--lightgray-300);
  border-radius: 12px;
  background: #fff;
}
.stay-history__actions {
  display: flex;
  align-items: center;
  gap: 8px;
}
.stay-history__actions .btn {
  height: 40px;
  min-width: auto;
  padding: 0 1.25rem;
  border-radius: 12px;
}
.stay-history__side {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1rem;
  text-align: end;
}
.stay-history__side .stay-price {
  margin-inline-start: 0;
  text-align: end;
}
.stay-history__side .btn {
  white-space: nowrap;
}
.stay-history .listview .property__image--placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  min-height: 180px;
  background: var(--lightgray);
}
.stay-history .listview .property__image--placeholder img {
  max-width: 100px;
  opacity: 0.35;
}
.stay-history .priceWrapper {
  align-items: flex-start;
  gap: 12px;
}
.stay-history .priceWrapper .btn {
  margin-top: 8px;
}
@media screen and (max-width: 767px) {
  .stay-history__field {
    max-width: none;
    flex-basis: 100%;
  }
  .stay-history__actions {
    width: 100%;
  }
  .stay-history__actions .btn {
    flex: 1;
  }
}

.stay-bookings-empty {
  padding: 1.5rem 1rem 0.75rem;
  max-width: 28rem;
  margin-inline: auto;
}
.stay-bookings-empty__icon {
  margin-bottom: 0.75rem;
  color: var(--primary);
}
.stay-bookings-empty__icon svg {
  display: inline-block;
  vertical-align: middle;
}
.stay-bookings-empty__title {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--textcolor);
  margin: 0 0 0.5rem;
  line-height: 1.3;
}
.stay-bookings-empty__copy {
  font-size: 0.875rem;
  font-weight: 500;
  color: rgba(0, 0, 0, 0.8);
  margin: 0 0 1.25rem;
  line-height: 1.5;
}

/* Desktop: stretch the property-search card to the left column height. */
@media screen and (min-width: 992px) {
  .account__info .flex-wrapper {
    align-items: stretch;
  }
  .account__info--left > .infoBox:last-child {
    margin-bottom: 0;
  }
  .account__info--right {
    display: flex;
    flex-direction: column;
  }
  .account__info--right > .propertySearch {
    flex: 1 1 auto;
    display: flex;
    flex-direction: column;
    padding-bottom: 0;
  }
  .account__info--right > .propertySearch .contentBox {
    flex: 1 1 auto;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    box-sizing: border-box;
  }
}
