/*!*********************************************************************************************************************************************************************************************************************************************************************!*\
  !*** 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/Sections/Newsletter/frontend.scss ***!
  \*********************************************************************************************************************************************************************************************************************************************************************/
/*  ==========================================================================
    MAIN
    Styling for parts (which are not defined as modules), for eg. breadcrumb

    INFO:
    - don't style modules here, use the corresponding modules scss folder
    ========================================================================== */
/*  ==========================================================================
    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-section[data-id=Newsletter] {
  /* RESPONSIVE
   * --------------------------------------------------------------------------- */
}
.DNA-section[data-id=Newsletter] .DNA-section__popup {
  position: fixed;
  z-index: 999;
  top: 0;
  right: 0;
  height: 100%;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #000000;
}
.DNA-section[data-id=Newsletter] .DNA-section__popup[data-open="0"] {
  display: none !important;
}
.DNA-section[data-id=Newsletter] .DNA-section__popup__bg {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: #000000;
  opacity: 0.7;
  backdrop-filter: blur(15px);
}
.DNA-section[data-id=Newsletter] .DNA-section__popup__wrap {
  max-height: 100%;
  max-width: 100%;
  position: relative;
  display: flex;
  padding: 3em;
}
.DNA-section[data-id=Newsletter] .DNA-section__popup__container {
  position: relative;
  background-color: #FFFFFF;
  overflow: auto;
  max-height: 100%;
  max-width: 100%;
  border-radius: 1em;
}
.DNA-section[data-id=Newsletter] .DNA-section__popup__close {
  position: absolute;
  right: 3em;
  top: 3em;
  padding-top: 3.5em;
  padding-right: 3.5em;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}
.DNA-section[data-id=Newsletter] .DNA-section__popup__close > * {
  font-size: 2em;
}
@media (max-width: 1024px) {
  .DNA-section[data-id=Newsletter] .DNA-section__popup__close > * {
    font-size: 1.8em;
  }
}
.DNA-section[data-id=Newsletter] .DNA-section__popup__close i {
  transition: transform 0.5s;
}
@media (min-width: 1025px) {
  .DNA-section[data-id=Newsletter] .DNA-section__popup__close:hover i {
    transform: scale(1.1);
  }
}
.DNA-section[data-id=Newsletter] .DNA-section__popup__content {
  min-height: 100%;
  padding: 6em 8.5em;
  max-width: 80em;
  position: relative;
  overflow: hidden;
}
@media (max-width: 1024px) {
  .DNA-section[data-id=Newsletter] .DNA-section__popup__wrap {
    padding: 1em;
  }
  .DNA-section[data-id=Newsletter] .DNA-section__popup__container {
    border-radius: 0.5em;
  }
  .DNA-section[data-id=Newsletter] .DNA-section__popup__close {
    right: 1em;
    top: 1em;
    padding-top: 1.5em;
    padding-right: 1.5em;
  }
  .DNA-section[data-id=Newsletter] .DNA-section__popup__content {
    padding: 6em 5em 5em 5em;
  }
}
@media (max-width: 767px) {
  .DNA-section[data-id=Newsletter] .DNA-section__popup__content {
    padding: 5em 2.5em 2.5em 2.5em;
  }
}
.DNA-section[data-id=Newsletter] .DNA-section__title {
  font-weight: 300;
  line-height: 1.1;
  margin-bottom: 2.5em;
}
.DNA-section[data-id=Newsletter] .DNA-section__title > * {
  font-size: 5em;
}
@media (max-width: 1024px) {
  .DNA-section[data-id=Newsletter] .DNA-section__title > * {
    font-size: 3em;
  }
}
@media (max-width: 767px) {
  .DNA-section[data-id=Newsletter] .DNA-section__title > * {
    font-size: 3em;
  }
}
.DNA-section[data-id=Newsletter] .DNA-section__dynform .DNA-loader {
  color: #000000;
}
.DNA-section[data-id=Newsletter] .DNA-section__dynform .DNA-loader__symbol:before {
  border-color: #000000 transparent #000000 transparent;
}
.DNA-section[data-id=Newsletter] #bn-dynform--newsletter #bn-dynform--newsletter_nameprefix option[value="2"] {
  display: none !important;
}
.DNA-section[data-id=Newsletter] #bn-dynform--newsletter .bn-form__column--teaser-segments {
  border-bottom: 0 !important;
  margin-bottom: 0;
  margin-top: 30px;
  padding-bottom: 5px;
  width: 100%;
}
.DNA-section[data-id=Newsletter] #bn-dynform--newsletter .bn-form__column--teaser-segments .bn-form__teaserlabel {
  font-size: 16px;
  padding: 0;
  text-transform: uppercase;
}
.DNA-section[data-id=Newsletter] #bn-dynform--newsletter .ractive--segmentsTemplate {
  justify-content: flex-start;
  padding: 5px 0 10px 0;
}
.DNA-section[data-id=Newsletter] #bn-dynform--newsletter .bn-form__column--segment {
  margin-right: 50px;
  width: auto;
}
.DNA-section[data-id=Newsletter] #bn-dynform--newsletter .bn-form__button {
  border-color: #000000 !important;
}
@media (max-width: 1024px) {
  .DNA-section[data-id=Newsletter] .DNA-section__title {
    margin-bottom: 2em;
  }
  .DNA-section[data-id=Newsletter] #bn-dynform--newsletter .bn-form__column--segment {
    margin-right: 40px;
  }
}
@media (max-width: 767px) {
  .DNA-section[data-id=Newsletter] #bn-dynform--newsletter .bn-form__column--segment {
    margin-right: 0;
    width: 100%;
  }
}
