/**KALENDER START V.1.1**/
/* Farvevariabler */
:root {
  --main-green: #003732;
  --main-green-dark: #00251f;
}

#from_to_btn_wrapper {
  width: 100%;
  max-width: 333px;
  box-sizing: border-box;
}


#calendar_booking_wrapper button#from_to_btn {
  width: 100%;
  max-width: 333px;
  display: flex;
  padding: 0;
  margin: 0 auto 10px auto;
  border-radius: 20px;
  outline: none;
  border: 1px solid var(--main-green);
  box-sizing: border-box;
  background: transparent;
  color: var(--main-green);
}


body[data-elementor-device-mode='mobile'] #calendar_booking_wrapper button#from_to_btn {
  width: 296px;
}

#calendar_booking_wrapper button#from_to_btn:hover {
  background: transparent;
  border-radius: 20px;
  color: #fff;
  border: 1px solid var(--main-green);
}


button#from_to_btn div.from_to_block {
  flex-basis: 50%;
  text-align: left;
  padding: 4px 0 4px 20px;
  background: #fff;
  color: var(--main-green);
}

button#from_to_btn div.from_to_block:first-child {
  border-radius: 20px 0 0 20px;
  border-right: 0;
  background: #fff;
  color: var(--main-green);
}

button#from_to_btn div.from_to_block:last-child {
  border-radius: 0 20px 20px 0;
  background: #fff;
  color: var(--main-green);
}



button#from_to_btn div.from_to_block span.from_to_label {
  display: block;
  font-size: 12px;
  font-weight: 600;
  color: var(--main-green);
}

button#from_to_btn div.from_to_block span#from_value {
  font-size: 14px;
  color: var(--main-green);
}

button#from_to_btn div.from_to_block span#to_value {
  font-size: 14px;
  color: var(--main-green);
}

#check_available_dates_wrapper button#check_available_dates_btn {
  width: 100%;
  max-width: 333px;
  background: var(--main-green);
  font-size: 16px;
  margin-bottom: 10px;
  color: #fff;
  border: 0;
  outline: none;
  transition: background 0.2s;
  box-sizing: border-box;
}

#check_available_dates_wrapper button#check_available_dates_btn:hover {
  background: var(--main-green-dark);
  color: #fff;
}
.calendar {
  background: #fff;
  padding: 10px 0;
  border-radius: 20px;
  width: 100%;
  max-width: 333px;
  display: none;
  box-sizing: border-box;
}



body[data-elementor-device-mode='mobile'] .calendar {
  width: calc(100% + 40px);
  margin-left: -20px;
}


.calendar.show {
  display: block;
}


.month-indicator {
  color: #334e68;
  text-align: center;
  font-weight: 500;
}

.day-of-week,
.date-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
}

.day-of-week {
  margin-top: 1.25em;
}

.day-of-week>div {
  font-size: 0.7em;
  color: #829ab1;
  font-weight: 500;
  letter-spacing: 0.1em;
  font-variant: small-caps;
  text-align: center;
}

/* Dates */
.date-grid {
  margin-top: 0.5em;
}

/* Positioning the first day */
.date-grid button:first-child {
  grid-column: 7;
}

#calendar_booking_wrapper .date-grid button {
  position: relative;
  border: 0;
  width: 4.5ch;
  height: 4.5ch;
  background-color: transparent;
  color: #486581;
  font-size: 16px;
  font-weight: normal;
  border-style: solid;
  border-width: 0px;
  border-color: #fff;
  border-radius: 0;
  padding: 0;
  border-radius: 50%;
}

#calendar_booking_wrapper .date-grid button.disabled {
  color: #c8cfd6;
}

#calendar_booking_wrapper .date-grid button.active:hover,
#calendar_booking_wrapper .date-grid button.active:focus {
  outline: none;
  background-color: #f0f4f8;
  color: #334e68;
}

#calendar_booking_wrapper .date-grid button.active:active,
#calendar_booking_wrapper .date-grid button.active.is-selected {
  background-color: #00342e;
  color: #014d40;
  border-radius: 50%;
  color: #fff;
}

/**KALENDER SLUT **/

.lds-ellipsis {
  display: inline-block;
  position: relative;
  width: 20px;
  height: 18px;
}

.lds-ellipsis div {
  position: absolute;

  top: 10px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #fff;
  animation-timing-function: cubic-bezier(0, 1, 1, 0);
}

.lds-ellipsis div:nth-child(1) {
  left: 8px;
  animation: lds-ellipsis1 0.6s infinite;
}

.lds-ellipsis div:nth-child(2) {
  left: 8px;
  animation: lds-ellipsis2 0.6s infinite;
}

.lds-ellipsis div:nth-child(3) {
  left: 32px;
  animation: lds-ellipsis2 0.6s infinite;
}

.lds-ellipsis div:nth-child(4) {
  left: 56px;
  animation: lds-ellipsis3 0.6s infinite;
}

@keyframes lds-ellipsis1 {
  0% {
    transform: scale(0);
  }

  100% {
    transform: scale(1);
  }
}

@keyframes lds-ellipsis3 {
  0% {
    transform: scale(1);
  }

  100% {
    transform: scale(0);
  }
}

@keyframes lds-ellipsis2 {
  0% {
    transform: translate(0, 0);
  }

  100% {
    transform: translate(24px, 0);
  }
}

#sommerhusmap button {
  border-radius: 0;
}