/*  ==========================================================================
    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-"
    ========================================================================== */
/*  ==========================================================================
    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.
    ========================================================================== */
/*  ==========================================================================
    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
 */
/*
 * EFFECTS
 */
#bn-form-popup-dialog.bn-dynform--newsletter_validation__popup .bn-form-error {
  background: #363739 !important;
}

#bn-dynform--newsletter .bn-form-newsletter .bn-form__column--consent .consent_container {
  background: #363739 !important;
}

#bn-dynform--request .BN-dynform__row[data-row=block-append] {
  display: none;
}

#bn-dynform--request.JS--additionals-disable .BN-dynform__row[data-block=additional] {
  display: none;
}

body #bn-dynform--newsletter .bn-form__checkbox .bn-form_checkIcon {
  color: #000000 !important;
}

/*  ==========================================================================
    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
    ========================================================================== */
/*  ==========================================================================
    TYPOGRAPHY
    Helpers to arrange type

    INFO:
    - all mixins should start with "typo" as prefix
    ========================================================================== */
/*  ==========================================================================
    VISTA
    Helper to add base style to the vista output.

    INFO:
    - Usage example:
      @include vista(100vh, 75vh, 100vh, 60vh, true);
    ========================================================================== */
/*
 * HEADLINES
 */
/*
FILTER MOBILE
*/
/*  ==========================================================================
    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=themebox] {
  background-color: #363739;
  color: #FFFFFF;
  position: relative;
  /* RESPONSIVE
   * --------------------------------------------------------------------------- */
}
.DNA-module[data-id=themebox]:after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 50%;
  height: 100%;
  background-color: #585A5D;
}
.DNA-module[data-id=themebox] .DNA-module__wrap {
  position: relative;
  z-index: 1;
}
.DNA-module[data-id=themebox] .DNA-module__headlines h2 {
  text-transform: uppercase;
  text-align: center;
  margin-bottom: 5em;
}
.DNA-module[data-id=themebox] .DNA-module__headlines h2 > * {
  font-size: 4em;
}
.DNA-module[data-id=themebox] .DNA-module__top {
  position: relative;
  padding: 0 3em;
}
.DNA-module[data-id=themebox] .DNA-module__nav {
  justify-content: center;
  padding-bottom: 2em;
}
.DNA-module[data-id=themebox] .DNA-module__arrows {
  font-size: 2em;
}
.DNA-module[data-id=themebox] .DNA-module__arrows__arrow {
  cursor: pointer;
  bottom: 2.5em;
  position: absolute;
}
.DNA-module[data-id=themebox] .DNA-module__arrows__arrow[data-direction=next] {
  right: 0;
}
.DNA-module[data-id=themebox] .DNA-module__arrows__arrow[data-direction=prev] {
  left: 0;
}
.DNA-module[data-id=themebox] .DNA-module__filter {
  display: flex;
  justify-content: center;
  margin-bottom: 5em;
}
.DNA-module[data-id=themebox] .DNA-module__filter .DNA-module__item {
  font-family: "alwyn-new-web";
  margin: 0 1em;
  opacity: 0.5;
  text-transform: uppercase;
  transition: 0.3s;
  cursor: pointer;
  position: relative;
}
.DNA-module[data-id=themebox] .DNA-module__filter .DNA-module__item:after {
  content: "";
  width: 4.5em;
  opacity: 1;
  height: 2px;
  position: absolute;
  bottom: -1em;
  left: 0;
  right: 0;
  margin: auto;
  background: transparent;
  transition: 0.3s;
}
.DNA-module[data-id=themebox] .DNA-module__filter .DNA-module__item.JS-active, .DNA-module[data-id=themebox] .DNA-module__filter .DNA-module__item:hover {
  opacity: 1;
}
.DNA-module[data-id=themebox] .DNA-module__filter .DNA-module__item.JS-active .DNA-icon, .DNA-module[data-id=themebox] .DNA-module__filter .DNA-module__item:hover .DNA-icon {
  opacity: 1;
  font-size: 2.5em;
}
.DNA-module[data-id=themebox] .DNA-module__filter .DNA-module__item.JS-active:after, .DNA-module[data-id=themebox] .DNA-module__filter .DNA-module__item:hover:after {
  background: #FFFFFF;
}
.DNA-module[data-id=themebox] .DNA-module__filter .DNA-module__theme {
  text-align: center;
  margin-top: 3em;
}
.DNA-module[data-id=themebox] .DNA-module__filter .DNA-module__theme > * {
  font-size: 2em;
}
.DNA-module[data-id=themebox] .DNA-module__filter .DNA-icon {
  opacity: 0;
  transition: 0.3s;
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  text-align: center;
}
.DNA-module[data-id=themebox] .DNA-module__container {
  position: relative;
}
.DNA-module[data-id=themebox] .DNA-module__container .DNA-module__item {
  display: flex;
  align-content: space-between;
  align-items: stretch;
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  pointer-events: none;
}
.DNA-module[data-id=themebox] .DNA-module__container .DNA-module__item.JS-active {
  opacity: 1;
  position: relative;
  pointer-events: all;
}
.DNA-module[data-id=themebox] .DNA-module__container .DNA-module__left {
  display: flex;
  align-content: space-between;
  flex-direction: column;
  justify-content: space-between;
  width: 29%;
}
.DNA-module[data-id=themebox] .DNA-module__container .DNA-module__left img {
  width: 100%;
  height: auto;
}
.DNA-module[data-id=themebox] .DNA-module__container .DNA-module__left .DNA-module__headlines > * {
  text-align: left;
  text-transform: initial;
}
.DNA-module[data-id=themebox] .DNA-module__container .DNA-module__middle {
  padding: 0 7.5em;
  width: 51%;
}
.DNA-module[data-id=themebox] .DNA-module__container .DNA-module__middle img {
  width: 100%;
  height: auto;
}
.DNA-module[data-id=themebox] .DNA-module__container .DNA-module__right {
  width: 20%;
}
.DNA-module[data-id=themebox] .DNA-module__container .DNA-headlines {
  margin-top: 5em;
  font-weight: normal;
  width: 80%;
}
.DNA-module[data-id=themebox] .DNA-module__container .DNA-headlines h2 {
  font-family: "alwyn-new-web";
  font-weight: 400;
}
.DNA-module[data-id=themebox] .DNA-module__container .DNA-headlines h2 > * {
  font-size: 3em;
}
.DNA-module[data-id=themebox] .DNA-module__headlines-mobile {
  display: none;
}
@media (max-width: 1366px) {
  .DNA-module[data-id=themebox] .DNA-module__container .DNA-module__right {
    width: 24%;
  }
  .DNA-module[data-id=themebox] .DNA-module__container .DNA-module__middle {
    width: 45%;
    padding: 0 2em;
  }
  .DNA-module[data-id=themebox] .DNA-module__container .DNA-module__left {
    width: 31%;
  }
}
@media (max-width: 1024px) {
  .DNA-module[data-id=themebox]:after {
    width: 62%;
  }
  .DNA-module[data-id=themebox] .DNA-module__headlines h2 {
    margin-bottom: 4em;
  }
  .DNA-module[data-id=themebox] .DNA-module__headlines h2 > * {
    font-size: 2em;
  }
  .DNA-module[data-id=themebox] .DNA-module__container .DNA-module__left {
    display: none;
  }
  .DNA-module[data-id=themebox] .DNA-module__container .DNA-module__middle {
    width: 50%;
    padding: 0 5em 0 0;
  }
  .DNA-module[data-id=themebox] .DNA-module__container .DNA-module__right {
    width: 50%;
  }
  .DNA-module[data-id=themebox] .DNA-module__container .DNA-module__right .DNA-module__headlines {
    margin-top: 0;
    width: 100%;
  }
  .DNA-module[data-id=themebox] .DNA-module__container .DNA-module__right .DNA-module__headlines > * {
    text-align: left;
    text-transform: initial;
  }
  .DNA-module[data-id=themebox] .DNA-module__container .DNA-module__right .DNA-module__headlines > * > * {
    font-size: 1.6em;
  }
  .DNA-module[data-id=themebox] .DNA-module__container .DNA-module__right .DNA-module__headlines h2 {
    margin-bottom: 1.5em;
  }
  .DNA-module[data-id=themebox] .DNA-module__headlines-mobile {
    display: flex;
  }
  .DNA-module[data-id=themebox] .DNA-module__filter .DNA-module__theme > * {
    font-size: 1.4em;
  }
  .DNA-module[data-id=themebox] .DNA-module__filter .DNA-module__item {
    margin: 0 2em;
  }
  .DNA-module[data-id=themebox] .DNA-module__filter .DNA-module__item:hover .DNA-icon {
    font-size: 2em;
  }
  .DNA-module[data-id=themebox] .DNA-module__arrows__arrow {
    bottom: 2.25em;
  }
}
@media (max-width: 767px) {
  .DNA-module[data-id=themebox]:after {
    width: 100%;
    top: 34em;
    bottom: 0;
    height: auto;
  }
  .DNA-module[data-id=themebox] .DNA-module__filter .DNA-module__item {
    margin: 0 1em;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .DNA-module[data-id=themebox] .DNA-module__filter .DNA-module__item .DNA-icon {
    display: none;
  }
  .DNA-module[data-id=themebox] .DNA-module__filter .DNA-module__theme {
    margin-top: initial;
  }
  .DNA-module[data-id=themebox] .DNA-module__arrows__arrow {
    bottom: 2.75em;
  }
  .DNA-module[data-id=themebox] .DNA-module__container .DNA-module__item {
    flex-direction: column;
  }
  .DNA-module[data-id=themebox] .DNA-module__container .DNA-module__left {
    width: 100%;
  }
  .DNA-module[data-id=themebox] .DNA-module__container .DNA-module__middle {
    width: 100%;
    padding: 0 0 2em 0;
  }
  .DNA-module[data-id=themebox] .DNA-module__container .DNA-module__right {
    width: 100%;
  }
}
