/*!********************************************************************************************************************************************************************************************************************************************************************!*\
  !*** 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/Modules/SlideBoxes/frontend.scss ***!
  \********************************************************************************************************************************************************************************************************************************************************************/
/*  ==========================================================================
    MODULE
    ========================================================================== */
/*  ==========================================================================
    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
 * --------------------------------------------------------------------------- */
.MOD-SlideBoxes {
  /* RESPONSIVE
   * --------------------------------------------------------------------------- */
}
.MOD-SlideBoxes .MOD-SlideBoxes__wrap {
  display: flex;
  gap: 10em;
}
.MOD-SlideBoxes .MOD-SlideBoxes__item {
  display: flex;
  align-items: start;
  padding: 3.2em 1em;
  border-bottom: 1px solid #323232;
  gap: 5em;
}
.MOD-SlideBoxes .MOD-SlideBoxes__item:last-child {
  margin-bottom: 0;
}
.MOD-SlideBoxes .MOD-SlideBoxes__item[data-open="1"] .DNA-icon {
  transform: rotate(-90deg);
}
.MOD-SlideBoxes .MOD-SlideBoxes__trigger {
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  user-select: none;
  width: calc(35% - 3em);
}
.MOD-SlideBoxes .MOD-SlideBoxes__trigger__content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex: 1;
}
.MOD-SlideBoxes .MOD-SlideBoxes__headline {
  color: #74584C;
  text-align: center;
  font-family: "Quattrocento";
  font-weight: 400;
  line-height: 1.2;
  text-align: left;
}
.MOD-SlideBoxes .MOD-SlideBoxes__headline > * {
  font-size: 2.4em;
}
@media (max-width: 1024px) {
  .MOD-SlideBoxes .MOD-SlideBoxes__headline > * {
    font-size: 1.8em;
  }
}
@media (max-width: 767px) {
  .MOD-SlideBoxes .MOD-SlideBoxes__headline > * {
    font-size: 1.8em;
  }
}
.MOD-SlideBoxes .MOD-SlideBoxes__slide {
  width: 65%;
  height: 0;
  overflow: hidden;
}
.MOD-SlideBoxes .MOD-SlideBoxes__button {
  display: flex;
  margin-top: 2.5em;
}
.MOD-SlideBoxes .MOD-SlideBoxes__images {
  display: flex;
  gap: 1em;
  margin-bottom: 3em;
}
.MOD-SlideBoxes .DNA-border {
  border-top: 1px solid #323232;
}
.MOD-SlideBoxes .DNA-icon {
  padding: 1em;
  border: 1px solid #74584C;
  width: 4em;
  line-height: 2;
  transform: rotate(90deg);
  margin-right: 3.5em;
}
@media (max-width: 1024px) {
  .MOD-SlideBoxes .MOD-SlideBoxes__wrap {
    flex-direction: column;
    gap: 0;
  }
  .MOD-SlideBoxes .MOD-SlideBoxes__item {
    flex-direction: column;
    gap: 0;
  }
  .MOD-SlideBoxes .MOD-SlideBoxes__slide, .MOD-SlideBoxes .MOD-SlideBoxes__trigger {
    width: 100%;
  }
  .MOD-SlideBoxes .MOD-SlideBoxes__slide > div {
    margin-top: 2.5em;
  }
  .MOD-SlideBoxes .MOD-SlideBoxes__signet {
    border-bottom: 1px solid #323232;
  }
  .MOD-SlideBoxes .MOD-SlideBoxes__signet svg {
    max-width: 7.5em;
    height: auto;
  }
  .MOD-SlideBoxes .DNA-border {
    border-top: none;
  }
}
@media (max-width: 767px) {
  .MOD-SlideBoxes .MOD-SlideBoxes__items {
    padding: 0 2em;
  }
  .MOD-SlideBoxes .MOD-SlideBoxes__item {
    padding: 3.2em 0em;
  }
}
