/*  ==========================================================================
    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=additionals] {
  /* RESPONSIVE
   * --------------------------------------------------------------------------- */
}
.DNA-module[data-id=additionals] .DNA-module__wrap-filter {
  max-width: calc(129em + 7.5em + 7.5em);
}
.DNA-module[data-id=additionals] .DNA-module__checkbox {
  margin-right: 1em;
  position: relative;
}
.DNA-module[data-id=additionals] .DNA-module__checkbox__box {
  width: 1.5em;
  height: 1.5em;
  background-color: #363739;
  border-radius: 1px;
}
.DNA-module[data-id=additionals] .DNA-module__checkbox span {
  position: absolute;
  z-index: 1;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 1em;
  color: #363739;
  font-weight: 700;
}
.DNA-module[data-id=additionals] .DNA-module__filter-mobile {
  margin: 0 3.5em;
  position: relative;
  z-index: 10;
  display: none;
  margin: 0 0 4em 0;
}
.DNA-module[data-id=additionals] .DNA-module__filter-mobile span {
  font-size: 1.5em;
  font-weight: 500;
  text-transform: uppercase;
}
.DNA-module[data-id=additionals] .DNA-module__filter-mobile__current {
  min-height: 3.5em;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #9A9CA2;
  padding: 0 1.5em;
  border-radius: 2px 2px 0 0;
}
.DNA-module[data-id=additionals] .DNA-module__filter-mobile__current .DNA-icon {
  font-size: 0.8em;
}
.DNA-module[data-id=additionals] .DNA-module__filter-mobile__box {
  background-color: #9A9CA2;
  padding: 0.5em 1.5em;
  position: absolute;
  width: 100%;
  left: 0;
  top: 100%;
  border-radius: 0 0 2px 2px;
  display: none;
}
.DNA-module[data-id=additionals] .DNA-module__filter-mobile__item {
  min-height: 3.5em;
  display: flex;
  align-items: center;
}
.DNA-module[data-id=additionals] .DNA-module__filter-mobile__item.JS-active {
  display: none;
}
.DNA-module[data-id=additionals] .DNA-module__filter-mobile.JS-active .DNA-module__filter-mobile__current {
  background-color: #585A5D;
}
.DNA-module[data-id=additionals] .DNA-module__filter-mobile.JS-active .DNA-module__filter-mobile__current .DNA-icon {
  transform: rotate(180deg);
}
.DNA-module[data-id=additionals] .DNA-module__filter-mobile.JS-active .DNA-module__filter-mobile__box {
  display: block;
}
@media (max-width: 767px) {
  .DNA-module[data-id=additionals] .DNA-module__filter-mobile {
    display: block;
  }
}
.DNA-module[data-id=additionals] .DNA-module__outer {
  position: relative;
  margin-bottom: -1px;
}
.DNA-module[data-id=additionals] .DNA-module__title {
  font-family: "alwyn-new-web";
  text-align: center;
  letter-spacing: 0;
  font-weight: bold;
}
.DNA-module[data-id=additionals] .DNA-module__title > * {
  font-size: 2em;
}
.DNA-module[data-id=additionals] .DNA-module__categories {
  margin: 3em auto 7em auto;
  position: relative;
}
.DNA-module[data-id=additionals] .DNA-module__categories:before, .DNA-module[data-id=additionals] .DNA-module__categories:after {
  content: "";
  z-index: 1;
  pointer-events: none;
  position: absolute;
  top: 0;
  width: 10em;
  height: 100%;
}
.DNA-module[data-id=additionals] .DNA-module__categories:before {
  left: 0;
  background: linear-gradient(to right, #363739 0%, rgba(54, 55, 57, 0) 100%);
}
.DNA-module[data-id=additionals] .DNA-module__categories:after {
  right: 0;
  background: linear-gradient(to left, #363739 0%, rgba(54, 55, 57, 0) 100%);
}
.DNA-module[data-id=additionals] .DNA-module__tabs.JS-slider {
  display: flex;
  justify-content: center;
}
.DNA-module[data-id=additionals] .DNA-module__tabs.JS-slider > * {
  margin: 0 1.5em;
}
.DNA-module[data-id=additionals] .DNA-module__nav {
  justify-content: center;
  padding-bottom: 2em;
}
.DNA-module[data-id=additionals] .DNA-module__tab {
  cursor: pointer;
  position: relative;
  padding: 0.6em 1.5em;
  background-color: #9A9CA2;
  border-radius: 0.3em;
  opacity: 0.5;
  transition: opacity 0.5s;
  justify-content: center;
  align-items: center;
  display: flex;
  text-align: center;
}
.DNA-module[data-id=additionals] .DNA-module__tab > span {
  font-size: 1.6em;
}
.DNA-module[data-id=additionals] .DNA-module__tab.JS-active, .DNA-module[data-id=additionals] .DNA-module__tab:hover {
  opacity: 1;
}
.DNA-module[data-id=additionals] .DNA-module__tab.JS-active {
  animation-duration: 0.25s;
  animation-name: button-click;
}
.DNA-module[data-id=additionals] .DNA-module__tab.JS-active .DNA-module__checkbox__box {
  background-color: #FFFFFF;
}
.DNA-module[data-id=additionals] .DNA-module__container + div {
  margin-top: 6em;
}
.DNA-module[data-id=additionals] .DNA-module__item {
  border-top: 1px solid rgba(88, 90, 93, 0.5);
}
.DNA-module[data-id=additionals] .DNA-module__item:after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  background: transparent;
  transition: 0.3s;
}
.DNA-module[data-id=additionals] .DNA-module__item:last-child {
  border-bottom: 1px solid rgba(88, 90, 93, 0.5);
}
.DNA-module[data-id=additionals] .DNA-module__item:last-child {
  margin-bottom: 0;
}
.DNA-module[data-id=additionals] .DNA-module__item[data-open="1"]:after {
  background: #585A5D;
}
.DNA-module[data-id=additionals] .DNA-module__item[data-open="1"] .DNA-module__icon i {
  transform: rotate(-180deg);
}
.DNA-module[data-id=additionals] .DNA-module__trigger {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding: 2em 0;
  cursor: pointer;
  position: relative;
  z-index: 1;
}
.DNA-module[data-id=additionals] .DNA-module__headlines {
  width: 45%;
}
.DNA-module[data-id=additionals] .DNA-module__headlines > * > * {
  font-size: 2em;
}
.DNA-module[data-id=additionals] .DNA-module__info {
  margin-left: 1em;
}
.DNA-module[data-id=additionals] .DNA-module__info > * {
  font-size: 2em;
}
.DNA-module[data-id=additionals] .DNA-module__icon {
  padding-left: 2.5em;
  position: absolute;
  right: 0;
}
.DNA-module[data-id=additionals] .DNA-module__icon > * {
  font-size: 1em;
}
.DNA-module[data-id=additionals] .DNA-module__icon i {
  display: block;
  transition: transform 0.5s;
  transform: rotate(0deg);
}
.DNA-module[data-id=additionals] .DNA-module__toggle {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.2s ease-out;
  position: relative;
  z-index: 1;
}
.DNA-module[data-id=additionals] .DNA-module__content {
  padding: 0em 0em 2.5em 0em;
}
.DNA-module[data-id=additionals] .DNA-module__icon-full {
  display: none;
  color: #B22D51;
}
.DNA-module[data-id=additionals] .DNA-module__bookmarks {
  margin-top: 1.5em;
  font-weight: 500;
  display: inline-flex;
  cursor: pointer;
  align-items: center;
  position: relative;
}
.DNA-module[data-id=additionals] .DNA-module__bookmarks span {
  font-size: 1.4em;
}
.DNA-module[data-id=additionals] .DNA-module__bookmarks .DNA-icon {
  margin-left: 0.5em;
}
.DNA-module[data-id=additionals] .DNA-module__bookmarks .DNA-icon:before {
  font-size: 1.7em;
}
.DNA-module[data-id=additionals] .DNA-module__bookmarks.JS-active .DNA-module__icon-border {
  position: absolute;
  right: 0;
}
.DNA-module[data-id=additionals] .DNA-module__bookmarks.JS-active .DNA-module__icon-full {
  display: block;
}
.DNA-module[data-id=additionals] .DNA-module__arrows {
  font-size: 2em;
}
.DNA-module[data-id=additionals] .DNA-module__arrows__arrow {
  cursor: pointer;
  top: calc(50% + 0.75em);
  transform: translateY(-50%);
  position: absolute;
  right: -2em;
}
.DNA-module[data-id=additionals] .DNA-module__arrows__arrow[data-direction=prev] {
  left: -2em;
  right: initial;
}
.DNA-module[data-id=additionals] hr {
  border-color: #9A9CA2;
  margin-bottom: 5em;
  border: 1px solid #9A9CA2;
  height: 0;
}
.DNA-module[data-id=additionals] h2 {
  font-family: "alwyn-new-web";
  font-weight: bold;
}
.DNA-module[data-id=additionals] h2 > * {
  font-size: 2.5em;
}
.DNA-module[data-id=additionals][data-layout=middle] {
  background-color: #EEEBE6;
  color: #363739;
}
.DNA-module[data-id=additionals][data-layout=middle] .DNA-module__item {
  border-color: rgba(255, 255, 255, 0.5);
}
.DNA-module[data-id=additionals][data-layout=middle] .DNA-module__item:last-child {
  border-color: rgba(255, 255, 255, 0.5);
}
.DNA-module[data-id=additionals][data-layout=middle] .DNA-module__item[data-open="1"]:after {
  background: #FFFFFF;
}
.DNA-module[data-id=additionals][data-layout=dark] {
  background: #363739;
  color: #FFFFFF;
}
.DNA-module[data-id=additionals][data-layout=dark] .DNA-module__item {
  border-color: rgba(255, 255, 255, 0.1);
}
.DNA-module[data-id=additionals][data-layout=dark] .DNA-module__item:last-child {
  border-color: rgba(255, 255, 255, 0.1);
}
.DNA-module[data-id=additionals][data-layout=dark] .DNA-module__item[data-open="1"]:after {
  background: #585A5D;
}
.DNA-module[data-id=additionals][data-layout=dark] .DNA-module__categories span:after {
  background: #FFFFFF;
}
@media (max-width: 1024px) {
  .DNA-module[data-id=additionals] .DNA-module__title {
    margin-bottom: 2em;
  }
  .DNA-module[data-id=additionals] .DNA-module__wrap {
    padding: 0;
  }
  .DNA-module[data-id=additionals] .DNA-module__trigger {
    padding: 1.5em 0;
    flex-direction: column;
    align-items: flex-start;
  }
  .DNA-module[data-id=additionals] .DNA-module__box {
    padding: 0 7.5em;
  }
  .DNA-module[data-id=additionals] .DNA-module__item[data-open="1"] {
    margin: 0 -7.5em;
    padding: 0 7.5em;
    background-color: #FFFFFF;
    border-bottom: initial;
    border-top: initial;
  }
  .DNA-module[data-id=additionals] .DNA-module__info {
    margin: 0.5em 0 0 0;
  }
  .DNA-module[data-id=additionals] .DNA-module__info > * {
    font-size: 1.6em;
  }
  .DNA-module[data-id=additionals] .DNA-module__icon {
    top: 50%;
    transform: translateY(-50%);
  }
  .DNA-module[data-id=additionals] .DNA-module__headlines {
    width: calc(100% - 4em);
  }
  .DNA-module[data-id=additionals] .DNA-module__headlines > * > * {
    font-size: 1.6em;
  }
  .DNA-module[data-id=additionals][data-layout=middle] .DNA-module__item[data-open="1"] {
    background-color: #FFFFFF;
  }
  .DNA-module[data-id=additionals][data-layout=dark] .DNA-module__item[data-open="1"] {
    background-color: #585A5D;
  }
  .DNA-module[data-id=additionals] hr {
    margin-bottom: 4em;
  }
}
@media (max-width: 767px) {
  .DNA-module[data-id=additionals] .DNA-module__filter {
    display: none;
  }
  .DNA-module[data-id=additionals] .DNA-module__box {
    padding: 0 3.5em;
  }
  .DNA-module[data-id=additionals] .DNA-module__item[data-open="1"] {
    margin: 0 -3.5em;
    padding: 0 3.5em;
  }
}
