/*!****************************************************************************************************************************************************************************************************************************************************************!*\
  !*** css ./node_modules/css-loader/dist/cjs.js??ruleSet[1].rules[0].use[1]!./node_modules/postcss-loader/dist/cjs.js??ruleSet[1].rules[0].use[2]!./node_modules/sass-loader/dist/cjs.js??ruleSet[1].rules[0].use[3]!../Templates/Sections/Popup/frontend.scss ***!
  \****************************************************************************************************************************************************************************************************************************************************************/
/*  ==========================================================================
    MAIN
    Styling for parts (which are not defined as modules), for eg. breadcrumb

    INFO:
    - don't style modules here, use the corresponding modules scss folder
    ========================================================================== */
/*  ==========================================================================
    STORAGE
    ========================================================================== */
/*  ==========================================================================
    VARIABLES
    Collection of all variables

    INFO:
    - try to use variables as much as possible, it makes life easier
    - try to use meaningful prefixes, e.g. "$clr-" for color variables
      or "$fs-" for font-sizes
    ========================================================================== */
/*  ==========================================================================
    CLASS NAMES
    Collection of class-names.
    ========================================================================== */
/*  ==========================================================================
    COLORS
    List all colors concerning your project here

    INFO:
    - use for your colors at least the prefix "$clr-"
    ========================================================================== */
/*  ==========================================================================
    DEFAULTS
    ========================================================================== */
/*  ==========================================================================
    DIMENSIONS
    List of some recurring dimensions.

    INFO:
    - don't delete any unit!
    - do unit changes with care
    - try to use prefixes (f.e. "zi" for "z-index", "hgt" for "height", "wdt" for "width" etc.)
    - if possible try to define the main z-index values here
    - don't put all dimensions in here, only well selected ones (it's not a trashcan!)
    ========================================================================== */
/*  ==========================================================================
    MEDIA QUERIES
    Collection of media queries.
    ========================================================================== */
/*  ==========================================================================
    TYPOGRAPHY
    Font settings concerning your project.

    INFO:
    - don't delete anything!
    - use changes in here with care
    - try to use prefixes (f.e. "ff" for "font-family", "fs" for "font-size", "fw" for "font-weight" ecc.)
    - don't put all properties in here, only well selected ones (it's not a trashcan!)
    ========================================================================== */
/*  ==========================================================================
    FUNCIONS
    Collection of all functions
    ========================================================================== */
/*  ==========================================================================
    GENERAL
    Useful global functions
    ========================================================================== */
/*  ==========================================================================
    MIXINS
    Collection of all mixins (mind the ordering!)
    ========================================================================== */
/*  ==========================================================================
    GENERAL
    Useful global helpers

    INFO:
    - no specific naming convention (no prefix) except to not use camelcase if possible!
    - use it with care, its not a trash can!
    - contributions for the kickstarter are welcome!
    ========================================================================== */
/*
 * WRAPPER DIMENSIONS
 * generates wrapper padding & max-width
 */
/*
 * RESPONSIVE PROPERTIES
 * creates a css-property for each media query (desktop, tablet & mobile)
 */
/*  ==========================================================================
    TYPOGRAPHY
    Helpers to arrange type

    INFO:
    - all mixins should start with "typo" as prefix
    ========================================================================== */
/*  ==========================================================================
    CONTENT
    Helpers for Headlines/RichText/...

    INFO:
    - all mixins should start with "content" as prefix
    ========================================================================== */
/*
 * OVERLINE
 */
/*
 * HEADLINES
 */
/*
 * TABLE-WRAP
 */
/*
 * RICH-TEXT
 */
/*  ==========================================================================
    BUTTONS
    Helpers to edit buttons

    INFO:
    - all mixins should start with "btn" as prefix
    ========================================================================== */
/*  ==========================================================================
    IMAGES
    Collection of all helpers for images

    INFO:
    - all mixins should start with "img" as prefix
    ========================================================================== */
/*  ==========================================================================
    VISTA
    Helper to add base style to the vista output.

    INFO:
    - Usage example:
      @include vista(100vh, 75vh, 100vh, 60vh, true);
    ========================================================================== */
/*  ==========================================================================
    POPUP
    ========================================================================== */
/*  ==========================================================================
    FLATPICKR
    ========================================================================== */
/*  ==========================================================================
    HEADER
    Helpers to edit header

    INFO:
    - all mixins should start with "header" as prefix
    ========================================================================== */
/*  ==========================================================================
    MISC
    ========================================================================== */
/*  ==========================================================================
    MISC
    ========================================================================== */
/*  ==========================================================================
    EHOTELIER
    Helpers to edit eHotelier elements

    INFO:
    - all mixins should start with "ehot" as prefix
    ========================================================================== */
/*  ==========================================================================
    FOOTER
    Helpers to edit footer

    INFO:
    - all mixins should start with "footer" as prefix
    ========================================================================== */
/*  ==========================================================================
    KEYFRAMES
    Collection of all keyframes (mind the ordering!)
    ========================================================================== */
/*  ==========================================================================
    LOADER
    ========================================================================== */
@keyframes loader-spinning {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
@keyframes loader-blink {
  0% {
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
/*  ==========================================================================
    MISC
    ========================================================================== */
@keyframes pulse-animation {
  0% {
    transform: scale(1);
    background: rgba(180, 144, 98, 0.3);
  }
  100% {
    transform: scale(1.1);
    background: rgba(180, 144, 98, 0);
  }
}
/* STYLING
 * --------------------------------------------------------------------------- */
.DNA-section[data-id=Popup] {
  /* RESPONSIVE
   * --------------------------------------------------------------------------- */
}
.DNA-section[data-id=Popup] .DNA-section__popup {
  position: fixed;
  z-index: 999;
  top: 0;
  right: 0;
  height: 100%;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #FFFFFF;
}
.DNA-section[data-id=Popup] .DNA-section__popup[data-open="0"] {
  display: none !important;
}
.DNA-section[data-id=Popup] .DNA-section__popup[data-image="1"] .DNA-section__popup__content {
  padding: 0;
}
.DNA-section[data-id=Popup] .DNA-section__popup[data-image="1"] .DNA-section__popup__image {
  position: relative;
  width: 50%;
  max-width: 42.5em;
  aspect-ratio: 3/4;
}
.DNA-section[data-id=Popup] .DNA-section__popup[data-image="1"] .DNA-section__popup__image img {
  height: 100%;
  object-fit: cover;
  width: 100%;
  left: 0;
  position: absolute;
  top: 0;
}
.DNA-section[data-id=Popup] .DNA-section__popup[data-image="1"] .DNA-section__popup__image__list {
  width: 100%;
  height: 100%;
}
.DNA-section[data-id=Popup] .DNA-section__popup[data-image="1"] .DNA-section__popup__right {
  padding: 8em 12em 6em 0;
}
.DNA-section[data-id=Popup] .DNA-section__popup[data-image="1"] .DNA-section__slider-elements {
  display: flex;
  gap: 1.2em;
  align-items: center;
  justify-content: flex-end;
  position: absolute;
  width: 100%;
  z-index: 1;
  bottom: 0;
  padding: 2em;
  background: linear-gradient(to top, #1C1C1C, rgba(28, 28, 28, 0));
}
.DNA-section[data-id=Popup] .DNA-section__popup[data-image="1"] .DNA-section__slider-elements .DNA-slider-pagination {
  color: #FFFFFF;
  font-weight: 300;
}
.DNA-section[data-id=Popup] .DNA-section__popup[data-image="1"] .DNA-section__slider-elements .DNA-slider-pagination > * {
  font-size: 1.4em;
}
.DNA-section[data-id=Popup] .DNA-section__popup[data-image="1"] .DNA-section__slider-elements .DNA-slider-pagination > *:first-child {
  font-weight: 500;
}
.DNA-section[data-id=Popup] .DNA-section__popup[data-image="1"] .DNA-section__slider-elements .DNA-slider-arrows {
  display: flex;
  align-items: center;
  gap: 0.7em;
}
.DNA-section[data-id=Popup] .DNA-section__popup[data-image="1"] .DNA-section__slider-elements .DNA-slider-arrows__arrow {
  padding: 1em;
  aspect-ratio: 1/1;
  border-radius: 50%;
  color: #FFFFFF;
  border: 1px solid rgba(255, 255, 255, 0.25);
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
}
.DNA-section[data-id=Popup] .DNA-section__popup[data-image="1"] .DNA-section__slider-elements .DNA-slider-arrows__arrow > * {
  font-size: 1.2em;
}
.DNA-section[data-id=Popup] .DNA-section__popup__bg {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(34, 34, 34, 0.7);
  backdrop-filter: blur(15px);
}
.DNA-section[data-id=Popup] .DNA-section__popup__wrap {
  max-height: 100%;
  width: 100%;
  max-width: 120em;
  position: relative;
  display: flex;
  padding: 3em;
}
.DNA-section[data-id=Popup] .DNA-section__popup__container {
  position: relative;
  background-color: #1C1C1C;
  overflow: auto;
  max-height: 100%;
  max-width: 100%;
  width: 100%;
}
.DNA-section[data-id=Popup] .DNA-section__popup__content {
  min-height: 100%;
  padding: 8em 12em 6em 11.5em;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: flex-start;
  gap: 11.5em;
}
.DNA-section[data-id=Popup] .DNA-section__popup__content > * {
  width: 100%;
}
.DNA-section[data-id=Popup] .DNA-section__popup__close {
  position: absolute;
  right: 5em;
  top: 5em;
  width: 5em;
  height: 5em;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
}
.DNA-section[data-id=Popup] .DNA-section__popup__close > * {
  font-size: 3em;
}
@media (max-width: 1024px) {
  .DNA-section[data-id=Popup] .DNA-section__popup__close > * {
    font-size: 2em;
  }
}
.DNA-section[data-id=Popup] .DNA-section__popup__close:hover {
  opacity: 0.7;
}
.DNA-section[data-id=Popup] .DNA-section__popup__right {
  width: 50%;
  flex: 1;
}
@media (max-width: 1024px) {
  .DNA-section[data-id=Popup] .DNA-section__popup[data-image="1"] .DNA-section__popup__right {
    padding: 6em 5em 5em 0;
  }
  .DNA-section[data-id=Popup] .DNA-section__popup__wrap {
    padding: 1em;
  }
  .DNA-section[data-id=Popup] .DNA-section__popup__close {
    right: 2em;
    top: 2em;
    width: 4em;
    height: 4em;
  }
  .DNA-section[data-id=Popup] .DNA-section__popup__content {
    padding: 6em 5em 5em 5em;
    gap: 5em;
  }
}
@media (max-width: 767px) {
  .DNA-section[data-id=Popup] .DNA-section__popup[data-image="1"] .DNA-section__popup__content {
    padding: 7em 2.5em 2.5em 2.5em;
  }
  .DNA-section[data-id=Popup] .DNA-section__popup[data-image="1"] .DNA-section__popup__image {
    width: 100%;
    max-width: 100%;
    aspect-ratio: unset;
  }
  .DNA-section[data-id=Popup] .DNA-section__popup[data-image="1"] .DNA-section__popup__image img {
    position: relative;
  }
  .DNA-section[data-id=Popup] .DNA-section__popup[data-image="1"] .DNA-section__popup__right {
    padding: 0;
  }
  .DNA-section[data-id=Popup] .DNA-section__popup__content {
    flex-direction: column;
    padding: 7em 2.5em 2.5em 2.5em;
  }
  .DNA-section[data-id=Popup] .DNA-section__popup__right {
    width: 100%;
  }
}
.DNA-section[data-id=Popup] .DNA-section__rte {
  margin-top: 4.5em;
}
.DNA-section[data-id=Popup] .DNA-section__button {
  margin-top: 3.5em;
}
