/*!****************************************************************************************************************************************************************************************************************************************************************!*\
  !*** 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
    ========================================================================== */
/*  ==========================================================================
    GLOBAL COLLECTION
    ========================================================================== */
/*  ==========================================================================
    FUNCTIONS COLLECTION
    ========================================================================== */
/*  ==========================================================================
    GENERAL
    Useful global functions
    ========================================================================== */
/*  ==========================================================================
    VARIABLES COLLECTION
    ========================================================================== */
/*  ==========================================================================
    CLASS NAMES
    Collection of class-names.
    ========================================================================== */
/*  ==========================================================================
    COLORS
    List all colors concerning your project here

    INFO:
    - use for your colors at least the prefix "$clr-"
    ========================================================================== */
/*  ==========================================================================
    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!)
    ========================================================================== */
/*  ==========================================================================
    DEFAULTS
    ========================================================================== */
/*  ==========================================================================
    MIXINS COLLECTION
    ========================================================================== */
/*  ==========================================================================
    GLOBAL COLLECTION
    ========================================================================== */
/*  ==========================================================================
    DEFAULTS
    ========================================================================== */
/*
 * FONTS
 */
/*
 * IMAGES
 */
/*
 * GENERALS
 */
/*
 * WRAPPER DIMENSIONS
 * generates wrapper padding & max-width
 */
/*
 * RESPONSIVE PROPERTIES
 * creates a css-property for each media query (desktop, tablet & mobile)
 */
/*  ==========================================================================
    GLOBAL COLLECTION
    ========================================================================== */
/*  ==========================================================================
    MIXINS COLLECTION
    ========================================================================== */
/*  ==========================================================================
    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
    ========================================================================== */
/*  ==========================================================================
    GLOBAL COLLECTION
    ========================================================================== */
/*  ==========================================================================
    MIXINS COLLECTION
    ========================================================================== */
/*  ==========================================================================
    VISTA
    Helper to add base style to the vista output.

    INFO:
    - Usage example:
      @include vista(100vh, 75vh, 100vh, 60vh, true);
    ========================================================================== */
/*  ==========================================================================
    GLOBAL COLLECTION
    ========================================================================== */
/*  ==========================================================================
    MIXINS COLLECTION
    ========================================================================== */
/*  ==========================================================================
    POPUP
    ========================================================================== */
/*  ==========================================================================
    FLATPICKR
    ========================================================================== */
/*  ==========================================================================
    GLOBAL COLLECTION
    ========================================================================== */
/*  ==========================================================================
    MIXINS COLLECTION
    ========================================================================== */
/*  ==========================================================================
    TABS
    Helpers to edit tabs

    INFO:
    - all mixins should start with "tabs" as prefix
    ========================================================================== */
/*  ==========================================================================
    KEYFRAMES COLLECTION
    ========================================================================== */
/*  ==========================================================================
    LOADER
    ========================================================================== */
@keyframes loader-spinning {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
@keyframes loader-blink {
  0% {
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
/*  ==========================================================================
    VIEWTRANSITION
    ========================================================================== */
@keyframes view-transition-out {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
@keyframes view-transition-in {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
/* STYLING
 * --------------------------------------------------------------------------- */
.SECT-Popup {
  /* RESPONSIVE
   * --------------------------------------------------------------------------- */
}
.SECT-Popup .SECT-Popup__popup {
  position: fixed;
  z-index: 999;
  top: 0;
  right: 0;
  height: 100%;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #323232;
}
.SECT-Popup .SECT-Popup__popup[data-open="0"] {
  display: none !important;
}
.SECT-Popup .SECT-Popup__popup__bg {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(116, 88, 76, 0.6);
  backdrop-filter: blur(15px);
}
.SECT-Popup .SECT-Popup__popup__wrap {
  max-height: 100%;
  max-width: 100%;
  position: relative;
  display: flex;
  padding: 3em;
}
.SECT-Popup .SECT-Popup__popup__container {
  position: relative;
  background-color: #EAE0D3;
  overflow: auto;
  max-height: 100%;
  max-width: 100%;
}
.SECT-Popup .SECT-Popup__popup__content {
  min-height: 100%;
  padding: 8em 8.5em 6em 8.5em;
  max-width: 97em;
  position: relative;
  overflow: hidden;
  text-align: center;
}
.SECT-Popup .SECT-Popup__popup__close {
  position: absolute;
  right: 5em;
  top: 5em;
  width: 4em;
  height: 4em;
  border: 1px solid #74584C;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.2em;
}
.SECT-Popup .SECT-Popup__popup__close > * {
  font-size: 1.6em;
}
@media (max-width: 1024px) {
  .SECT-Popup .SECT-Popup__popup__close > * {
    font-size: 1.6em;
  }
}
@media (max-width: 767px) {
  .SECT-Popup .SECT-Popup__popup__close > * {
    font-size: 1.4em;
  }
}
.SECT-Popup .SECT-Popup__popup__close:hover {
  opacity: 0.7;
}
@media (max-width: 1024px) {
  .SECT-Popup .SECT-Popup__popup__wrap {
    padding: 1em;
  }
  .SECT-Popup .SECT-Popup__popup__close {
    right: 2em;
    top: 2em;
    width: 4em;
    height: 4em;
  }
  .SECT-Popup .SECT-Popup__popup__content {
    padding: 6em 5em 5em 5em;
  }
}
@media (max-width: 767px) {
  .SECT-Popup .SECT-Popup__popup__content {
    padding: 7em 2.5em 2.5em 2.5em;
  }
}
.SECT-Popup .SECT-Popup__title {
  color: #74584C;
  text-align: center;
  font-family: "Quattrocento";
  font-weight: 400;
  line-height: 1.2;
}
.SECT-Popup .SECT-Popup__title > * {
  font-size: 3.5em;
}
@media (max-width: 1024px) {
  .SECT-Popup .SECT-Popup__title > * {
    font-size: 2.3em;
  }
}
@media (max-width: 767px) {
  .SECT-Popup .SECT-Popup__title > * {
    font-size: 2.3em;
  }
}
.SECT-Popup .SECT-Popup__subtitle {
  color: #74584C;
  text-align: center;
  font-family: "Quattrocento";
  font-weight: 400;
  line-height: 1.2;
}
.SECT-Popup .SECT-Popup__subtitle > * {
  font-size: 3em;
}
@media (max-width: 1024px) {
  .SECT-Popup .SECT-Popup__subtitle > * {
    font-size: 2.5em;
  }
}
@media (max-width: 767px) {
  .SECT-Popup .SECT-Popup__subtitle > * {
    font-size: 2em;
  }
}
.SECT-Popup .SECT-Popup__rte {
  padding: 4.5em 0;
}
.SECT-Popup .DNA-button-outher {
  justify-content: center;
  margin: 0;
}
.SECT-Popup .DNA-media {
  margin-block: 4em;
}
