/*!********************************************************************************************************************************************************************************************************************************************************************!*\
  !*** 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
    ========================================================================== */
/*  ==========================================================================
    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
 */
/*  ==========================================================================
    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);
    ========================================================================== */
/*  ==========================================================================
    MISC
    ========================================================================== */
/*  ==========================================================================
    SLIDER ITEMS
    ========================================================================== */
/*  ==========================================================================
    POPUP
    ========================================================================== */
/*  ==========================================================================
    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;
  }
}
/* STYLING
 * --------------------------------------------------------------------------- */
.DNA-module[data-id=SlideBoxes] {
  /* RESPONSIVE
   * --------------------------------------------------------------------------- */
}
.DNA-module[data-id=SlideBoxes] .DNA-module__wrap {
  display: flex;
  flex-direction: column;
  gap: 2em;
}
.DNA-module[data-id=SlideBoxes] .DNA-module__item {
  background-color: #191919;
  border-radius: 2em;
  transition: background-color 1s, border-radius 1s, border-color 1s, margin-bottom 0.5s, opacity 0.5s;
}
.DNA-module[data-id=SlideBoxes] .DNA-module__item[data-open="0"] .DNA-module__icon i {
  transform: rotate(-45deg);
}
.DNA-module[data-id=SlideBoxes] .DNA-module__trigger {
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  user-select: none;
  padding: 1.5em 6.5em;
  gap: 2.5em;
}
.DNA-module[data-id=SlideBoxes] .DNA-module__trigger__content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex: 1;
}
.DNA-module[data-id=SlideBoxes] .DNA-module__headline {
  font-weight: 600;
}
.DNA-module[data-id=SlideBoxes] .DNA-module__headline > * {
  font-size: 2em;
}
@media (max-width: 1024px) {
  .DNA-module[data-id=SlideBoxes] .DNA-module__headline > * {
    font-size: 1.8em;
  }
}
.DNA-module[data-id=SlideBoxes] .DNA-module__icon {
  width: 4.5em;
  height: 4.5em;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
}
.DNA-module[data-id=SlideBoxes] .DNA-module__icon > * {
  font-size: 1.4em;
}
.DNA-module[data-id=SlideBoxes] .DNA-module__icon i {
  display: block;
  transition: transform 0.5s;
}
.DNA-module[data-id=SlideBoxes] .DNA-module__slide {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s ease-out;
}
.DNA-module[data-id=SlideBoxes] .DNA-module__content {
  padding: 0 6.5em 5em 6.5em;
}
.DNA-module[data-id=SlideBoxes] .DNA-module__images {
  display: flex;
  margin-left: -1em;
  margin-right: -1em;
  margin-bottom: 2.5em;
}
.DNA-module[data-id=SlideBoxes] .DNA-module__images__item {
  width: 33.3333333333%;
  padding: 1em;
}
.DNA-module[data-id=SlideBoxes] .DNA-module__images__item > * {
  display: block;
  border-radius: 0.5em;
  overflow: hidden;
}
.DNA-module[data-id=SlideBoxes] .DNA-module__rte {
  color: rgba(255, 255, 255, 0.6);
  max-width: 91.5em;
}
.DNA-module[data-id=SlideBoxes] .DNA-module__rte a {
  color: #FFFFFF;
}
.DNA-module[data-id=SlideBoxes] .DNA-module__button {
  display: flex;
}
@media (max-width: 1024px) {
  .DNA-module[data-id=SlideBoxes] .DNA-module__wrap {
    gap: 1.5em;
  }
  .DNA-module[data-id=SlideBoxes] .DNA-module__item {
    border-radius: 1.5em;
  }
  .DNA-module[data-id=SlideBoxes] .DNA-module__trigger {
    padding: 1.5em 2.5em;
  }
  .DNA-module[data-id=SlideBoxes] .DNA-module__icon {
    width: 2.5em;
    height: 2.5em;
  }
  .DNA-module[data-id=SlideBoxes] .DNA-module__icon > * {
    font-size: 0.9em;
  }
  .DNA-module[data-id=SlideBoxes] .DNA-module__content {
    padding: 0 2.5em 2.5em 2.5em;
  }
  .DNA-module[data-id=SlideBoxes] .DNA-module__images {
    margin-left: -0.5em;
    margin-right: -0.5em;
    margin-bottom: 1.5em;
  }
  .DNA-module[data-id=SlideBoxes] .DNA-module__images__item {
    width: 100%;
    padding: 0.5em;
  }
  .DNA-module[data-id=SlideBoxes] .DNA-module__images__item > * {
    border-radius: 2px;
  }
}
@media (max-width: 767px) {
  .DNA-module[data-id=SlideBoxes] .DNA-module__trigger {
    padding: 1.5em 2.5em;
  }
  .DNA-module[data-id=SlideBoxes] .DNA-module__content {
    padding: 0 2.5em 2.5em 2.5em;
  }
  .DNA-module[data-id=SlideBoxes] .DNA-module__images {
    margin-left: -0.2em;
    margin-right: -0.2em;
    margin-bottom: 1em;
  }
  .DNA-module[data-id=SlideBoxes] .DNA-module__images__item {
    padding: 0.2em;
  }
}
