/*!****************************************************************************************************************************************************************************************************************************************************************!*\
  !*** 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
    ========================================================================== */
/*  ==========================================================================
    MISC
    ========================================================================== */
/*  ==========================================================================
    TABS
    ========================================================================== */
/*  ==========================================================================
    PRICETABLES
    ========================================================================== */
/*  ==========================================================================
    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;
  }
}
@keyframes scroll-down {
  0% {
    transform: translateY(0);
    opacity: 1;
  }
  100% {
    transform: translateY(1em);
    opacity: 0;
  }
}
@keyframes fade {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes bounceIn {
  0% {
    margin-top: 0;
  }
  50% {
    margin-top: -8em;
  }
  100% {
    margin-top: 0;
  }
}
@keyframes bounceOut {
  0% {
    margin-top: 0;
  }
  50% {
    margin-top: -8em;
  }
  100% {
    margin-top: 0;
  }
}
@keyframes view-transition-out {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
@keyframes view-transition-in {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
/* 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: #383838;
  opacity: 1;
  pointer-events: auto;
  user-select: auto;
  transition: opacity 1s ease-in-out;
}
.DNA-section[data-id=Popup] .DNA-section__popup[data-open="0"] {
  opacity: 0;
  pointer-events: none !important;
  user-select: none !important;
  transition: none;
}
.DNA-section[data-id=Popup] .DNA-section__popup.JS-closed {
  opacity: 0;
  pointer-events: none;
  user-select: none;
  transition: opacity 1s ease-in-out;
}
@media (min-width: 1025px) {
  .DNA-section[data-id=Popup] .DNA-section__popup.JS-closed .DNA-section__popup__wrap {
    animation: bounceOut 1s ease-in-out forwards;
    transform: translateY(200%);
    transition-delay: 0.7s;
  }
}
@media (min-width: 1025px) {
  .DNA-section[data-id=Popup] .DNA-section__popup[data-open="1"] .DNA-section__popup__wrap {
    animation: bounceIn 1s ease-in-out forwards;
  }
}
.DNA-section[data-id=Popup] .DNA-section__popup__bg {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(82, 80, 78, 0.7);
  backdrop-filter: blur(3px);
  -webkit-backdrop-filter: blur(3px);
}
.DNA-section[data-id=Popup] .DNA-section__popup__wrap {
  max-height: 100%;
  max-width: 100%;
  position: relative;
  display: flex;
  padding: 3em;
  transform: translateY(0);
  transition: transform 0.3s ease-in-out;
}
.DNA-section[data-id=Popup] .DNA-section__popup__container {
  position: relative;
  background-color: #FFFAF7;
  overflow: auto;
  max-height: 100%;
  max-width: 100%;
}
.DNA-section[data-id=Popup] .DNA-section__popup__content {
  min-height: 100%;
  padding: 8em 8.5em 6em 8.5em;
  max-width: 114em;
  position: relative;
  overflow: hidden;
}
.DNA-section[data-id=Popup] .DNA-section__popup__close {
  transition: opacity 0.3s ease-in-out;
  position: absolute;
  right: 7em;
  top: 1em;
  width: 4em;
  height: 4em;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #AB9C8B;
  color: #FFFFFF;
  padding: 1em;
  transform: rotate(45deg);
}
@media (min-width: 1025px) {
  .DNA-section[data-id=Popup] .DNA-section__popup__close:hover {
    opacity: 0.7;
  }
}
.DNA-section[data-id=Popup] .DNA-section__popup__icon {
  transform: rotate(315deg);
}
@media (max-width: 1024px) {
  .DNA-section[data-id=Popup] .DNA-section__popup__wrap {
    padding: 1em;
  }
  .DNA-section[data-id=Popup] .DNA-section__popup__close {
    right: 5em;
    top: -1em;
  }
  .DNA-section[data-id=Popup] .DNA-section__popup__content {
    padding: 8em 5em 5em 5em;
  }
}
@media (max-width: 767px) {
  .DNA-section[data-id=Popup] .DNA-section__popup {
    justify-content: flex-start;
    align-items: flex-end;
  }
  .DNA-section[data-id=Popup] .DNA-section__popup__wrap {
    padding: 0;
    width: 100%;
  }
  .DNA-section[data-id=Popup] .DNA-section__popup__container {
    width: 100%;
  }
  .DNA-section[data-id=Popup] .DNA-section__popup__content {
    max-width: 100%;
  }
  .DNA-section[data-id=Popup] .DNA-section__popup__close {
    right: 5em;
    top: -2em;
  }
}
.DNA-section[data-id=Popup] .DNA-section__popup__content {
  padding: 18em 20em 10em 20em;
}
@media (max-width: 1024px) {
  .DNA-section[data-id=Popup] .DNA-section__popup__content {
    padding: 8em 3em;
  }
}
.DNA-section[data-id=Popup] .DNA-section__title {
  margin-bottom: 4.5em;
  letter-spacing: 0.8px;
  line-height: 1;
  font-family: "Advent Pro", sans-serif;
  font-weight: 400;
  text-align: center;
}
.DNA-section[data-id=Popup] .DNA-section__title > * {
  font-size: 4em;
}
@media (max-width: 1024px) {
  .DNA-section[data-id=Popup] .DNA-section__title > * {
    font-size: 2.2em;
  }
}
@media (max-width: 1024px) {
  .DNA-section[data-id=Popup] .DNA-section__title {
    margin-bottom: 3.5em;
  }
}
@media (max-width: 1024px) {
  .DNA-section[data-id=Popup] .DNA-section__title {
    letter-spacing: 0.5px;
  }
}
@media (max-width: 1024px) {
  .DNA-section[data-id=Popup] .DNA-section__title {
    line-height: 1.4;
  }
}
.DNA-section[data-id=Popup] .DNA-section__rte {
  text-align: center;
}
.DNA-section[data-id=Popup] .DNA-section__button {
  margin-top: 8.5em;
  display: flex;
  justify-content: center;
}
@media (max-width: 1024px) {
  .DNA-section[data-id=Popup] .DNA-section__button {
    margin-top: 3.5em;
  }
}
