/*!*******************************************************************************************************************************************************************************************************************************************************************!*\
  !*** 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/InfoBoxes/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
 */
/*
 * 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-module[data-id=InfoBoxes] {
  z-index: 1;
  position: relative;
  /* RESPONSIVE
   * --------------------------------------------------------------------------- */
}
.DNA-module[data-id=InfoBoxes] .DNA-module__list {
  display: flex;
  flex-wrap: wrap;
  gap: 7em 5em;
}
.DNA-module[data-id=InfoBoxes] .DNA-module__item {
  display: flex;
  position: relative;
  gap: 3em;
  border: 3px solid #B49062;
  align-items: center;
  width: 100%;
  padding: 4.5em 9.5em;
}
.DNA-module[data-id=InfoBoxes] .DNA-module__item > * {
  z-index: 2;
}
.DNA-module[data-id=InfoBoxes] .DNA-module__item:after {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  background: transparent linear-gradient(90deg, #2E2E2E 40%, rgba(46, 46, 46, 0.53) 100%) 0% 0% no-repeat padding-box;
}
.DNA-module[data-id=InfoBoxes] .DNA-module__item[data-background="0"] .DNA-module__content {
  max-width: 100%;
}
.DNA-module[data-id=InfoBoxes] .DNA-module__background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}
.DNA-module[data-id=InfoBoxes] .DNA-module__background img {
  height: 100%;
  object-fit: cover;
  width: 100%;
}
.DNA-module[data-id=InfoBoxes] .DNA-module__signet img {
  max-width: 12em;
}
.DNA-module[data-id=InfoBoxes] .DNA-module__content {
  max-width: 65.5em;
}
.DNA-module[data-id=InfoBoxes] .DNA-module__title {
  color: #FFFFFF;
}
.DNA-module[data-id=InfoBoxes] .DNA-module__title > * {
  font-size: 2.8em;
}
@media (max-width: 1024px) {
  .DNA-module[data-id=InfoBoxes] .DNA-module__title > * {
    font-size: 1.9em;
  }
}
@media (max-width: 767px) {
  .DNA-module[data-id=InfoBoxes] .DNA-module__title > * {
    font-size: 1.9em;
  }
}
.DNA-module[data-id=InfoBoxes] .DNA-module__rte {
  margin-top: 0.8em;
}
.DNA-module[data-id=InfoBoxes] .DNA-module__button {
  margin-top: 1.5em;
  display: flex;
}
.DNA-module[data-id=InfoBoxes][data-variant-small="1"] .DNA-module__item {
  width: calc(100% / 2 - 5em * (2 - 1) / 2);
  padding: 4.5em 1.5em 4.5em 5em;
}
.DNA-module[data-id=InfoBoxes][data-variant-small="1"] .DNA-module__item:before {
  transform: matrix(-1, 0, 0, -1, 0, 0);
  background: transparent linear-gradient(270deg, #2E2E2E 0%, rgba(46, 46, 46, 0.99) 1%, rgba(46, 46, 46, 0.69) 100%) 0% 0% no-repeat padding-box;
}
@media (max-width: 1024px) {
  .DNA-module[data-id=InfoBoxes] .DNA-module__list {
    gap: 5em 3em;
  }
  .DNA-module[data-id=InfoBoxes] .DNA-module__item {
    padding: 2.5em 6.5em;
  }
  .DNA-module[data-id=InfoBoxes] .DNA-module__signet img {
    max-width: 9em;
  }
  .DNA-module[data-id=InfoBoxes][data-variant-small="1"] .DNA-module__item {
    flex-direction: column;
    align-items: flex-start;
    width: calc(100% / 2 - 3em * (2 - 1) / 2);
    padding: 2.5em 1.5em 2.5em 3em;
  }
}
@media (max-width: 767px) {
  .DNA-module[data-id=InfoBoxes] .DNA-module__list {
    flex-direction: column;
    gap: 3em;
  }
  .DNA-module[data-id=InfoBoxes] .DNA-module__item {
    flex-direction: column;
    align-items: flex-start;
    width: 100% !important;
    padding: 2.5em 1.5em 2.5em 3em;
  }
  .DNA-module[data-id=InfoBoxes] .DNA-module__item:before {
    transform: matrix(-1, 0, 0, -1, 0, 0);
    background: transparent linear-gradient(270deg, #2E2E2E 0%, rgba(46, 46, 46, 0.99) 1%, rgba(46, 46, 46, 0.69) 100%) 0% 0% no-repeat padding-box;
  }
}
