/* node_modules/react-tabs/style/react-tabs.css */
.react-tabs {
  -webkit-tap-highlight-color: transparent;
}
.react-tabs__tab-list {
  border-bottom: 1px solid #aaa;
  margin: 0 0 10px;
  padding: 0;
}
.react-tabs__tab {
  display: inline-block;
  border: 1px solid transparent;
  border-bottom: none;
  bottom: -1px;
  position: relative;
  list-style: none;
  padding: 6px 12px;
  cursor: pointer;
}
.react-tabs__tab--selected {
  background: #fff;
  border-color: #aaa;
  color: black;
  border-radius: 5px 5px 0 0;
}
.react-tabs__tab--disabled {
  color: GrayText;
  cursor: default;
}
.react-tabs__tab:focus {
  outline: none;
}
.react-tabs__tab:focus:after {
  content: "";
  position: absolute;
  height: 5px;
  left: -4px;
  right: -4px;
  bottom: -5px;
  background: #fff;
}
.react-tabs__tab-panel {
  display: none;
}
.react-tabs__tab-panel--selected {
  display: block;
}

/* node_modules/react-calendar/dist/Calendar.css */
.react-calendar {
  width: 350px;
  max-width: 100%;
  background: white;
  border: 1px solid #a0a096;
  font-family:
    "Arial",
    "Helvetica",
    sans-serif;
  line-height: 1.125em;
}
.react-calendar--doubleView {
  width: 700px;
}
.react-calendar--doubleView .react-calendar__viewContainer {
  display: flex;
  margin: -0.5em;
}
.react-calendar--doubleView .react-calendar__viewContainer > * {
  width: 50%;
  margin: 0.5em;
}
.react-calendar,
.react-calendar *,
.react-calendar *:before,
.react-calendar *:after {
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
.react-calendar button {
  margin: 0;
  border: 0;
  outline: none;
}
.react-calendar button:enabled:hover {
  cursor: pointer;
}
.react-calendar__navigation {
  display: flex;
  height: 44px;
  margin-bottom: 1em;
}
.react-calendar__navigation button {
  min-width: 44px;
  background: none;
}
.react-calendar__navigation button:disabled {
  background-color: #f0f0f0;
}
.react-calendar__navigation button:enabled:hover,
.react-calendar__navigation button:enabled:focus {
  background-color: #e6e6e6;
}
.react-calendar__month-view__weekdays {
  text-align: center;
  text-transform: uppercase;
  font: inherit;
  font-size: 0.75em;
  font-weight: bold;
}
.react-calendar__month-view__weekdays__weekday {
  padding: 0.5em;
}
.react-calendar__month-view__weekNumbers .react-calendar__tile {
  display: flex;
  align-items: center;
  justify-content: center;
  font: inherit;
  font-size: 0.75em;
  font-weight: bold;
}
.react-calendar__month-view__days__day--weekend {
  color: #d10000;
}
.react-calendar__month-view__days__day--neighboringMonth,
.react-calendar__decade-view__years__year--neighboringDecade,
.react-calendar__century-view__decades__decade--neighboringCentury {
  color: #757575;
}
.react-calendar__year-view .react-calendar__tile,
.react-calendar__decade-view .react-calendar__tile,
.react-calendar__century-view .react-calendar__tile {
  padding: 2em 0.5em;
}
.react-calendar__tile {
  max-width: 100%;
  padding: 10px 6.6667px;
  background: none;
  text-align: center;
  font: inherit;
  font-size: 0.833em;
}
.react-calendar__tile:disabled {
  background-color: #f0f0f0;
  color: #ababab;
}
.react-calendar__month-view__days__day--neighboringMonth:disabled,
.react-calendar__decade-view__years__year--neighboringDecade:disabled,
.react-calendar__century-view__decades__decade--neighboringCentury:disabled {
  color: #cdcdcd;
}
.react-calendar__tile:enabled:hover,
.react-calendar__tile:enabled:focus {
  background-color: #e6e6e6;
}
.react-calendar__tile--now {
  background: #ffff76;
}
.react-calendar__tile--now:enabled:hover,
.react-calendar__tile--now:enabled:focus {
  background: #ffffa9;
}
.react-calendar__tile--hasActive {
  background: #76baff;
}
.react-calendar__tile--hasActive:enabled:hover,
.react-calendar__tile--hasActive:enabled:focus {
  background: #a9d4ff;
}
.react-calendar__tile--active {
  background: #006edc;
  color: white;
}
.react-calendar__tile--active:enabled:hover,
.react-calendar__tile--active:enabled:focus {
  background: #1087ff;
}
.react-calendar--selectRange .react-calendar__tile--hover {
  background-color: #e6e6e6;
}

/* Stars.css */
.stars-container {
  display: inline-flex;
}
.star {
  margin: 0 2px;
  transition: color 0.2s;
  cursor: default;
  font-size: 24px;
  color: #d3d3d3;
}
.star-filled {
  color: #ffd700;
}
.star-editable {
  cursor: pointer;
}

/* slide-show.css */
.slideshow-container {
  position: relative;
  width: 100%;
  height: 400px;
  overflow: hidden;
}
.slideshow-slides {
  display: flex;
  width: 100%;
  height: 100%;
  transition: transform 0.5s ease-in-out;
}
.slideshow-slide {
  min-width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
}
.transition-fade .slideshow-slide {
  position: absolute;
  opacity: 0;
  transition: opacity 1s ease-in-out;
}
.transition-fade .slideshow-slide.active {
  opacity: 1;
}
.transition-zoom .slideshow-slide {
  transform: scale(0.8);
  opacity: 0;
  transition: all 1s ease-in-out;
}
.transition-zoom .slideshow-slide.active {
  transform: scale(1);
  opacity: 1;
}
.slideshow-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0, 0, 0, 0.5);
  color: white;
  border: none;
  padding: 15px;
  cursor: pointer;
  font-size: 18px;
  z-index: 10;
}
.slideshow-arrow.prev {
  left: 10px;
}
.slideshow-arrow.next {
  right: 10px;
}
.slideshow-dots {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
}
.slideshow-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
  cursor: pointer;
}
.slideshow-dot.active {
  background: white;
}
.slideshow-play-pause {
  position: absolute;
  bottom: 20px;
  right: 20px;
  background: rgba(0, 0, 0, 0.5);
  color: white;
  border: none;
  padding: 10px;
  cursor: pointer;
  border-radius: 50%;
}

/* image-matrix.css */
:root {
  --fade-out-time: 450ms;
  --fade-in-time: 450ms;
}
.image-matrix {
  display: grid;
  gap: 10px;
  max-width: 100%;
  margin: 0 auto 1rem auto;
}
.image-matrix .image-container {
  position: relative;
  border: 0;
  overflow: hidden;
  aspect-ratio: 1/1;
  transition: transform 0.3s ease, border-color 0.3s ease;
}
.image-matrix .image-container.selectable {
  cursor: pointer;
}
.image-matrix .image-container.selected {
  border-color: #3f51b5;
  transform: scale(0.95);
}
.image-matrix .image-container.selectable:hover {
  transform: scale(1.03);
}
.image-matrix .matrix-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 1;
  transition: opacity 0.3s ease, transform 0.5s ease;
}
@keyframes fadeOut {
  0% {
    opacity: 1;
    transform: scale(1);
  }
  100% {
    opacity: 0;
    transform: scale(0.8);
  }
}
@keyframes fadeIn {
  0% {
    opacity: 0;
    transform: scale(0.8);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}
.image-matrix .matrix-image.fading-out {
  animation: fadeOut var(--fade-out-time) ease-in-out forwards;
}
.image-matrix .matrix-image.fading-in {
  animation: fadeIn var(--fade-in-time) ease-in-out forwards;
  animation-delay: var(--fade-out-time);
}
.image-matrix .selection-badge {
  position: absolute;
  top: 5px;
  right: 5px;
  background: #3f51b5;
  color: white;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  animation: pulse 1.5s infinite;
}
@keyframes pulse {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.1);
  }
  100% {
    transform: scale(1);
  }
}

/* resort-room-types.css */
.people-icons {
  display: inline-block;
  width: 10rem;
}
.room-types-container {
  margin-bottom: 1rem;
}

/* galery1.css */
:root {
  --background-color:#333;
  --galery-container-height: 100vh;
  --galery-container-padding-top: 1rem;
  --galery-container-padding-bottom: 1rem;
  --galery-height: calc(var(--galery-container-height) - var(--galery-container-padding-top) - var(--galery-container-padding-bottom));
}
.gallery-container {
  position: fixed;
  left: 0;
  top: 0;
  z-index: 10;
  margin: 0 auto;
  height: var(--galery-height);
  width: calc(100vw - 0rem);
  background-color: var(--background-color);
  padding-bottom: 1rem;
}
.gallery-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
  padding: 0 10px;
}
.gallery-header h2 {
  margin: 0;
  color: #f0f0f0;
  font-size: 1.5rem;
}
.gallery-counter {
  color: #f0f0f0;
  padding: 5px 15px;
}
.gallery-content-wrapper {
  display: flex;
  gap: 20px;
  padding: 0 10px;
  height: calc(100% - 40px);
}
.galery-main-image-container {
  flex: 3;
  position: relative;
  display: flex;
  align-items: center;
}
.galery-image-container {
  flex-grow: 1;
  text-align: center;
  background-color: var(--background-color);
}
.galery-image-container img {
  max-width: 100%;
  max-height: 70vh;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}
.gallery-container .thumbnails-container {
  flex: 1;
  max-width: 200px;
  overflow-y: scroll;
  overflow-x: hidden;
  max-height: var(--galery-height);
}
.gallery-container .thumbnails-scroll {
  display: flex;
  flex-direction: column;
  gap: 10px;
  overflow-y: auto;
  padding-right: 5px;
}
.gallery-container .thumbnail {
  cursor: pointer;
  border-radius: 4px;
  overflow: hidden;
  border: 2px solid transparent;
  transition: all 0.3s ease;
}
.gallery-container .thumbnail:hover {
  transform: scale(1.05);
}
.gallery-container .thumbnail.active {
  border-color: #4a90e2;
}
.gallery-container .thumbnail img {
  width: 100%;
  height: auto;
  display: block;
}
.gallery-container .nav-button {
  background: rgba(255, 255, 255, 0.7);
  border: none;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
  position: absolute;
  z-index: 2;
}
.gallery-container .nav-button:hover {
  background: rgba(255, 255, 255, 0.9);
  transform: scale(1.1);
}
.gallery-container .prev {
  left: 10px;
}
.gallery-container .next {
  right: 10px;
}
.gallery-container .thumbnails-container::-webkit-scrollbar {
  width: 4px;
}
.gallery-container .thumbnails-container::-webkit-scrollbar-track {
  background: var(--background-color);
  border-radius: 0;
}
.gallery-container .thumbnails-container::-webkit-scrollbar-thumb {
  background: #777;
  border-radius: 0;
}
.gallery-container .thumbnails-container::-webkit-scrollbar-thumb:hover {
  background: #888;
}

/* node_modules/react-phone-number-input/style.css */
:root {
  --PhoneInput-color--focus: #03b2cb;
  --PhoneInputInternationalIconPhone-opacity: 0.8;
  --PhoneInputInternationalIconGlobe-opacity: 0.65;
  --PhoneInputCountrySelect-marginRight: 0.35em;
  --PhoneInputCountrySelectArrow-width: 0.3em;
  --PhoneInputCountrySelectArrow-marginLeft: var(--PhoneInputCountrySelect-marginRight);
  --PhoneInputCountrySelectArrow-borderWidth: 1px;
  --PhoneInputCountrySelectArrow-opacity: 0.45;
  --PhoneInputCountrySelectArrow-color: currentColor;
  --PhoneInputCountrySelectArrow-color--focus: var(--PhoneInput-color--focus);
  --PhoneInputCountrySelectArrow-transform: rotate(45deg);
  --PhoneInputCountryFlag-aspectRatio: 1.5;
  --PhoneInputCountryFlag-height: 1em;
  --PhoneInputCountryFlag-borderWidth: 1px;
  --PhoneInputCountryFlag-borderColor: rgba(0,0,0,0.5);
  --PhoneInputCountryFlag-borderColor--focus: var(--PhoneInput-color--focus);
  --PhoneInputCountryFlag-backgroundColor--loading: rgba(0,0,0,0.1);
}
.PhoneInput {
  display: flex;
  align-items: center;
}
.PhoneInputInput {
  flex: 1;
  min-width: 0;
}
.PhoneInputCountryIcon {
  width: calc(var(--PhoneInputCountryFlag-height) * var(--PhoneInputCountryFlag-aspectRatio));
  height: var(--PhoneInputCountryFlag-height);
}
.PhoneInputCountryIcon--square {
  width: var(--PhoneInputCountryFlag-height);
}
.PhoneInputCountryIcon--border {
  background-color: var(--PhoneInputCountryFlag-backgroundColor--loading);
  box-shadow: 0 0 0 var(--PhoneInputCountryFlag-borderWidth) var(--PhoneInputCountryFlag-borderColor), inset 0 0 0 var(--PhoneInputCountryFlag-borderWidth) var(--PhoneInputCountryFlag-borderColor);
}
.PhoneInputCountryIconImg {
  display: block;
  width: 100%;
  height: 100%;
}
.PhoneInputInternationalIconPhone {
  opacity: var(--PhoneInputInternationalIconPhone-opacity);
}
.PhoneInputInternationalIconGlobe {
  opacity: var(--PhoneInputInternationalIconGlobe-opacity);
}
.PhoneInputCountry {
  position: relative;
  align-self: stretch;
  display: flex;
  align-items: center;
  margin-right: var(--PhoneInputCountrySelect-marginRight);
}
.PhoneInputCountrySelect {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  z-index: 1;
  border: 0;
  opacity: 0;
  cursor: pointer;
}
.PhoneInputCountrySelect[disabled],
.PhoneInputCountrySelect[readonly] {
  cursor: default;
}
.PhoneInputCountrySelectArrow {
  display: block;
  content: "";
  width: var(--PhoneInputCountrySelectArrow-width);
  height: var(--PhoneInputCountrySelectArrow-width);
  margin-left: var(--PhoneInputCountrySelectArrow-marginLeft);
  border-style: solid;
  border-color: var(--PhoneInputCountrySelectArrow-color);
  border-top-width: 0;
  border-bottom-width: var(--PhoneInputCountrySelectArrow-borderWidth);
  border-left-width: 0;
  border-right-width: var(--PhoneInputCountrySelectArrow-borderWidth);
  transform: var(--PhoneInputCountrySelectArrow-transform);
  opacity: var(--PhoneInputCountrySelectArrow-opacity);
}
.PhoneInputCountrySelect:focus + .PhoneInputCountryIcon + .PhoneInputCountrySelectArrow {
  opacity: 1;
  color: var(--PhoneInputCountrySelectArrow-color--focus);
}
.PhoneInputCountrySelect:focus + .PhoneInputCountryIcon--border {
  box-shadow: 0 0 0 var(--PhoneInputCountryFlag-borderWidth) var(--PhoneInputCountryFlag-borderColor--focus), inset 0 0 0 var(--PhoneInputCountryFlag-borderWidth) var(--PhoneInputCountryFlag-borderColor--focus);
}
.PhoneInputCountrySelect:focus + .PhoneInputCountryIcon .PhoneInputInternationalIconGlobe {
  opacity: 1;
  color: var(--PhoneInputCountrySelectArrow-color--focus);
}

/* app.css */
.form-element {
  margin-bottom: 16px;
}
.button.is-primary {
  border: none;
  border-radius: 2px;
  background-color: #52bc12;
  color: #fff;
  padding: 0.5rem;
}
.input-text,
.phone-input-wrapper {
  display: inline-block;
  width: 100%;
  padding: 7px 8px;
  border: 1px solid #ccc;
  border-radius: 2px;
  box-sizing: border-box;
}
.input-number input[type=number] {
  width: 45px;
  border: 1px solid #ccc;
  box-sizing: border-box;
  text-align: right;
}
.input-number button {
  box-sizing: border-box;
  border: 1px solid #2fcdfc;
  border-radius: 2px;
  background-color: #2fcdfc;
  color: #fff;
}
textarea:focus,
input[type=text]:focus,
input[type=number]:focus,
input[type=email]:focus,
input[type=tel]:focus,
.phone-input-wrapper:focus-within {
  outline: 1px solid #2684ff;
  border-radius: 2px;
}
input[type=tel].PhoneInputInput {
  border: none;
}
input[type=tel].PhoneInputInput:focus {
  outline: none;
}
.input-meal {
  margin-top: 0.5rem;
}
.input-meal > label {
  display: inline-block;
  margin-right: 0.5rem;
}
.input-meal > .meal-select {
  display: inline-block;
}
.error {
  border-color: #e63946;
}
.error-text {
  color: #e63946;
  font-size: 0.85em;
  margin-top: 4px;
}
.open-close-indicator {
  display: flex;
  flex-shrink: 0;
  align-items: center;
  align-self: stretch;
  -webkit-box-align: center;
  box-sizing: border-box;
}
.indicator-separator {
  display: inline;
  align-self: stretch;
  width: 1px;
  background-color: rgb(204, 204, 204);
  box-sizing: border-box;
}
.indicator-image {
  transition: color 150ms;
  color: rgb(204, 204, 204);
  box-sizing: border-box;
}
.indicator-image {
  margin-left: 8px;
  width: 20px;
  height: 20px;
  background-image: url('data:image/svg+xml,<?xml version="1.0" encoding="UTF-8" standalone="no"?>%0A<svg%0A   class="indicator-svg"%0A   height="20"%0A   width="20"%0A   viewBox="0 0 20 20"%0A   aria-hidden="true"%0A   focusable="false"%0A   version="1.1"%0A   id="svg1"%0A   xmlns="http://www.w3.org/2000/svg"%0A   xmlns:svg="http://www.w3.org/2000/svg">%0A  <defs id="defs1" />%0A  <path%0A     d="M4.516 7.548c0.436-0.446 1.043-0.481 1.576 0l3.908 3.747 3.908-3.747c0.533-0.481 1.141-0.446 1.574 0 0.436 0.445 0.408 1.197 0 1.615-0.406 0.418-4.695 4.502-4.695 4.502-0.217 0.223-0.502 0.335-0.787 0.335s-0.57-0.112-0.789-0.335c0 0-4.287-4.084-4.695-4.502s-0.436-1.17 0-1.615z"%0A     id="path1" style="fill:%23ac9d93" />%0A</svg>%0A');
}
.indicator-image.open {
  background-image: url('data:image/svg+xml,<?xml version="1.0" encoding="UTF-8" standalone="no"?>%0A<svg%0A   height="20"%0A   width="20"%0A   viewBox="0 0 20 20"%0A   aria-hidden="true"%0A   focusable="false"%0A   version="1.1"%0A   id="svg1"%0A   xmlns="http://www.w3.org/2000/svg"%0A   xmlns:svg="http://www.w3.org/2000/svg">%0A  <defs%0A     id="defs1" />%0A  <path%0A     d="m 4.516,13.652251 c 0.436,0.446 1.043,0.481 1.576,0 L 10,9.9052512 13.908,13.652251 c 0.533,0.481 1.141,0.446 1.574,0 0.436,-0.445 0.408,-1.197 0,-1.615 -0.406,-0.418 -4.695,-4.5019998 -4.695,-4.5019998 -0.217,-0.223 -0.502,-0.335 -0.787,-0.335 -0.285,0 -0.57,0.112 -0.789,0.335 0,0 -4.287,4.0839998 -4.695,4.5019998 -0.408,0.418 -0.436,1.17 0,1.615 z"%0A     id="path1"%0A     style="fill:%23ac9d93" />%0A</svg>%0A');
}
.criteria-keywords .react-autosuggest__container {
}
.criteria-keywords .react-autosuggest__input {
  display: block;
  width: 100%;
  box-sizing: border-box;
  outline: none;
  box-shadow: none;
  padding: 8px 12px;
  font-size: 1rem;
  line-height: 1.5rem;
  border-color: rgb(204, 204, 204);
  border-radius: 4px;
  border-style: solid;
  border-width: 1px;
}
.criteria-keywords .react-autosuggest__suggestions-container {
  display: none;
}
.criteria-keywords .react-autosuggest__suggestions-container ul {
  list-style-type: none;
}
.criteria-keywords .react-autosuggest__suggestions-container.react-autosuggest__suggestions-container--open {
  display: block;
  margin-top: 4px;
  border: 1px solid #ccc;
  border-radius: 2px;
  box-sizing: border-box;
  padding: 8px 8px 8px 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  background-color: #fff;
  font-size: 1rem;
  line-height: 1.5rem;
  max-height: 200px;
  overflow-y: auto;
  overflow-x: hidden;
}
.criteria-rooms-people .option > .value,
.criteria-rooms-people .single-value > .value {
  margin-right: 10px;
  font-weight: 800;
}
.criteria-rooms-people .option:hover {
  background-color: #deebff;
}
.criteria-rooms-people .option[aria-selected=true] {
  background-color: #2684ff;
  color: #e3fdff;
}
.criteria-rooms-people .dropdown-container {
  margin-top: 4px;
  border: 1px solid #ccc;
  border-radius: 2px;
  box-sizing: border-box;
  padding: 8px 8px 8px 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
.criteria-rooms-people .dropdown-container .button-container {
  align-self: flex-end;
  margin-left: auto;
}
.criteria-rooms-people .dropdown-container .button-container button {
  vertical-align: bottom;
}
.criteria-rooms-people .value-container > input {
  display: none;
}
.room-model {
  min-width: 220px;
  margin: 0.5rem;
  padding: 0.5rem;
  border: 1px solid #ccc;
  border-radius: 2px;
  box-sizing: border-box;
}
.room-model .close-handle {
  cursor: pointer;
  position: absolute;
  width: 20px;
  height: 20px;
  margin-top: -0.5rem;
  margin-left: calc(180px + 0.5rem);
}
.room-model .close-handle {
  background-image: url('data:image/svg+xml,<?xml version="1.0" encoding="UTF-8" standalone="no"?>%0A<svg%0A   class="icone-close-svg"%0A   height="20"%0A   width="20"%0A   viewBox="0 0 20 20"%0A   aria-hidden="true"%0A   focusable="false"%0A   version="1.1"%0A   id="svg1"%0A   sodipodi:docname="icon-close.svg"%0A   xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"%0A   xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"%0A   xmlns="http://www.w3.org/2000/svg"%0A   xmlns:svg="http://www.w3.org/2000/svg">%0A  <defs%0A     id="defs1" />%0A  <path%0A     d="m 4.6985455,3.4005719 c 0.436,-0.446 1.043,-0.481 1.576,0 l 3.9079995,3.747 3.908,-3.747 c 0.533,-0.481 1.141,-0.446 1.574,0 0.436,0.445 0.408,1.197 0,1.615 -0.406,0.418 -4.695,4.502 -4.695,4.502 -0.217,0.2230004 -0.502,0.3350004 -0.787,0.3350004 -0.2849999,0 -0.5699995,-0.112 -0.7889995,-0.3350004 0,0 -4.287,-4.084 -4.695,-4.502 -0.408,-0.418 -0.436,-1.17 0,-1.615 z"%0A     id="path1"%0A     style="fill:%23ac9d93" />%0A  <path%0A     d="m 4.316587,14.452 c 0.436,0.446 1.043,0.481 1.576,0 l 3.908,-3.747 3.908,3.747 c 0.533,0.481 1.141,0.446 1.574,0 0.436,-0.445 0.408,-1.197 0,-1.615 -0.406,-0.418 -4.695,-4.502 -4.695,-4.502 -0.217,-0.223 -0.502,-0.335 -0.787,-0.335 -0.285,0 -0.57,0.112 -0.789,0.335 0,0 -4.287,4.084 -4.695,4.502 -0.408,0.418 -0.436,1.17 0,1.615 z"%0A     id="path1-5"%0A     style="fill:%23ac9d93" />%0A</svg>%0A');
}
.room-model .close-handle:hover {
  background-image: url('data:image/svg+xml,<?xml version="1.0" encoding="UTF-8" standalone="no"?>%0A<svg%0A   class="icone-close-svg"%0A   height="20"%0A   width="20"%0A   viewBox="0 0 20 20"%0A   aria-hidden="true"%0A   focusable="false"%0A   version="1.1"%0A   id="svg1"%0A   sodipodi:docname="icon-close.svg"%0A   %0A   xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"%0A   xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"%0A   xmlns="http://www.w3.org/2000/svg"%0A   xmlns:svg="http://www.w3.org/2000/svg">%0A  <defs%0A     id="defs1" />%0A  <path%0A     d="m 4.6985455,3.4005719 c 0.436,-0.446 1.043,-0.481 1.576,0 l 3.9079995,3.747 3.908,-3.747 c 0.533,-0.481 1.141,-0.446 1.574,0 0.436,0.445 0.408,1.197 0,1.615 -0.406,0.418 -4.695,4.502 -4.695,4.502 -0.217,0.2230004 -0.502,0.3350004 -0.787,0.3350004 -0.2849999,0 -0.5699995,-0.112 -0.7889995,-0.3350004 0,0 -4.287,-4.084 -4.695,-4.502 -0.408,-0.418 -0.436,-1.17 0,-1.615 z"%0A     id="path1"%0A     style="fill:%232fcdfc" />%0A  <path%0A     d="m 4.316587,14.452 c 0.436,0.446 1.043,0.481 1.576,0 l 3.908,-3.747 3.908,3.747 c 0.533,0.481 1.141,0.446 1.574,0 0.436,-0.445 0.408,-1.197 0,-1.615 -0.406,-0.418 -4.695,-4.502 -4.695,-4.502 -0.217,-0.223 -0.502,-0.335 -0.787,-0.335 -0.285,0 -0.57,0.112 -0.789,0.335 0,0 -4.287,4.084 -4.695,4.502 -0.408,0.418 -0.436,1.17 0,1.615 z"%0A     id="path1-5"%0A     style="fill:%232fcdfc" />%0A</svg>%0A');
}
.room-model .field {
  margin-top: 0.5rem;
}
.room-model .field > label,
.room-model .field > .input-number {
  display: inline-block;
}
.room-model .field > label {
  width: 70px;
  margin-left: 14px;
  margin-right: 8px;
}
.room-controls {
  min-width: 120px;
}
.room-controls button {
  margin: 0.5rem;
  padding: 0.5rem;
  display: block;
  white-space: nowrap;
}
.criteria-date-range-header {
  color: #333;
  border: 1px solid #ccc;
  border-radius: 2px;
  box-sizing: border-box;
  padding: 8px 8px 8px 10px;
}
.criteria-date-range-header:focus,
.criteria-date-range-header.active {
  border: 2px solid #2684ff;
}
.criteria-date-range-header {
  display: flex;
  flex-direction: row;
}
.criteria-date-range-header > span.value {
  display: block;
  margin-right: 10px;
  font-weight: 800;
}
.criteria-date-range-header > span:last-child {
  margin-left: auto;
  align-self: flex-end;
  margin-right: 0;
}
.criteria-date-range-drowpdown {
  margin-top: 4px;
  border: 1px solid #ccc;
  border-radius: 2px;
  box-sizing: border-box;
  padding: 8px 8px 8px 10px;
}
.calendar-container {
  display: flex;
  flex-direction: row;
}
.calendar-container .date-boxes-wrapper {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-between;
}
.calendar-container .button-container {
  flex-basis: 100%;
  flex-shrink: 0;
  flex-grow: 1;
  text-align: right;
  margin-top: 0.5rem;
}
.calendar-container > div {
  margin-right: 10px;
}
.calendar-container > div > label {
  margin-right: 10px;
}
.clearfix::after {
  content: " ";
  visibility: hidden;
  display: block;
  height: 0;
  clear: both;
}
.resort-item h1,
.resort-view h1 {
  font-size: 1.6rem;
}
.resort-item h2,
.resort-view h2 {
  font-size: 1.4rem;
}
.resort-item h3,
.resort-view h3 {
  font-size: 1.3rem;
}
.resort-item h4,
.resort-view h4 {
  font-size: 1.2rem;
}
.resort-item h5,
.resort-view h5 {
  font-size: 1.1rem;
}
.resort-item h6,
.resort-view h6 {
  font-size: 1.0rem;
}
.resort-list-page-h1 {
  font-size: 1.6rem;
}
.resort-list-page-h2 {
  font-size: 1.6rem;
}
.resort-list-page-h3 {
  font-size: 1.3rem;
}
.resort-list-page-h4 {
  font-size: 1.2rem;
}
.resort-list-page-h5 {
  font-size: 1.1rem;
}
.resort-list-page-h6 {
  font-size: 1rem;
}
.resort-image.primary {
  width: 100%;
  height: auto;
  object-fit: cover;
}
.resort-list-section {
}
.resort-list-container {
  display: flex;
  flex-direction: column;
}
.resort-list-item-card {
  display: flex;
  flex-direction: column;
  border-top: 3px solid #f0f0f0;
  padding-top: 0.5rem;
  margin-bottom: 2rem;
}
.resort-list-item-image-wrapper {
  margin-top: 0.2rem;
  margin-right: 0.5rem;
  overflow: hidden;
}
.resort-list-item-image-link {
  display: block;
  width: 100%;
  text-decoration: none;
}
.resort-list-item-image-image {
  width: 100%;
  object-fit: cover;
}
.resort-list-item-description-wrapper {
  width: 80%;
  margin-left: 0.5rem;
}
.resort-list-item-title {
  font-size: 1.6rem;
}
.resort-list-item-location {
  font-size: 0.8rem;
  font-weight: bold;
}
.resort-list-item-text {
  font-size: 1rem;
  line-height: 1.5rem;
}
.resort-list-item-price-wrapper {
  font-size: 1rem;
  line-height: 1.5rem;
}
.resort-list-item-price-value {
  margin-left: 0.5rem;
  font-size: 1.2rem;
  font-weight: bold;
}
.resort-list-item-price-currency-symbol {
  display: none;
}
.resort-list-item-price-currency-code {
  margin-left: 0.09rem;
  font-size: 0.8rem;
  font-weight: bold;
}
.pager-wrapper {
}
.pager-btn {
  padding: 0.5rem 1rem;
  display: inline-block;
  text-decoration: none;
  cursor: pointer;
  margin-left: 0.25rem;
  margin-right: 0.25rem;
  background: #ccc;
  border: 1px solid #ccc;
  border-radius: 3px;
}
.pager-btn.active {
  background: #2684ff;
  border: 1px solid #2684ff;
  color: #fff;
}
.resort-view {
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
}
.resort-view .main-description {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
.resort-view .main-image-wrapper {
  padding-top: 0.3rem;
  margin-right: 0.5rem;
  max-width: 600px;
  width: calc(60% - 1rem);
}
.resort-view .address-description-rooms-wrapper {
  padding-top: 0.3rem;
  margin-left: 0.5rem;
  max-width: 400px;
  width: calc(40% - 1rem);
}
.resort-view .image-matrix-wrapper {
  padding-top: 1rem;
  margin-right: 0.5rem;
  max-width: 400px;
  width: calc(40% - 1rem);
}
.resort-view .descriptions-wrapper {
  padding-top: 1rem;
  margin-left: 0.5rem;
  max-width: 600px;
  width: calc(60% - 1rem);
}
.resort-view .descriptions-wrapper .room-types-container .room-card.highlite > span {
  color: #1614ff;
  font-weight: bolder;
}
.resort-view .descriptions-wrapper .room-types-container .people-icons {
  width: 6rem;
}
.resort-view .descriptions-wrapper .room-types-container .price {
  margin-left: 0.5rem;
  font-size: 1.2rem;
  font-weight: bold;
}
.resort-view .descriptions-wrapper .room-types-container .currency-symbol {
  display: none;
}
.resort-view .descriptions-wrapper .room-types-container .currency-code {
  margin-left: 0.09rem;
  font-size: 0.8rem;
  font-weight: bold;
}
.resort-view .descriptions-wrapper .board-item {
  list-style: none;
  margin-bottom: 0.6rem;
}
.resort-view .descriptions-wrapper li::before {
  content: url(../icons/boardings-2.svg);
  position: absolute;
  margin-left: -2rem;
  width: 1em;
  height: 1em;
}
.resort-view .book-button-container {
  margin-bottom: 1rem;
}
.resort-view .book-button-container .book-button {
  padding-left: 4rem;
  padding-right: 4rem;
  cursor: pointer;
}
.resort-view .image-matrix {
  margin-right: auto;
  margin-left: 0;
}
.resort-view .more-images-button {
  width: 100%;
  padding: 1rem;
  cursor: pointer;
  border: 0;
  background: #8f57da;
  text-align: center;
  color: #fff;
  font-size: 1.2rem;
  font-weight: 800;
}
.resort-view .description {
  width: calc(70% - 1rem);
}
.resort-view address {
  font-weight: 700;
}
.resort-view .topic img {
  height: 1rem;
  vertical-align: middle;
  margin-right: 0.3rem;
}
.resort-feature-list-container {
  list-style: none;
  padding-left: 0;
  margin-left: 0;
}
.resort-feature-list-container .icon {
  margin-right: 0.5rem;
}
.resort-booking {
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
}
.resort-booking .main-description {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
.resort-booking .main-image-wrapper {
  padding-top: 0.3rem;
  margin-right: 0.5rem;
  max-width: 600px;
  width: calc(60% - 1rem);
}
.resort-booking .address-description-rooms-wrapper {
  padding-top: 0.3rem;
  margin-left: 0.5rem;
  max-width: 400px;
  width: calc(40% - 1rem);
}
.resort-booking .descriptions-wrapper {
  padding-top: 1rem;
  margin-left: 0.5rem;
  max-width: 600px;
  width: calc(60% - 1rem);
}
.resort-booking .descriptions-wrapper .room-types-container .room-card.highlite > span {
  color: #1614ff;
  font-weight: bolder;
}
.resort-booking .guest-list-wrapper {
  display: block;
  margin-bottom: 1rem;
}
.resort-booking .guest-list {
  display: table;
  width: 400px;
  border-collapse: collapse;
}
.resort-booking .guest-list-header {
  display: table-header-group;
  font-weight: bold;
}
.resort-booking .book-form .guest-wrapper {
  display: table-row;
}
.resort-booking .book-form .add-button-wrapper {
  margin-top: 4px;
  display: block;
  text-align: right;
  width: 400px;
}
.resort-booking .guest-list-header > span,
.resort-booking .book-form .guest-wrapper > span {
  display: table-cell;
  padding: 4px 4px;
  vertical-align: middle;
  border-bottom: 1px solid #eee;
}
.resort-booking .guest-age-id {
  width: 3rem;
}
.resort-booking .book-form .guest-age {
  width: 3rem;
}
.resort-booking .book-form .guest-meals {
  padding-top: 4px;
  padding-bottom: 5px;
  width: 8rem;
}
.resort-booking .book-form .guest-treatment {
  padding-top: 4px;
  padding-bottom: 5px;
  width: 5rem;
}
.resort-booking .book-form .guest-wrapper .delete-button {
  cursor: pointer;
  display: inline-block;
  width: 1rem;
  height: 1rem;
  background-image: url('data:image/svg+xml,<?xml version="1.0" encoding="UTF-8" standalone="no"?>%0A<svg%0A   class="icone-close-svg"%0A   height="20"%0A   width="20"%0A   viewBox="0 0 20 20"%0A   aria-hidden="true"%0A   focusable="false"%0A   version="1.1"%0A   id="svg1"%0A   sodipodi:docname="icon-close.svg"%0A   xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"%0A   xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"%0A   xmlns="http://www.w3.org/2000/svg"%0A   xmlns:svg="http://www.w3.org/2000/svg">%0A  <defs%0A     id="defs1" />%0A  <path%0A     d="m 4.6985455,3.4005719 c 0.436,-0.446 1.043,-0.481 1.576,0 l 3.9079995,3.747 3.908,-3.747 c 0.533,-0.481 1.141,-0.446 1.574,0 0.436,0.445 0.408,1.197 0,1.615 -0.406,0.418 -4.695,4.502 -4.695,4.502 -0.217,0.2230004 -0.502,0.3350004 -0.787,0.3350004 -0.2849999,0 -0.5699995,-0.112 -0.7889995,-0.3350004 0,0 -4.287,-4.084 -4.695,-4.502 -0.408,-0.418 -0.436,-1.17 0,-1.615 z"%0A     id="path1"%0A     style="fill:%23ac9d93" />%0A  <path%0A     d="m 4.316587,14.452 c 0.436,0.446 1.043,0.481 1.576,0 l 3.908,-3.747 3.908,3.747 c 0.533,0.481 1.141,0.446 1.574,0 0.436,-0.445 0.408,-1.197 0,-1.615 -0.406,-0.418 -4.695,-4.502 -4.695,-4.502 -0.217,-0.223 -0.502,-0.335 -0.787,-0.335 -0.285,0 -0.57,0.112 -0.789,0.335 0,0 -4.287,4.084 -4.695,4.502 -0.408,0.418 -0.436,1.17 0,1.615 z"%0A     id="path1-5"%0A     style="fill:%23ac9d93" />%0A</svg>%0A');
  background-size: 1rem 1rem;
}
.resort-booking .book-form .guest-wrapper .delete-button:hover {
  background-image: url('data:image/svg+xml,<?xml version="1.0" encoding="UTF-8" standalone="no"?>%0A<svg%0A   class="icone-close-svg"%0A   height="20"%0A   width="20"%0A   viewBox="0 0 20 20"%0A   aria-hidden="true"%0A   focusable="false"%0A   version="1.1"%0A   id="svg1"%0A   sodipodi:docname="icon-close.svg"%0A   %0A   xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"%0A   xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"%0A   xmlns="http://www.w3.org/2000/svg"%0A   xmlns:svg="http://www.w3.org/2000/svg">%0A  <defs%0A     id="defs1" />%0A  <path%0A     d="m 4.6985455,3.4005719 c 0.436,-0.446 1.043,-0.481 1.576,0 l 3.9079995,3.747 3.908,-3.747 c 0.533,-0.481 1.141,-0.446 1.574,0 0.436,0.445 0.408,1.197 0,1.615 -0.406,0.418 -4.695,4.502 -4.695,4.502 -0.217,0.2230004 -0.502,0.3350004 -0.787,0.3350004 -0.2849999,0 -0.5699995,-0.112 -0.7889995,-0.3350004 0,0 -4.287,-4.084 -4.695,-4.502 -0.408,-0.418 -0.436,-1.17 0,-1.615 z"%0A     id="path1"%0A     style="fill:%232fcdfc" />%0A  <path%0A     d="m 4.316587,14.452 c 0.436,0.446 1.043,0.481 1.576,0 l 3.908,-3.747 3.908,3.747 c 0.533,0.481 1.141,0.446 1.574,0 0.436,-0.445 0.408,-1.197 0,-1.615 -0.406,-0.418 -4.695,-4.502 -4.695,-4.502 -0.217,-0.223 -0.502,-0.335 -0.787,-0.335 -0.285,0 -0.57,0.112 -0.789,0.335 0,0 -4.287,4.084 -4.695,4.502 -0.408,0.418 -0.436,1.17 0,1.615 z"%0A     id="path1-5"%0A     style="fill:%232fcdfc" />%0A</svg>%0A');
}
.resort-booking .book-form .room-selector {
  margin-right: 1rem;
  margin-top: 3px;
  vertical-align: middle;
}
.resort-booking .book-form .people-icons {
  margin-right: 0.1rem;
  width: 6rem;
  vertical-align: middle;
}
.resort-booking .book-form .room-name {
  margin-right: 1rem;
  width: 5rem;
}
.resort-booking .book-form .room-rooms {
  margin-right: 1rem;
}
.resort-booking .book-form .currency-symbol {
  display: none;
}
.resort-booking .book-form .price {
  font-size: 1.2rem;
  font-weight: 800;
  margin-right: 0.2rem;
}
.resort-booking .book-form .currency-code {
  font-size: 0.8rem;
  font-weight: 800;
}
.resort-booking .book-form #path1-5,
.resort-booking .book-form #path1-6 {
  fill: red;
}
.resort-booking .book-form .text-area {
  display: block;
  width: 100%;
  height: 10.5rem;
  font-size: 1rem;
  line-height: 1.5rem;
  padding: 0.5rem;
}
.resort-booking .book-form .checkbox {
  margin-right: 1rem;
}
.side-filters .filter-group ul {
  padding-left: 0;
}
.side-filters .filter-group li {
  list-style: none;
}
.side-filters .filter-group input[type=checkbox] {
  margin-right: 1rem;
}
/*# sourceMappingURL=bundle.css.map */
