@charset "UTF-8";
@keyframes loading {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
.calendar-container {
  max-width: 450px;
  margin: auto;
  position: relative;
}

.calendar-loader {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #e1e1e1;
  opacity: 0.6;
  cursor: not-allowed;
  z-index: 50;
}
.calendar-loader__loader-wrapper {
  position: fixed;
  top: 50vh;
  left: 50vw;
  transform: translate(-50%, -50%);
}
.calendar-loader__loader {
  border: 2px solid transparent;
  border-top: 2px solid #2287b5;
  border-radius: 50px;
  width: 50px;
  height: 50px;
  animation: loading 1.2s linear infinite;
}

.calendar {
  border: 1px solid #cacaca4f;
  border-top: none;
  padding: 0.5rem 0 1rem;
  font-weight: lighter;
}
.calendar__row {
  display: flex;
  flex-direction: row;
  width: 100%;
}
.calendar__row--wrap {
  flex-wrap: wrap;
}
.calendar__row > * {
  width: calc(100% / 7);
}
.calendar__row--headers {
  padding: 0.4rem 0;
  font-size: small;
}
.calendar__row:last-of-type .calendar__day {
  border-bottom: none;
}
.calendar__row__day, .calendar__row__day__unbookable {
  position: relative;
  padding: 13px 0;
  border: 1px solid #fff;
  background-color: #cacaca4f;
  flex-grow: 1;
  color: #707070;
}
.calendar__row__day:after {
  content: "—";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}
.calendar__row__day--not-booked {
  color: #0a0a0a;
  background-color: unset;
}
.calendar__row__day--not-booked:after {
  content: "";
}
.calendar__row__day--selected {
  background-color: #2287b5;
  color: #fff;
}
.calendar__row__day--selected .calendar__day-number {
  border: none;
}
.calendar__row__day:first-of-type {
  border-left: none;
}
.calendar__row__day:last-of-type {
  border-right: none;
}
.calendar__row__day--selectable {
  cursor: pointer;
}
.calendar__row__day--selectable span {
  border-bottom: 2px solid #2287b5 !important;
}
.calendar__header, .calendar__day {
  text-align: center;
}
.calendar__day-number {
  display: inline-block;
  width: 35px;
  height: 35px;
  line-height: 35px;
}
.calendar__day {
  position: relative;
  padding: 13px 0;
  border: 1px solid #fff;
  background-color: #cacaca4f;
  flex-grow: 1;
  color: #707070;
}
.calendar__day:after {
  content: "—";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}
.calendar__day--not-booked {
  color: #0a0a0a;
  background-color: unset;
}
.calendar__day--not-booked:after {
  content: "";
}
.calendar__day--selected {
  background-color: #2287b5;
  color: #fff;
}
.calendar__day--selected .calendar__day-number {
  border: none;
}
.calendar__day:first-of-type {
  border-left: none;
}
.calendar__day:last-of-type {
  border-right: none;
}
.calendar__day--selectable {
  cursor: pointer;
}
.calendar__day--selectable span {
  border-bottom: 2px solid #2287b5 !important;
}

.blank-date {
  background-color: white !important;
}

.month-selector {
  display: flex;
  flex-direction: row;
  align-items: center;
}
.month-selector__select {
  border: 1px solid #cacaca4f;
  border-bottom: 2px solid #cacaca4f;
  margin: 0;
  font-weight: lighter;
}
.month-selector__arrow {
  text-align: center;
  cursor: pointer;
  height: 2.4375rem;
  line-height: 2.4375rem;
  width: 50px;
  border: 1px solid #cacaca4f;
  border-bottom: none;
}
.month-selector__arrow i {
  font-size: 12px;
}

#price-info {
  text-align: center;
}
#price-info #prices s.old-price {
  text-decoration: line-through;
}
#price-info #stay-available {
  border: 1px solid black;
}

#calendar-key {
  display: flex;
  justify-content: space-around;
}
#calendar-key div {
  display: inline-block;
}
#calendar-key .calendar__day--key {
  margin-right: 0.5rem;
  display: inline-block;
  height: 1rem;
  width: 1rem;
}

.alternative-month-selector {
  flex-direction: column !important;
}
.alternative-month-selector .currentMonth,
.alternative-month-selector [data-month] {
  cursor: pointer;
}
.alternative-month-selector .mobile-month-selector {
  display: block;
}
.alternative-month-selector .desktop-month-selector {
  display: none;
}
@media (min-width: 640px) {
  .alternative-month-selector .mobile-month-selector {
    display: none;
  }
  .alternative-month-selector .desktop-month-selector {
    display: block;
  }
}
.alternative-month-selector .month-changer {
  justify-content: space-evenly;
  width: 100%;
}
.alternative-month-selector .monthSelectorDropdown {
  position: relative;
}
.alternative-month-selector .monthSelectorDropdown .currentMonth {
  width: 3rem;
  text-align: center;
}
.alternative-month-selector .monthSelectorDropdown .currentMonth .fa-solid.fa-chevron-down {
  display: inline !important;
  margin-left: 0.2rem;
}
.alternative-month-selector .monthSelectorDropdown .allMonths {
  position: absolute;
  background-color: white;
  z-index: 1;
  padding: 0 0.5rem 0.5rem 0.5rem;
  left: -2rem;
  right: -2rem;
  text-align: center;
}
.alternative-month-selector .month-display {
  width: 100%;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}
.alternative-month-selector .month-display .month-selector--individual {
  margin: auto;
}

.night-selector {
  border: 1px solid #cacaca4f;
  font-weight: lighter;
}

.calendar-price-display__book {
  padding: 1.2rem;
  border: 1px solid transparent;
  transition: background-color 0.25s ease-out, color 0.25s ease-out;
  -webkit-appearance: none;
  text-align: center;
  cursor: pointer;
  background-color: #2287b5;
  color: #fff;
  display: block;
  width: 100%;
  border-radius: 7px;
  font-weight: bold;
  font-size: 13pt;
  margin-top: 1.5rem;
}
.calendar-price-display__book:hover, .calendar-price-display__book:focus {
  background-color: #1e77a0;
  color: #fff;
}

.no-price-overlay {
  position: absolute;
  top: 0;
  bottom: 95px;
  left: 0;
  right: 0;
  background-color: #fff;
  opacity: 0.8;
  z-index: 100;
}

.no-prices-msg {
  position: absolute;
  background-color: #fee184;
  z-index: 110;
  top: 40%;
  width: 80%;
  left: 50%;
  transform: translate(-50%, -50%);
  padding: 1rem 1.2rem;
  border-radius: 5px;
  border: 2px solid #fed350;
}
.no-prices-msg i {
  font-size: 3rem;
}

/*# sourceMappingURL=calendar-css.css.map*/