﻿/* =============================================================================
/* IMPORTS
/* ============================================================================= */
/* =============================================================================
/* VARIABLES
/* ============================================================================= */
/* =============================================================================
/* gallery
/* ============================================================================= */
.photoswipe-item {
  cursor: zoom-in;
}

/* =============================================================================
/* CUSTOM STYLES
/* ============================================================================= */
.spacer-slide {
  height: 200px;
  background: repeating-linear-gradient(to right, #F5F1EA, #F5F1EA 1px, #fff 1px, #fff 5px);
}
@media all and (max-width: 1024px) {
  .spacer-slide {
    height: 150px;
  }
}
@media all and (max-width: 768px) {
  .spacer-slide {
    height: 100px;
  }
}
@media all and (max-width: 414px) {
  .spacer-slide {
    height: 45px;
  }
}

.spacer {
  margin-top: 55px;
  margin-bottom: 115px;
}
@media all and (max-width: 768px) {
  .spacer {
    margin-bottom: 85px;
  }
}

.page-content a:not([href*="hotelfanes.it"]):not([href^="#"]):not([href^="/"]):after,
.teaser a:not([href*="hotelfanes.it"]):not([href^="#"]):not([href^="/"]):after,
.teaser-fullscreen a:not([href*="hotelfanes.it"]):not([href^="#"]):not([href^="/"]):after,
.links a:not([href*="hotelfanes.it"]):not([href^="#"]):not([href^="/"]):after,
.impressum a:not([href*="hotelfanes.it"]):not([href^="#"]):not([href^="/"]):after,
.privacy a:not([href*="hotelfanes.it"]):not([href^="#"]):not([href^="/"]):after,
.sitemap a:not([href*="hotelfanes.it"]):not([href^="#"]):not([href^="/"]):after,
.teaser__description a:not([href*="hotelfanes.it"]):not([href^="#"]):not([href^="/"]):after,
.main-content a:not([href*="hotelfanes.it"]):not([href^="#"]):not([href^="/"]):after,
.weather a:not([href*="hotelfanes.it"]):not([href^="#"]):not([href^="/"]):after {
  display: inline-block;
  margin-left: 5px;
  content: "\f139";
  font-size: 13px;
  font-family: "Flaticon";
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  line-height: 1;
  text-decoration: inherit;
  text-rendering: optimizeLegibility;
  text-transform: none;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  font-smoothing: antialiased;
  text-decoration: none;
}

/* =============================================================================
/* Modules
/* ============================================================================= */
/* =============================================================================
/* VARIABLES
/* ============================================================================= */ /* -----------------------------------------------------------------------------
/* buttons
/* ----------------------------------------------------------------------------- */
.button:hover, .button:focus, .button:active {
  color: #908D85;
  background-color: #F5F7FA;
  border-color: #CCD1D9;
}
.button:hover, .button:focus {
  text-decoration: none;
}
.button:active {
  background-image: none;
  outline: 0;
}

.button--border:hover, .button--border:focus, .button--border:active {
  color: #AF8F50;
  background-color: transparent;
  border-color: #AF8F50;
}

.button--primary:hover, .button--primary:focus, .button--primary:active {
  color: #fff;
  background-color: #AF8F50;
  border-color: #AF8F50;
}

.button--secondary:hover, .button--secondary:focus, .button--secondary:active {
  color: #fff;
  background-color: #15181a;
  border-color: #15181a;
}

.button--gray:hover, .button--gray:focus, .button--gray:active {
  color: #fff;
  background-color: #afb7c3;
  border-color: #afb7c3;
}

.button--empty:hover, .button--empty:focus, .button--empty:active {
  color: #AF8F50;
  background-color: transparent;
  border-color: transparent;
  -webkit-box-shadow: none;
  box-shadow: none;
}

.button-custom:hover, .button-custom:active, .button-custom:focus {
  background-color: #000;
  border: 1px solid #000;
  color: #fff;
}
.button-custom--colored:hover, .button-custom--colored:active, .button-custom--colored:focus {
  background-color: #AF8F50;
  border: 1px solid #AF8F50;
  color: #fff;
}

.button-custom-large:hover, .button-custom-large:active, .button-custom-large:focus {
  background-color: #000;
  border: 1px solid #000;
  color: #fff;
}
.button-custom-large--colored:hover, .button-custom-large--colored:active, .button-custom-large--colored:focus {
  background-color: #AF8F50;
  border: 1px solid #AF8F50;
  color: #fff;
}

.button-custom-large--special:hover, .button-custom-large--special:active, .button-custom-large--special:focus {
  color: #AF8F50;
  border-top: 1px solid #AF8F50;
  border-bottom: 1px solid #AF8F50;
}

/* =============================================================================
/* VARIABLES
/* ============================================================================= */ /* -----------------------------------------------------------------------------
/* link styles
/* ----------------------------------------------------------------------------- */
a:focus, a:hover {
  color: #2C3136;
  text-decoration: underline;
}
a:focus {
  outline: thin dotted;
  outline: 5px auto -webkit-focus-ring-color;
  outline-offset: -2px;
}

/* =============================================================================
/* VARIABLES
/* ============================================================================= */ /*---------------------------------------------------
/* modal
/*---------------------------------------------------*/
.modal {
  position: absolute;
  top: 10px;
  left: 50%;
  -moz-transform: translateX(-50%) translateY(-100px);
  -ms-transform: translateX(-50%) translateY(-100px);
  -o-transform: translateX(-50%) translateY(-100px);
  -webkit-transform: translateX(-50%) translateY(-100px);
  transform: translateX(-50%) translateY(-100px);
  opacity: 0;
  -moz-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  background: #fff;
  -moz-box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
  -webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
  padding: 10px;
  width: 70%;
  width: 70vw;
}
@media all and (max-width: 1280px) {
  .modal {
    width: 80%;
    width: 80vw;
  }
}
@media all and (max-width: 1024px) {
  .modal {
    width: 90%;
    width: 90vw;
    width: calc(100vw - 20px);
  }
}
.modal-container {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 10000;
  pointer-events: none;
}
.modal-container.modal--open {
  pointer-events: auto;
}
.modal-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.2);
  opacity: 0;
  -moz-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.modal--open .modal-overlay {
  opacity: 1;
}
.modal iframe {
  border: none;
  width: 100%;
  height: 90%;
  height: 80vh;
  display: block;
  height: calc(100vh - 40px);
}
.modal__close {
  position: absolute;
  top: 0;
  right: 0;
  display: block;
  color: #fff;
  width: 35px;
  height: 35px;
  line-height: 35px;
  text-align: center;
  background: #BA975C;
}
.modal__close:hover, .modal__close:active, .modal__close:focus {
  color: #fff;
  text-decoration: none;
}
.modal__close svg {
  width: 30px;
  height: 30px;
  display: inline-block;
  fill: #fff;
  background: #b71c07;
  padding: 7px;
}
.modal--open .modal {
  opacity: 1;
  -moz-transform: translateX(-50%) translateY(0);
  -ms-transform: translateX(-50%) translateY(0);
  -o-transform: translateX(-50%) translateY(0);
  -webkit-transform: translateX(-50%) translateY(0);
  transform: translateX(-50%) translateY(0);
  -moz-transition-delay: 0s;
  -o-transition-delay: 0s;
  -webkit-transition-delay: 0s;
  transition-delay: 0s;
}

/* =============================================================================
/* VARIABLES
/* ============================================================================= */ /* =============================================================================
/* photoswipe
/* ============================================================================= */
.pswp__thumbnails {
  position: fixed;
  bottom: 0;
  width: 100%;
  text-align: center;
  z-index: 1000000;
}
.pswp__thumbnails-inner {
  display: table;
  margin: 0 auto;
}
.pswp__thumbnails-inner img {
  cursor: pointer;
  width: 100%;
  height: auto;
  display: block;
}
.pswp__thumbnail {
  display: table-cell;
  max-width: 100px;
  opacity: 0.5;
  -webkit-transition: opacity 0.3s ease-in-out;
  -moz-transition: opacity 0.3s ease-in-out;
  transition: opacity 0.3s ease-in-out;
}
.pswp__thumbnail--active {
  opacity: 1;
}
.pswp__video {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translateX(-50%) translateY(-50%);
  -moz-transform: translateX(-50%) translateY(-50%);
  -ms-transform: translateX(-50%) translateY(-50%);
  -o-transform: translateX(-50%) translateY(-50%);
  transform: translateX(-50%) translateY(-50%);
  width: 50%;
}
@media all and (max-width: 1280px) {
  .pswp__video {
    width: 70%;
  }
}
@media all and (max-width: 1024px) {
  .pswp__video {
    width: 80%;
  }
}
@media all and (max-width: 768px) {
  .pswp__video {
    width: 90%;
  }
}
@media all and (max-width: 550px) {
  .pswp__video {
    width: 100%;
  }
}
.pswp__video iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.pswp__video-inner {
  width: 100%;
}

/* =============================================================================
/* VARIABLES
/* ============================================================================= */ /* =============================================================================
/* flatpickr
/* ============================================================================= */
.flatpickr-calendar {
  background: transparent;
  opacity: 0;
  display: none;
  text-align: center;
  visibility: hidden;
  padding: 0;
  -webkit-animation: none;
  animation: none;
  direction: ltr;
  border: 0;
  font-size: 14px;
  line-height: 24px;
  border-radius: 5px;
  position: absolute;
  width: 307.875px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  -ms-touch-action: manipulation;
  touch-action: manipulation;
  -webkit-box-shadow: 0 3px 13px rgba(0, 0, 0, 0.08);
  box-shadow: 0 3px 13px rgba(0, 0, 0, 0.08);
}
@media all and (max-width: 500px) {
  .flatpickr-calendar {
    position: fixed;
    left: 50% !important;
    top: 50% !important;
    right: auto !important;
    -webkit-transform: translateX(-50%) translateY(-50%);
    -moz-transform: translateX(-50%) translateY(-50%);
    -ms-transform: translateX(-50%) translateY(-50%);
    -o-transform: translateX(-50%) translateY(-50%);
    transform: translateX(-50%) translateY(-50%);
    -webkit-box-shadow: 0 0 1000px rgba(0, 0, 0, 0.7);
    box-shadow: 0 0 1000px rgba(0, 0, 0, 0.7);
  }
}

.flatpickr-calendar.open,
.flatpickr-calendar.inline {
  opacity: 1;
  max-height: 640px;
  visibility: visible;
}

.flatpickr-calendar.open {
  display: inline-block;
  z-index: 99999;
}

.flatpickr-calendar.animate.open {
  -webkit-animation: fpFadeInDown 300ms cubic-bezier(0.23, 1, 0.32, 1);
  animation: fpFadeInDown 300ms cubic-bezier(0.23, 1, 0.32, 1);
}
@media all and (max-width: 500px) {
  .flatpickr-calendar.animate.open {
    -webkit-animation: none;
    animation: none;
  }
}

.flatpickr-calendar.inline {
  display: block;
  position: relative;
  top: 2px;
}

.flatpickr-calendar.static {
  position: absolute;
  top: calc(100% + 2px);
}

.flatpickr-calendar.static.open {
  z-index: 999;
  display: block;
}

.flatpickr-calendar.multiMonth .flatpickr-days .dayContainer:nth-child(n+1) .flatpickr-day.inRange:nth-child(7n+7) {
  -webkit-box-shadow: none !important;
  box-shadow: none !important;
}

.flatpickr-calendar.multiMonth .flatpickr-days .dayContainer:nth-child(n+2) .flatpickr-day.inRange:nth-child(7n+1) {
  -webkit-box-shadow: -2px 0 0 #e6e6e6, 5px 0 0 #e6e6e6;
  box-shadow: -2px 0 0 #e6e6e6, 5px 0 0 #e6e6e6;
}

.flatpickr-calendar .hasWeeks .dayContainer,
.flatpickr-calendar .hasTime .dayContainer {
  border-bottom: 0;
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;
}

.flatpickr-calendar .hasWeeks .dayContainer {
  border-left: 0;
}

.flatpickr-calendar.showTimeInput.hasTime .flatpickr-time {
  height: 40px;
  border-top: 1px solid #eceef1;
}

.flatpickr-calendar.showTimeInput.hasTime .flatpickr-innerContainer {
  border-bottom: 0;
}

.flatpickr-calendar.showTimeInput.hasTime .flatpickr-time {
  border: 1px solid #eceef1;
}

.flatpickr-calendar.noCalendar.hasTime .flatpickr-time {
  height: auto;
}

.flatpickr-calendar:before,
.flatpickr-calendar:after {
  position: absolute;
  display: block;
  pointer-events: none;
  border: solid transparent;
  content: "";
  height: 0;
  width: 0;
  left: 22px;
}

.flatpickr-calendar.rightMost:before,
.flatpickr-calendar.rightMost:after {
  left: auto;
  right: 22px;
}

.flatpickr-calendar:before {
  border-width: 5px;
  margin: 0 -5px;
}

.flatpickr-calendar:after {
  border-width: 4px;
  margin: 0 -4px;
}

.flatpickr-calendar.arrowTop:before,
.flatpickr-calendar.arrowTop:after {
  bottom: 100%;
}

.flatpickr-calendar.arrowTop:before {
  border-bottom-color: #eceef1;
}

.flatpickr-calendar.arrowTop:after {
  border-bottom-color: #eceef1;
}

.flatpickr-calendar.arrowBottom:before,
.flatpickr-calendar.arrowBottom:after {
  top: 100%;
}

.flatpickr-calendar.arrowBottom:before {
  border-top-color: #eceef1;
}

.flatpickr-calendar.arrowBottom:after {
  border-top-color: #eceef1;
}

.flatpickr-calendar:focus {
  outline: 0;
}

.flatpickr-wrapper {
  position: relative;
  display: inline-block;
}

.flatpickr-months {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}

.flatpickr-months .flatpickr-month {
  border-radius: 5px 5px 0 0;
  background: #eceef1;
  color: #5a6171;
  fill: #5a6171;
  height: 28px;
  line-height: 1;
  text-align: center;
  position: relative;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  overflow: hidden;
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
}

.flatpickr-months .flatpickr-prev-month,
.flatpickr-months .flatpickr-next-month {
  text-decoration: none;
  cursor: pointer;
  position: absolute;
  top: 0px;
  line-height: 16px;
  height: 28px;
  padding: 10px;
  z-index: 3;
  color: #5a6171;
  fill: #5a6171;
}

.flatpickr-months .flatpickr-prev-month.disabled,
.flatpickr-months .flatpickr-next-month.disabled {
  display: none;
}

.flatpickr-months .flatpickr-prev-month i,
.flatpickr-months .flatpickr-next-month i {
  position: relative;
}

.flatpickr-months .flatpickr-prev-month.flatpickr-prev-month,
.flatpickr-months .flatpickr-next-month.flatpickr-prev-month {
  /*
        /*rtl:begin:ignore*/
  /*
        */
  left: 0;
  /*
        /*rtl:end:ignore*/
  /*
        */
}

/*
      /*rtl:begin:ignore*/
/*
      /*rtl:end:ignore*/
.flatpickr-months .flatpickr-prev-month.flatpickr-next-month,
.flatpickr-months .flatpickr-next-month.flatpickr-next-month {
  /*
        /*rtl:begin:ignore*/
  /*
        */
  right: 0;
  /*
        /*rtl:end:ignore*/
  /*
        */
}

/*
      /*rtl:begin:ignore*/
/*
      /*rtl:end:ignore*/
.flatpickr-months .flatpickr-prev-month:hover,
.flatpickr-months .flatpickr-next-month:hover {
  color: #bbb;
}

.flatpickr-months .flatpickr-prev-month:hover svg,
.flatpickr-months .flatpickr-next-month:hover svg {
  fill: #BA975C;
}

.flatpickr-months .flatpickr-prev-month svg,
.flatpickr-months .flatpickr-next-month svg {
  width: 14px;
  height: 14px;
}

.flatpickr-months .flatpickr-prev-month svg path,
.flatpickr-months .flatpickr-next-month svg path {
  -webkit-transition: fill 0.1s;
  transition: fill 0.1s;
  fill: inherit;
}

.numInputWrapper {
  position: relative;
  height: auto;
}

.numInputWrapper input,
.numInputWrapper span {
  display: inline-block;
}

.numInputWrapper input {
  width: 100%;
}

.numInputWrapper input::-ms-clear {
  display: none;
}

.numInputWrapper span {
  position: absolute;
  right: 0;
  width: 14px;
  padding: 0 4px 0 2px;
  height: 50%;
  line-height: 50%;
  opacity: 0;
  cursor: pointer;
  border: 1px solid rgba(72, 72, 72, 0.15);
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

.numInputWrapper span:hover {
  background: rgba(0, 0, 0, 0.1);
}

.numInputWrapper span:active {
  background: rgba(0, 0, 0, 0.2);
}

.numInputWrapper span:after {
  display: block;
  content: "";
  position: absolute;
}

.numInputWrapper span.arrowUp {
  top: 0;
  border-bottom: 0;
}

.numInputWrapper span.arrowUp:after {
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-bottom: 4px solid rgba(72, 72, 72, 0.6);
  top: 26%;
}

.numInputWrapper span.arrowDown {
  top: 50%;
}

.numInputWrapper span.arrowDown:after {
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 4px solid rgba(72, 72, 72, 0.6);
  top: 40%;
}

.numInputWrapper span svg {
  width: inherit;
  height: auto;
}

.numInputWrapper span svg path {
  fill: rgba(90, 97, 113, 0.5);
}

.numInputWrapper:hover {
  background: rgba(0, 0, 0, 0.05);
}

.numInputWrapper:hover span {
  opacity: 1;
}

.flatpickr-current-month {
  font-size: 135%;
  line-height: inherit;
  font-weight: 300;
  color: inherit;
  position: absolute;
  width: 75%;
  left: 12.5%;
  padding: 6.16px 0 0 0;
  line-height: 1;
  height: 28px;
  display: inline-block;
  text-align: center;
  -webkit-transform: translate3d(0px, 0px, 0px);
  transform: translate3d(0px, 0px, 0px);
}

.flatpickr-current-month span.cur-month {
  font-family: inherit;
  font-weight: 700;
  color: inherit;
  display: inline-block;
  margin-left: 0.5ch;
  padding: 0;
}

.flatpickr-current-month span.cur-month:hover {
  background: rgba(0, 0, 0, 0.05);
}

.flatpickr-current-month .numInputWrapper {
  width: 6ch;
  width: 7ch\0 ;
  display: inline-block;
}

.flatpickr-current-month .numInputWrapper span.arrowUp:after {
  border-bottom-color: #5a6171;
}

.flatpickr-current-month .numInputWrapper span.arrowDown:after {
  border-top-color: #5a6171;
}

.flatpickr-current-month input.cur-year {
  background: transparent;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  color: inherit;
  cursor: text;
  padding: 0 0 0 0.5ch;
  margin: 0;
  display: inline-block;
  font-size: inherit;
  font-family: inherit;
  font-weight: 300;
  line-height: inherit;
  height: auto;
  border: 0;
  border-radius: 0;
  vertical-align: initial;
}

.flatpickr-current-month input.cur-year:focus {
  outline: 0;
}

.flatpickr-current-month input.cur-year[disabled],
.flatpickr-current-month input.cur-year[disabled]:hover {
  font-size: 100%;
  color: rgba(90, 97, 113, 0.5);
  background: transparent;
  pointer-events: none;
}

.flatpickr-weekdays {
  background: #eceef1;
  text-align: center;
  overflow: hidden;
  width: 100%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  height: 28px;
}

.flatpickr-weekdays .flatpickr-weekdaycontainer {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
}

span.flatpickr-weekday {
  cursor: default;
  font-size: 90%;
  background: #eceef1;
  color: #5a6171;
  line-height: 1;
  margin: 0;
  text-align: center;
  display: block;
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
  font-weight: bolder;
}

.dayContainer,
.flatpickr-weeks {
  padding: 1px 0 0 0;
}

.flatpickr-days {
  position: relative;
  overflow: hidden;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
  -ms-flex-align: start;
  align-items: flex-start;
  width: 307.875px;
  border-left: 1px solid #eceef1;
  border-right: 1px solid #eceef1;
}

.flatpickr-days:focus {
  outline: 0;
}

.dayContainer {
  padding: 0;
  outline: 0;
  text-align: left;
  width: 307.875px;
  min-width: 307.875px;
  max-width: 307.875px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  display: inline-block;
  display: -ms-flexbox;
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-around;
  justify-content: space-around;
  -webkit-transform: translate3d(0px, 0px, 0px);
  transform: translate3d(0px, 0px, 0px);
  opacity: 1;
}

.dayContainer + .dayContainer {
  -webkit-box-shadow: -1px 0 0 #eceef1;
  box-shadow: -1px 0 0 #eceef1;
}

.flatpickr-day {
  background: none;
  border: 1px solid transparent;
  border-radius: 150px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  color: #484848;
  cursor: pointer;
  font-weight: 400;
  width: 14.2857143%;
  -webkit-flex-basis: 14.2857143%;
  -ms-flex-preferred-size: 14.2857143%;
  flex-basis: 14.2857143%;
  max-width: 39px;
  height: 39px;
  line-height: 39px;
  margin: 0;
  display: inline-block;
  position: relative;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}

.flatpickr-day.inRange,
.flatpickr-day.prevMonthDay.inRange,
.flatpickr-day.nextMonthDay.inRange,
.flatpickr-day.today.inRange,
.flatpickr-day.prevMonthDay.today.inRange,
.flatpickr-day.nextMonthDay.today.inRange,
.flatpickr-day:hover,
.flatpickr-day.prevMonthDay:hover,
.flatpickr-day.nextMonthDay:hover,
.flatpickr-day:focus,
.flatpickr-day.prevMonthDay:focus,
.flatpickr-day.nextMonthDay:focus {
  cursor: pointer;
  outline: 0;
  background: #e2e2e2;
  border-color: #e2e2e2;
}

.flatpickr-day.today {
  border-color: #bbb;
}

.flatpickr-day.today:hover,
.flatpickr-day.today:focus {
  border-color: #bbb;
  background: #bbb;
  color: #fff;
}

.flatpickr-day.selected,
.flatpickr-day.startRange,
.flatpickr-day.endRange,
.flatpickr-day.selected.inRange,
.flatpickr-day.startRange.inRange,
.flatpickr-day.endRange.inRange,
.flatpickr-day.selected:focus,
.flatpickr-day.startRange:focus,
.flatpickr-day.endRange:focus,
.flatpickr-day.selected:hover,
.flatpickr-day.startRange:hover,
.flatpickr-day.endRange:hover,
.flatpickr-day.selected.prevMonthDay,
.flatpickr-day.startRange.prevMonthDay,
.flatpickr-day.endRange.prevMonthDay,
.flatpickr-day.selected.nextMonthDay,
.flatpickr-day.startRange.nextMonthDay,
.flatpickr-day.endRange.nextMonthDay {
  background: #BA975C;
  -webkit-box-shadow: none;
  box-shadow: none;
  color: #fff;
  border-color: #BA975C;
}

.flatpickr-day.selected.startRange,
.flatpickr-day.startRange.startRange,
.flatpickr-day.endRange.startRange {
  border-radius: 50px 0 0 50px;
}

.flatpickr-day.selected.endRange,
.flatpickr-day.startRange.endRange,
.flatpickr-day.endRange.endRange {
  border-radius: 0 50px 50px 0;
}

.flatpickr-day.selected.startRange + .endRange:not(:nth-child(7n+1)),
.flatpickr-day.startRange.startRange + .endRange:not(:nth-child(7n+1)),
.flatpickr-day.endRange.startRange + .endRange:not(:nth-child(7n+1)) {
  -webkit-box-shadow: -10px 0 0 #BA975C;
  box-shadow: -10px 0 0 #BA975C;
}

.flatpickr-day.selected.startRange.endRange,
.flatpickr-day.startRange.startRange.endRange,
.flatpickr-day.endRange.startRange.endRange {
  border-radius: 50px;
}

.flatpickr-day.inRange {
  border-radius: 0;
  -webkit-box-shadow: -5px 0 0 #e2e2e2, 5px 0 0 #e2e2e2;
  box-shadow: -5px 0 0 #e2e2e2, 5px 0 0 #e2e2e2;
}

.flatpickr-day.disabled,
.flatpickr-day.disabled:hover,
.flatpickr-day.prevMonthDay,
.flatpickr-day.nextMonthDay,
.flatpickr-day.notAllowed,
.flatpickr-day.notAllowed.prevMonthDay,
.flatpickr-day.notAllowed.nextMonthDay {
  color: rgba(72, 72, 72, 0.3);
  background: transparent;
  border-color: transparent;
  cursor: default;
}

.flatpickr-day.disabled,
.flatpickr-day.disabled:hover {
  cursor: not-allowed;
  color: rgba(72, 72, 72, 0.1);
}

.flatpickr-day.week.selected {
  border-radius: 0;
  -webkit-box-shadow: -5px 0 0 #BA975C, 5px 0 0 #BA975C;
  box-shadow: -5px 0 0 #BA975C, 5px 0 0 #BA975C;
}

.flatpickr-day.hidden {
  visibility: hidden;
}

.rangeMode .flatpickr-day {
  margin-top: 1px;
}

.flatpickr-weekwrapper {
  display: inline-block;
  float: left;
}

.flatpickr-weekwrapper .flatpickr-weeks {
  padding: 0 12px;
  border-left: 1px solid #eceef1;
}

.flatpickr-weekwrapper .flatpickr-weekday {
  float: none;
  width: 100%;
  line-height: 28px;
}

.flatpickr-weekwrapper span.flatpickr-day,
.flatpickr-weekwrapper span.flatpickr-day:hover {
  display: block;
  width: 100%;
  max-width: none;
  color: rgba(72, 72, 72, 0.3);
  background: transparent;
  cursor: default;
  border: none;
}

.flatpickr-innerContainer {
  display: block;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  overflow: hidden;
  background: #fff;
  border-bottom: 1px solid #eceef1;
}

.flatpickr-rContainer {
  display: inline-block;
  padding: 0;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

.flatpickr-time {
  text-align: center;
  outline: 0;
  display: block;
  height: 0;
  line-height: 40px;
  max-height: 40px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  overflow: hidden;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  background: #fff;
  border-radius: 0 0 5px 5px;
}

.flatpickr-time:after {
  content: "";
  display: table;
  clear: both;
}

.flatpickr-time .numInputWrapper {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
  width: 40%;
  height: 40px;
  float: left;
}

.flatpickr-time .numInputWrapper span.arrowUp:after {
  border-bottom-color: #484848;
}

.flatpickr-time .numInputWrapper span.arrowDown:after {
  border-top-color: #484848;
}

.flatpickr-time.hasSeconds .numInputWrapper {
  width: 26%;
}

.flatpickr-time.time24hr .numInputWrapper {
  width: 49%;
}

.flatpickr-time input {
  background: transparent;
  -webkit-box-shadow: none;
  box-shadow: none;
  border: 0;
  border-radius: 0;
  text-align: center;
  margin: 0;
  padding: 0;
  height: inherit;
  line-height: inherit;
  color: #484848;
  font-size: 14px;
  position: relative;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

.flatpickr-time input.flatpickr-hour {
  font-weight: bold;
}

.flatpickr-time input.flatpickr-minute,
.flatpickr-time input.flatpickr-second {
  font-weight: 400;
}

.flatpickr-time input:focus {
  outline: 0;
  border: 0;
}

.flatpickr-time .flatpickr-time-separator,
.flatpickr-time .flatpickr-am-pm {
  height: inherit;
  display: inline-block;
  float: left;
  line-height: inherit;
  color: #484848;
  font-weight: bold;
  width: 2%;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-align-self: center;
  -ms-flex-item-align: center;
  align-self: center;
}

.flatpickr-time .flatpickr-am-pm {
  outline: 0;
  width: 18%;
  cursor: pointer;
  text-align: center;
  font-weight: 400;
}

.flatpickr-time input:hover,
.flatpickr-time .flatpickr-am-pm:hover,
.flatpickr-time input:focus,
.flatpickr-time .flatpickr-am-pm:focus {
  background: #efefef;
}

.flatpickr-input[readonly] {
  cursor: pointer;
}

@-webkit-keyframes fpFadeInDown {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, -20px, 0);
    transform: translate3d(0, -20px, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes fpFadeInDown {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, -20px, 0);
    transform: translate3d(0, -20px, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
span.flatpickr-day.selected {
  font-weight: bold;
}

/*
Flaticon icon font: Flaticon
Creation date: 18/04/2019 06:26
*/
@font-face {
  font-family: "Flaticon";
  src: url("/media/fonts/Flaticon.eot");
  src: url("/media/fonts/Flaticon.eot?#iefix") format("embedded-opentype"), url("/media/fonts/Flaticon.woff") format("woff"), url("/media/fonts/Flaticon.ttf") format("truetype"), url("/media/fonts/Flaticon.svg#Flaticon") format("svg");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
@media screen and (-webkit-min-device-pixel-ratio: 0) {
  @font-face {
    font-family: "Flaticon";
    src: url("/media/fonts/Flaticon.svg#Flaticon") format("svg");
    font-display: swap;
  }
}
.fi:before,
[class^=flaticon-]:before, [class*=" flaticon-"]:before,
[class^=flaticon-]:after, [class*=" flaticon-"]:after {
  display: inline-block;
  font-size: 20px;
  font-family: "Flaticon";
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  line-height: 1;
  text-decoration: inherit;
  text-rendering: optimizeLegibility;
  text-transform: none;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  font-smoothing: antialiased;
}

.flaticon-way:before {
  content: "\f100";
}

.flaticon-gps:before {
  content: "\f101";
}

.flaticon-helicopter:before {
  content: "\f102";
}

.flaticon-fork:before {
  content: "\f103";
}

.flaticon-forecast:before {
  content: "\f104";
}

.flaticon-plug:before {
  content: "\f105";
}

.flaticon-flower:before {
  content: "\f106";
}

.flaticon-map:before {
  content: "\f107";
}

.flaticon-blueprint:before {
  content: "\f108";
}

.flaticon-charger:before {
  content: "\f109";
}

.flaticon-next:before {
  content: "\f10a";
}

.flaticon-back:before {
  content: "\f10b";
}

.flaticon-champagne:before {
  content: "\f10c";
}

.flaticon-cocktail:before {
  content: "\f10d";
}

.flaticon-serve:before {
  content: "\f10e";
}

.flaticon-waiter:before {
  content: "\f10f";
}

.flaticon-tray:before {
  content: "\f110";
}

.flaticon-fork-1:before {
  content: "\f111";
}

.flaticon-contact:before {
  content: "\f112";
}

.flaticon-shopping-bag:before {
  content: "\f113";
}

.flaticon-edit:before {
  content: "\f114";
}

.flaticon-phone:before {
  content: "\f115";
}

.flaticon-slide:before {
  content: "\f116";
}

.flaticon-telephone:before {
  content: "\f117";
}

.flaticon-envelope:before {
  content: "\f118";
}

.flaticon-key:before {
  content: "\f119";
}

.flaticon-fitness:before {
  content: "\f11a";
}

.flaticon-brush:before {
  content: "\f11b";
}

.flaticon-next-1:before {
  content: "\f11c";
}

.flaticon-left-arrow:before {
  content: "\f11d";
}

.flaticon-down-arrow:before {
  content: "\f11e";
}

.flaticon-up-arrow:before {
  content: "\f11f";
}

.flaticon-lotus:before {
  content: "\f120";
}

.flaticon-calendar:before {
  content: "\f121";
}

.flaticon-room-key:before {
  content: "\f122";
}

.flaticon-luggage:before {
  content: "\f123";
}

.flaticon-bar-service:before {
  content: "\f124";
}

.flaticon-swimming-pool:before {
  content: "\f125";
}

.flaticon-payment:before {
  content: "\f126";
}

.flaticon-service:before {
  content: "\f127";
}

.flaticon-check-in:before {
  content: "\f128";
}

.flaticon-lamp:before {
  content: "\f129";
}

.flaticon-taxi:before {
  content: "\f12a";
}

.flaticon-gift:before {
  content: "\f12b";
}

.flaticon-right:before {
  content: "\f12c";
}

.flaticon-left:before {
  content: "\f12d";
}

.flaticon-maps-and-flags:before {
  content: "\f12e";
}

.flaticon-tripadvisor-logotype:before {
  content: "\f12f";
}

.flaticon-facebook-letter-logo:before {
  content: "\f130";
}

.flaticon-youtube-play-button:before {
  content: "\f131";
}

.flaticon-photo:before {
  content: "\f132";
}

.flaticon-gift-1:before {
  content: "\f133";
}

.flaticon-door-hanger:before {
  content: "\f134";
}

.flaticon-iconholidaycheck:before {
  content: "\f135";
}

.flaticon-home:before {
  content: "\f136";
}

.flaticon-magnifying-glass:before {
  content: "\f137";
}

.flaticon-heart:before {
  content: "\f138";
}

.flaticon-sign:before {
  content: "\f139";
}

.flaticon-whatsapp:before {
  content: "\f13a";
}

/* =============================================================================
/* VARIABLES
/* ============================================================================= */
.menu-bottom {
  text-align: center;
  display: -webkit-box;
  display: -moz-box;
  display: box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -moz-box-orient: horizontal;
  box-orient: horizontal;
  -webkit-box-direction: normal;
  -moz-box-direction: normal;
  box-direction: normal;
  -webkit-flex-direction: row;
  -moz-flex-direction: row;
  flex-direction: row;
  -ms-flex-direction: row;
}
.menu-bottom__home {
  display: none;
}
.menu-bottom__outer-container {
  position: relative;
  display: -webkit-box;
  display: -moz-box;
  display: box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-flex: 1;
  -moz-box-flex: 1;
  box-flex: 1;
  -webkit-flex: 1 1 auto;
  -moz-flex: 1 1 auto;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
  -webkit-box-align: center;
  -moz-box-align: center;
  box-align: center;
  -webkit-align-items: center;
  -moz-align-items: center;
  -ms-align-items: center;
  -o-align-items: center;
  align-items: center;
  -ms-flex-align: center;
  height: calc(100vh - 115px);
  overflow: hidden;
}
@media all and (max-width: 1460px) {
  .menu-bottom__outer-container {
    height: calc(100vh - 150px);
  }
}
@media all and (max-width: 768px) {
  .menu-bottom__outer-container {
    padding-top: 85px;
  }
}
@media all and (max-height: 800px) {
  .menu-bottom__outer-container {
    display: block;
    padding-top: 85px;
    height: auto;
  }
}
.menu-bottom__outer-container:before {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.6);
  content: "";
  z-index: 5;
}
.menu-bottom--home .menu-bottom__outer-container {
  height: auto;
}
.menu-bottom__image-container {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
}
.menu-bottom__image {
  height: 100%;
  width: auto;
}
.menu-bottom__container {
  max-width: 1024px;
  margin: 0 auto;
  position: relative;
  padding-top: 190px;
  z-index: 10;
}
@media all and (max-width: 68.375em) {
  .menu-bottom__container {
    padding-left: 35px;
    padding-right: 35px;
  }
}
@media all and (max-width: 768px) {
  .menu-bottom__container {
    padding-top: 70px;
  }
}
@media all and (max-width: 667px) {
  .menu-bottom__container {
    padding-top: 80px;
  }
}
@media all and (max-height: 800px) {
  .menu-bottom__container {
    padding-top: 110px;
  }
}
@media all and (max-height: 800px) and (max-width: 414px) {
  .menu-bottom__container {
    padding-top: 80px;
  }
}
.menu-bottom--home .menu-bottom__container {
  padding-top: 80px;
}
.menu-bottom__title {
  font-family: "Merriweather", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  color: #fff;
  font-size: 2.1875em;
  line-height: 1.4285714286;
  letter-spacing: 0.2em;
}
@media all and (max-width: 1024px) {
  .menu-bottom__title {
    font-size: 1.9375em;
    line-height: 1.4838709677;
  }
}
@media all and (max-width: 768px) {
  .menu-bottom__title {
    font-size: 1.625em;
    line-height: 1.5769230769;
  }
}
@media all and (max-width: 414px) {
  .menu-bottom__title {
    font-size: 1.5625em;
    line-height: 1.4;
    padding: 0 20px;
  }
}
@media all and (max-width: 400px) {
  .menu-bottom__title {
    padding: 0;
    font-size: 1.4375em;
  }
}
.menu-bottom .page-content {
  width: 100%;
  padding-top: 80px;
}
@media all and (max-width: 84.375em) {
  .menu-bottom .page-content {
    padding-top: 130px;
  }
}
@media all and (max-width: 1000px) {
  .menu-bottom .page-content {
    padding-right: 50px;
  }
}
@media all and (max-width: 900px) {
  .menu-bottom .page-content {
    padding-right: 100px;
  }
}
@media all and (max-width: 667px) {
  .menu-bottom .page-content {
    padding-right: 30px;
  }
}
.menu-bottom__scroll-up {
  border: none;
  background: none;
  padding: 0;
  margin: 0;
  outline: none;
  cursor: pointer;
}
@media all and (max-width: 1000px) {
  .menu-bottom__scroll-up {
    margin-left: 50px;
  }
}
@media all and (max-width: 900px) {
  .menu-bottom__scroll-up {
    margin-top: 20px;
    margin-left: 100px;
  }
}
@media all and (max-width: 667px) {
  .menu-bottom__scroll-up {
    margin-left: 30px;
  }
}
.menu-bottom__scroll-up:before {
  font-size: 30px;
}
.menu-bottom__icon-container {
  display: inline-block;
  margin-top: 15px;
  padding-top: 20px;
  border-top: 2px solid #BA975C;
}
@media all and (max-width: 414px) {
  .menu-bottom__icon-container {
    border-top: 1px solid #BA975C;
  }
}
.menu-bottom__icon {
  margin: 0 4px;
  color: #fff;
  width: 50px;
  height: 50px;
  display: inline-block;
  border-radius: 50%;
  background-color: #BA975C;
  position: relative;
  -webkit-transition: 0.3s ease-in-out;
  -moz-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}
.menu-bottom__icon:before {
  top: 50%;
  position: absolute;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
  left: 0;
  right: 0;
}
.menu-bottom__icon:focus, .menu-bottom__icon:hover, .menu-bottom__icon:active {
  color: #AF8F50;
  background-color: #fff;
  text-decoration: none;
}

@supports (-o-object-fit: cover) {
  .menu-bottom__image {
    -o-object-fit: cover;
    object-fit: cover;
    height: 100%;
    width: 100%;
  }
}
@supports (object-fit: cover) {
  .menu-bottom__image {
    -o-object-fit: cover;
    object-fit: cover;
    height: 100%;
    width: 100%;
  }
}
.box-address {
  padding-top: 20px;
  font-family: "Merriweather", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  color: #fff;
  font-style: italic;
  font-size: 0.9375em;
  line-height: 2.6666666667;
  letter-spacing: 0.2em;
}
@media all and (max-width: 768px) {
  .box-address {
    font-size: 0.875em;
  }
}
@media all and (max-width: 414px) {
  .box-address {
    font-size: 0.8125em;
    line-height: 1.7692307692;
    padding-top: 25px;
  }
}
@media all and (max-width: 768px) {
  .box-address__container {
    margin-bottom: 20px;
  }
}
.box-address a {
  color: #fff;
}
.box-address a:focus, .box-address a:hover, .box-address a:active {
  color: #AF8F50;
  text-decoration: underline;
}
@media all and (max-width: 667px) {
  .box-address__item {
    display: block;
  }
}
@media all and (max-width: 667px) {
  .box-address__spacer {
    display: none;
  }
}
@media all and (max-width: 768px) {
  .box-address__name {
    display: block;
  }
}
@media all and (max-width: 768px) {
  .box-address__name-spacer {
    display: none;
  }
}

.nav-bottom {
  padding: 50px 0;
  font-family: "Merriweather", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  color: #AF8F50;
  font-style: italic;
  font-size: 0.625em;
  line-height: 1.3;
  letter-spacing: 0.2em;
}
@media all and (max-width: 414px) {
  .nav-bottom {
    font-size: 0.5625em;
    line-height: 1.2222222222;
    padding: 35px 0;
  }
}
.nav-bottom a:focus, .nav-bottom a:hover, .nav-bottom a:active {
  color: #AF8F50;
  text-decoration: underline;
}
.nav-bottom .logo-consisto {
  margin-top: 18px;
}

/* =============================================================================
/* VARIABLES
/* ============================================================================= */ /* -----------------------------------------------------------------------------
/* newsletter-teaser
/* ----------------------------------------------------------------------------- */
.newsletter-teaser {
  background-color: #2C3136;
  padding: 70px 0;
}
@media all and (max-width: 1024px) {
  .newsletter-teaser {
    padding: 65px 0;
  }
}
@media all and (max-width: 768px) {
  .newsletter-teaser {
    padding: 55px 0;
  }
}
@media all and (max-width: 667px) {
  .newsletter-teaser {
    padding: 50px 0;
  }
}
@media all and (max-width: 414px) {
  .newsletter-teaser {
    padding: 45px 0;
  }
}
.newsletter-teaser__container {
  -webkit-box-align: center;
  -moz-box-align: center;
  box-align: center;
  -webkit-align-items: center;
  -moz-align-items: center;
  -ms-align-items: center;
  -o-align-items: center;
  align-items: center;
  -ms-flex-align: center;
  -webkit-box-pack: justify;
  -moz-box-pack: justify;
  box-pack: justify;
  -webkit-justify-content: space-between;
  -moz-justify-content: space-between;
  -ms-justify-content: space-between;
  -o-justify-content: space-between;
  justify-content: space-between;
  -ms-flex-pack: justify;
}
@media all and (max-width: 750px) {
  .newsletter-teaser__container {
    -webkit-box-orient: vertical;
    -moz-box-orient: vertical;
    box-orient: vertical;
    -webkit-box-direction: normal;
    -moz-box-direction: normal;
    box-direction: normal;
    -webkit-flex-direction: column;
    -moz-flex-direction: column;
    flex-direction: column;
    -ms-flex-direction: column;
  }
}
.newsletter-teaser__title {
  font-size: 1.875em;
  line-height: 1.3333333333;
  letter-spacing: 0.2em;
  font-family: "Merriweather", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  color: #fff;
  text-transform: uppercase;
  padding-bottom: 15px;
}
@media all and (max-width: 1024px) {
  .newsletter-teaser__title {
    font-size: 1.6875em;
    line-height: 1.3703703704;
  }
}
@media all and (max-width: 768px) {
  .newsletter-teaser__title {
    font-size: 1.5em;
    line-height: 1.4166666667;
  }
}
@media all and (max-width: 667px) {
  .newsletter-teaser__title {
    font-size: 1.375em;
    line-height: 1.4545454545;
  }
}
@media all and (max-width: 414px) {
  .newsletter-teaser__title {
    font-size: 1.25em;
    line-height: 1.5;
  }
}
.newsletter-teaser__subtitle {
  font-size: 1.25em;
  line-height: 1.5;
  font-family: "Merriweather", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  font-style: italic;
  color: #AF8F50;
}
@media all and (max-width: 1024px) {
  .newsletter-teaser__subtitle {
    font-size: 1.125em;
    line-height: 1.5555555556;
  }
}
@media all and (max-width: 768px) {
  .newsletter-teaser__subtitle {
    font-size: 1.0625em;
    line-height: 1.5882352941;
  }
}
@media all and (max-width: 667px) {
  .newsletter-teaser__subtitle {
    font-size: 1em;
    line-height: 1.625;
  }
}
@media all and (max-width: 414px) {
  .newsletter-teaser__subtitle {
    font-size: 0.9375em;
    line-height: 1.6666666667;
  }
}
.newsletter-teaser__text-container {
  width: 100%;
  position: relative;
  min-height: 1px;
  float: left;
  -webkit-box-flex: 0;
  -moz-box-flex: 0;
  box-flex: 0;
  -webkit-flex: 0 0 auto;
  -moz-flex: 0 0 auto;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  max-width: 50%;
  -ms-flex-preferred-size: 50%;
  -webkit-flex-basis: 50%;
  -moz-flex-basis: 50%;
  flex-basis: 50%;
  -ms-flex-preferred-size: 50%;
}
@media all and (max-width: 750px) {
  .newsletter-teaser__text-container {
    width: 100%;
    position: relative;
    min-height: 1px;
    float: left;
    -webkit-box-flex: 0;
    -moz-box-flex: 0;
    box-flex: 0;
    -webkit-flex: 0 0 auto;
    -moz-flex: 0 0 auto;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    max-width: 100%;
    -ms-flex-preferred-size: 100%;
    -webkit-flex-basis: 100%;
    -moz-flex-basis: 100%;
    flex-basis: 100%;
    -ms-flex-preferred-size: 100%;
    margin-bottom: 30px;
    text-align: center;
  }
}
@media all and (max-width: 414px) {
  .newsletter-teaser__link-container {
    width: 100%;
  }
}
.newsletter-teaser__link {
  position: relative;
  display: inline-block;
  color: #BA975C;
  font-size: 1.25em;
  line-height: 1.25;
  font-style: italic;
  padding: 35px 0;
  padding-right: 40px;
  min-width: 340px;
  border-top: 1px solid #BA975C;
  border-bottom: 1px solid #BA975C;
}
@media all and (max-width: 1024px) {
  .newsletter-teaser__link {
    padding: 30px 0;
    padding-right: 40px;
  }
}
@media all and (max-width: 768px) {
  .newsletter-teaser__link {
    padding: 25px 0;
    padding-right: 40px;
  }
}
@media all and (max-width: 667px) {
  .newsletter-teaser__link {
    padding: 20px 0;
    padding-right: 40px;
  }
}
@media all and (max-width: 414px) {
  .newsletter-teaser__link {
    padding-right: 0;
    min-width: 100%;
    text-align: center;
  }
}
.newsletter-teaser__link:focus, .newsletter-teaser__link:hover, .newsletter-teaser__link:active {
  color: #BA975C;
  text-decoration: underline;
}
.newsletter-teaser__link:focus:before, .newsletter-teaser__link:hover:before, .newsletter-teaser__link:active:before {
  text-decoration: none;
}
.newsletter-teaser__link:before {
  position: absolute;
  right: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
  font-size: 38px;
}
@media all and (max-width: 414px) {
  .newsletter-teaser__link:before {
    display: none;
  }
}

/* =============================================================================
/* VARIABLES
/* ============================================================================= */ /* =============================================================================
/* contact-question
/* ============================================================================= */
.contact-question {
  background-color: #F5F3EF;
  text-align: center;
  padding-top: 90px;
  padding-bottom: 100px;
}
.contact-question__container {
  max-width: 700px;
  margin: 0 auto;
}
@media all and (max-width: 770px) {
  .contact-question__container {
    padding-left: 35px;
    padding-right: 35px;
  }
}
.contact-question__title {
  font-size: 1.5625em;
  line-height: 1.6;
  letter-spacing: 0.2em;
  font-family: "Merriweather", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  color: #2C3136;
  font-weight: 700;
  text-transform: uppercase;
  padding-bottom: 20px;
}
@media all and (max-width: 768px) {
  .contact-question__title {
    font-size: 1.5em;
    line-height: 1.4166666667;
  }
}
@media all and (max-width: 667px) {
  .contact-question__title {
    font-size: 1.375em;
    line-height: 1.4545454545;
  }
}
@media all and (max-width: 414px) {
  .contact-question__title {
    font-size: 1.25em;
    line-height: 1.5;
  }
}
.contact-question__content {
  font-size: 1.25em;
  line-height: 1.5;
  font-family: "Merriweather", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  font-style: italic;
  color: #BA975C;
  font-weight: 300;
  margin-bottom: 50px;
}
@media all and (max-width: 1024px) {
  .contact-question__content {
    font-size: 1.125em;
    line-height: 1.5555555556;
  }
}
@media all and (max-width: 768px) {
  .contact-question__content {
    font-size: 1.0625em;
    line-height: 1.5882352941;
    margin-bottom: 30px;
  }
}
@media all and (max-width: 667px) {
  .contact-question__content {
    font-size: 1em;
    line-height: 1.625;
  }
}
@media all and (max-width: 414px) {
  .contact-question__content {
    font-size: 0.9375em;
    line-height: 1.6666666667;
    margin-bottom: 20px;
  }
}
.contact-question__link {
  display: inline-block;
  margin: 0 45px;
}
@media all and (max-width: 414px) {
  .contact-question__link {
    margin: 15px 45px;
  }
}
.contact-question__link:hover, .contact-question__link:focus, .contact-question__link:active {
  color: #AF8F50;
  text-decoration: none;
}
.contact-question__link:hover .contact-question__link-text, .contact-question__link:focus .contact-question__link-text, .contact-question__link:active .contact-question__link-text {
  text-decoration: none;
  color: #AF8F50;
  padding-bottom: 10px;
}
.contact-question__link:hover .contact-question__link-line, .contact-question__link:focus .contact-question__link-line, .contact-question__link:active .contact-question__link-line {
  background-color: #AF8F50;
}
.contact-question__link:before {
  opacity: 0.4;
  font-size: 45px;
  margin-bottom: 30px;
}
.contact-question__link-text {
  display: block;
  font-size: 1.25em;
  line-height: 1.25;
  letter-spacing: 0.1em;
  font-family: "Merriweather", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  font-style: italic;
  font-weight: 700;
  color: #BA975C;
  padding-bottom: 25px;
  -webkit-transition: padding 0.2s ease-in-out;
  -moz-transition: padding 0.2s ease-in-out;
  transition: padding 0.2s ease-in-out;
}
@media all and (max-width: 1024px) {
  .contact-question__link-text {
    font-size: 1.125em;
    line-height: 1.2777777778;
  }
}
@media all and (max-width: 768px) {
  .contact-question__link-text {
    font-size: 1.0625em;
    line-height: 1.2941176471;
  }
}
@media all and (max-width: 667px) {
  .contact-question__link-text {
    font-size: 1em;
    line-height: 1.3125;
  }
}
@media all and (max-width: 414px) {
  .contact-question__link-text {
    font-size: 0.9375em;
    line-height: 1;
    padding-bottom: 20px;
  }
}
.contact-question__link-line {
  width: 70px;
  height: 1px;
  background-color: #BA975C;
  display: block;
  margin: 0 auto;
}

.map {
  margin-top: 100px;
  overflow-x: auto;
  position: relative;
  padding-bottom: 120px;
}
@media all and (max-width: 1024px) {
  .map {
    margin-top: 70px;
  }
}
@media all and (max-width: 915px) {
  .map {
    padding-bottom: 0;
  }
}
@media all and (max-width: 768px) {
  .map {
    margin-top: 70px;
  }
}
.map__image {
  display: block;
  margin: 0 auto;
}
@media all and (max-width: 950px) {
  .map__image {
    padding-right: 35px;
  }
}
.map .flaticon-slide {
  display: none;
  margin-top: 40px;
  text-align: center;
}
@media all and (max-width: 915px) {
  .map .flaticon-slide {
    display: block;
  }
}
.map .flaticon-slide:before {
  font-size: 50px;
  color: #2C3136;
}
.map .spacer-slide {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: -1;
  height: 320px;
}
@media all and (max-width: 915px) {
  .map .spacer-slide {
    display: none;
  }
}

.privacy,
.sitemap,
.impressum,
.e404 {
  padding-top: 15px;
  padding-bottom: 100px;
}
@media all and (max-width: 768px) {
  .privacy,
  .sitemap,
  .impressum,
  .e404 {
    padding-bottom: 75px;
  }
}
@media all and (max-width: 414px) {
  .privacy,
  .sitemap,
  .impressum,
  .e404 {
    padding-top: 14px;
    padding-bottom: 40px;
  }
}
.privacy a,
.sitemap a,
.impressum a,
.e404 a {
  word-break: break-all;
}
.privacy strong,
.sitemap strong,
.impressum strong,
.e404 strong {
  word-break: break-all;
}

.e404 {
  font-size: 1.3125em;
  line-height: 1.7142857143;
}
@media all and (max-width: 768px) {
  .e404 {
    font-size: 1.125em;
    line-height: 1.6666666667;
  }
}
@media all and (max-width: 414px) {
  .e404 {
    font-size: 0.875em;
    line-height: 1.5714285714;
  }
}

#rxdeposit-container .h-wi-button {
  background-color: #BA975C !important;
}
#rxdeposit-container .h-wi-button:hover, #rxdeposit-container .h-wi-button:focus, #rxdeposit-container .h-wi-button:active {
  background-color: #AF8F50 !important;
}
#rxdeposit-container .h-wi-row {
  background-color: #e9ebef !important;
}

.no-data {
  text-align: center;
  margin-bottom: 85px;
  font-size: 0.9375em;
  line-height: 1.6666666667;
}
@media all and (max-width: 768px) {
  .no-data {
    font-size: 0.875em;
    line-height: 1.7142857143;
  }
}
@media all and (max-width: 414px) {
  .no-data {
    font-size: 0.8125em;
    line-height: 1.7692307692;
  }
}

.logo-consisto {
  background: transparent url(https://www.consisto.it/media/logos/consisto-heart-white-25.svg) no-repeat 0 0;
  height: 22px;
  width: 25px;
  display: inline-block;
  position: relative;
}
@media all and (max-width: 414px) {
  .logo-consisto {
    display: block;
    margin: 0 auto;
  }
}
.logo-consisto:hover, .logo-consisto:focus, .logo-consisto:active {
  background: transparent url(https://www.consisto.it/media/logos/consisto-heart-red-25.svg) no-repeat 0 0;
}

/* =============================================================================
/* smartPay
/* ============================================================================= */
.hgPaymentWidget {
  color: #908D85 !important;
  margin: 0 auto;
}
.hgPaymentWidget .hgpButton.hgpButtonPrimary {
  background-color: #BA975C;
}
.hgPaymentWidget .hgpButton.hgpButtonPrimary:hover, .hgPaymentWidget .hgpButton.hgpButtonPrimary:focus, .hgPaymentWidget .hgpButton.hgpButtonPrimary:active {
  background-color: #AF8F50;
}
.hgPaymentWidget .hgpButton:hover, .hgPaymentWidget .hgpButton:focus, .hgPaymentWidget .hgpButton:active {
  text-decoration: none;
}

.hgPaymentWidget .hgpProgress {
  border-bottom: 5px solid #BA975C !important;
}

.hgPaymentWidget .hgpProgress .hgpStepActive .hgpRect {
  background-color: #BA975C !important;
  color: #fff !important;
}

.hgPaymentWidget .hgpProgress .hgpRect {
  border: 1px solid #BA975C !important;
  color: #BA975C !important;
}

.hgPaymentWidget .hgpProgress .hgpLabel {
  color: #BA975C !important;
}

.hgPaymentWidget .hgpText.hgpInfo a {
  color: #BA975C !important;
}

.hgPaymentWidget .hgpForm input[type=text]:focus, .hgPaymentWidget .hgpForm input[type=email]:focus, .hgPaymentWidget .hgpForm input[type=number]:focus, .hgPaymentWidget .hgpForm select:focus, .hgPaymentWidget .hgpForm textarea:focus {
  box-shadow: 0 0 0 2px #BA975C !important;
}

.hgPaymentWidget .hgpForm .hgpHighlight {
  background: #BA975C !important;
}

.hgPaymentWidget .hgpForm .hgpAddPerson .hgpLeft {
  color: #BA975C !important;
}

.hgPaymentWidget .hgpForm .hgpAddPerson a {
  color: #BA975C !important;
}

.hgPaymentWidget .hgpFormElement .hgpCheckBox {
  color: #BA975C !important;
}

.hgPaymentWidget .hgpFormElement .hgpCheckBox input[type=checkBox] + span:before {
  border: 2px solid #BA975C !important;
}

.hgPaymentWidget .hgpFormElement .hgpCheckBox input[type=checkBox] + span:after {
  border: solid #BA975C !important;
  border-width: 0 3px 3px 0;
}

.hgPaymentWidget .hgpFormElement .hgpRadioButton {
  color: #BA975C !important;
}

.hgPaymentWidget .hgpFormElement .hgpRadioButton input[type=radio] + span:before {
  border: 2px solid #BA975C !important;
}

.hgPaymentWidget .hgpFormElement .hgpRadioButton input[type=radio] + span:after {
  background: #BA975C !important;
}

.hgPaymentWidget .hgpFormElement .hgpIcon svg {
  color: #BA975C !important;
  fill: #BA975C !important;
}

.hgPaymentWidget .hgpPrivacyCheckbox span a {
  color: #BA975C !important;
}

.hgPaymentWidget .hgpRssvInfoReceved span a {
  color: #BA975C !important;
}

.hgPaymentWidget .hgpFormAmountCalculator .hgpBooked {
  background: #9f7d44 !important;
}

.hgPaymentWidget .hgpFormAmountCalculator .hgpAmount {
  background: #BA975C !important;
}

.hgPaymentWidget .hgpFooter .hgpFooterHeader {
  color: #BA975C !important;
}

.hgPaymentWidget .hgpFooterImpressum a, .hgPaymentWidget .hgpFooterAgent a {
  color: #BA975C !important;
}

.hgPaymentWidget .hgpAdditionalInfo a {
  color: #BA975C !important;
}

.hgPaymentWidget .hgpLoadingSign .hgpLoadingIcon:before {
  border-top-color: #BA975C !important;
}

.hgPaymentWidget .hgpButton.hgpButtonPrimary {
  background: #BA975C !important;
}

.hgPaymentWidget .hgpExpander {
  color: #BA975C !important;
}

.hgPaymentWidget .hgpExpander a {
  color: #BA975C !important;
}

.hgPaymentWidget .hgpExpanderContainer a {
  color: #BA975C !important;
}

.hgPaymentWidget .hgpCalendar-date[data-state=pending], .hgPaymentWidget .hgpCalendar-date[data-state=start], .hgPaymentWidget .hgpCalendar-date[data-state=end] {
  background: #BA975C !important;
  border-color: #BA975C !important;
}

.hgPaymentWidget .hgpCalendar-button:hover {
  border-color: #BA975C !important;
}

.hgpPopupContent .hgpPopupContentHeader {
  background-color: #BA975C !important;
}

.hgPaymentWidget .hgpSummaryContainer.hgpSummarySum {
  background-color: #9f7d44 !important;
}

.hgPaymentWidget .hgpFinishContainer .hgpFinishHeader {
  background-color: #9f7d44 !important;
}

.hgPaymentWidget .hgpProgress .hgpStep:not(:last-child) .hgpStepInner > div:last-child:before {
  border-top: 2px dotted #9f7d44 !important;
}

.hgPaymentWidget .hgpProgress .hgpRect {
  color: #9f7d44 !important;
}

.hgPaymentWidget .hgpProgress .hgpSumContainer {
  background-color: #9f7d44 !important;
}

.hgPaymentWidget .hgpPersonsInfo {
  color: #BA975C !important;
}

.hgPaymentWidget .hgpSummaryContainer .hgpSummaryHeadline {
  background-color: #BA975C !important;
}

.hgPaymentWidget .hgpPrivacyCheckbox span,
.hgPaymentWidget .hgpRssvInfoReceived span {
  color: #908D85 !important;
}
