/*  ==========================================================================
    OFFERS TEASER
    ========================================================================== */
/*  ==========================================================================
    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.
    ========================================================================== */
/*  ==========================================================================
    TIMING

    INFO:
    - use for your colors at least the prefix "$time-"
    ========================================================================== */
/*  ==========================================================================
    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!)
    ========================================================================== */
/*  ==========================================================================
    VISTA

    Info:
    - "--vh" for a nicer mobile display (needs "getVh" snippet in the "global.js")
    ========================================================================== */
/*  ==========================================================================
    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
 */
/*  ==========================================================================
    BUTTONS
    Helpers to edit buttons

    INFO:
    - all mixins should start with "btn" as prefix
    ========================================================================== */
/*  ==========================================================================
    FILTER
    Helpers to create filter

    INFO:
    - all mixins should start with "fltr" as prefix
    ========================================================================== */
/*  ==========================================================================
    FLATPICKR
    ========================================================================== */
/*  ==========================================================================
    FORM
    Helpers to arrange forms

    INFO:
    - all mixins should start with "form" as prefix
    ========================================================================== */
/*  ==========================================================================
    IMAGES
    Collection of all helpers for images

    INFO:
    - all mixins should start with "img" as prefix
    ========================================================================== */
/*  ==========================================================================
    INFO
    ========================================================================== */
/*  ==========================================================================
    LIGHTBOX

    INFO:
    - optimized for the lightgallery js plugin.
    ========================================================================== */
/*  ==========================================================================
    POPUP
    ========================================================================== */
/*  ==========================================================================
    PRODUCT
    ========================================================================== */
/*  ==========================================================================
    SLIDE BOX
    Helper to generate slide boxes

    INFO:
    - adjusted for the "steirer" js utility
    ========================================================================== */
/*  ==========================================================================
    SLIDER
    Helpers to arrange slider parts

    INFO:
    - all mixins should start with "slider" as prefix
    ========================================================================== */
/*  ==========================================================================
    TYPOGRAPHY
    Helpers to arrange type

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

    INFO:
    - Usage example:
      @include vista(100vh, 75vh, 100vh, 60vh, true);
    ========================================================================== */
/*  ==========================================================================
    KEYFRAMES
    Collection of all keyframes (mind the ordering!)
    ========================================================================== */
/*  ==========================================================================
    IMAGE
    ========================================================================== */
@keyframes img-scale {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.1);
  }
  100% {
    transform: scale(1);
  }
}
@keyframes img-scale-inverted {
  0% {
    transform: scale(1.1);
  }
  50% {
    transform: scale(1);
  }
  100% {
    transform: scale(1.1);
  }
}
/*  ==========================================================================
    LOADER
    ========================================================================== */
@keyframes loader-spinning {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
@keyframes loader-blink {
  0% {
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
/*  ==========================================================================
    MAIN MENU
    Kudos to "http://pavlyukpetr.github.io/motion-css/"
    ========================================================================== */
@keyframes mm-open-desktop {
  0% {
    opacity: 0.75;
    transform: scale(0.75) translateX(-200vw);
  }
  80% {
    opacity: 0.75;
    transform: scale(0.75) translateX(0);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}
@keyframes mm-open-tablet {
  0% {
    opacity: 0.75;
    transform: scale(0.75) translateY(200vh);
  }
  80% {
    opacity: 0.75;
    transform: scale(0.75) translateY(0);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}
@keyframes mm-open-mobile {
  0% {
    opacity: 0;
    transform: rotateX(360deg) scale(0);
  }
  100% {
    opacity: 1;
    transform: rotateX(0deg) scale(1);
  }
}
/*  ==========================================================================
    QUICK REQUEST
    Kudos to "http://pavlyukpetr.github.io/motion-css/"
    ========================================================================== */
@keyframes qr-open {
  0% {
    transform: translateY(1000px);
  }
  25% {
    transform: translateY(50px);
  }
  30%, 55%, 70%, 80%, 90%, 100% {
    transform: translateY(0px);
  }
  45% {
    transform: translateY(25px);
  }
  63% {
    transform: translateY(15px);
  }
  75% {
    transform: translateY(7px);
  }
  85% {
    transform: translateY(4px);
  }
  95% {
    transform: translateY(2px);
  }
}
@keyframes qr-close {
  0% {
    opacity: 1;
    transform: scale(1);
  }
  20% {
    opacity: 0.7;
    transform: scale(0.7) translateY(0px);
  }
  100% {
    opacity: 0.7;
    transform: scale(0.7) translateY(500px);
  }
}
/*  ==========================================================================
    VISTA
    ========================================================================== */
@keyframes vista-scale {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.1);
  }
  100% {
    transform: scale(1);
  }
}
@keyframes vista-scale-inverted {
  0% {
    transform: scale(1.1);
  }
  50% {
    transform: scale(1);
  }
  100% {
    transform: scale(1.1);
  }
}
/*  ==========================================================================
    VISTA
    ========================================================================== */
@keyframes makeItRain {
  from {
    transform: perspective(120px) rotateX(0deg) rotateY(0deg);
    -webkit-transform: perspective(120px) rotateX(0deg) rotateY(0deg);
    opacity: 0;
  }
  50% {
    transform: perspective(120px) rotateX(-180.1deg) rotateY(0deg);
    -webkit-transform: perspective(120px) rotateX(-180.1deg) rotateY(0deg);
    opacity: 1;
  }
  to {
    transform: translateY(7em), perspective(120px) rotateX(-180deg) rotateY(-179.9deg);
    -webkit-transform: translateY(7em), perspective(120px) rotateX(-180deg) rotateY(-179.9deg);
  }
}
/* STYLING
 * --------------------------------------------------------------------------- */
.DNA-module[data-id=offers-teaser] {
  opacity: 1;
  /* for smoother loading, look also here: "packages/bn_package/Build/source/scss/entries/globals/global.scss" */
  position: relative;
  z-index: 5;
  /* RESPONSIVE
   * --------------------------------------------------------------------------- */
}
.DNA-module[data-id=offers-teaser] .DNA-module__header {
  margin-bottom: 2em;
  text-align: center;
}
.DNA-module[data-id=offers-teaser] .DNA-module__main {
  margin-left: -2em;
  width: calc(100% + 2em + 2em);
}
.DNA-module[data-id=offers-teaser] .DNA-module__main .DNA-module__slider {
  *zoom: 1;
}
.DNA-module[data-id=offers-teaser] .DNA-module__main .DNA-module__slider:before, .DNA-module[data-id=offers-teaser] .DNA-module__main .DNA-module__slider:after {
  content: " ";
  display: table;
}
.DNA-module[data-id=offers-teaser] .DNA-module__main .DNA-module__slider:after {
  clear: both;
}
.DNA-module[data-id=offers-teaser] .DNA-module__main .DNA-module__slider .DNA-product-box {
  display: flex;
  padding: 2em 0;
  width: 25%;
}
.DNA-module[data-id=offers-teaser] .DNA-module__main .DNA-module__slider .DNA-product-box .DNA-product-box__wrap {
  display: flex;
  flex: 1;
  padding: 0 2em;
}
.DNA-module[data-id=offers-teaser] .DNA-module__main .DNA-module__slider .DNA-product-box .DNA-product-box__frame {
  background-color: #FFFFFF;
  box-shadow: 0 0 1em 0 rgba(0, 0, 0, 0.25);
  display: flex;
  flex: 1;
  flex-direction: column;
}
.DNA-module[data-id=offers-teaser] .DNA-module__main .DNA-module__slider .DNA-product-box .DNA-product-box__frame:hover .DNA-product-box__overlay {
  opacity: 1;
}
.DNA-module[data-id=offers-teaser] .DNA-module__main .DNA-module__slider .DNA-product-box .DNA-product-box__header {
  background-color: #000000;
  position: relative;
}
.DNA-module[data-id=offers-teaser] .DNA-module__main .DNA-module__slider .DNA-product-box .DNA-product-box__header:before {
  content: "";
  display: block;
  height: 0;
  padding-top: 100%;
}
.DNA-module[data-id=offers-teaser] .DNA-module__main .DNA-module__slider .DNA-product-box .DNA-product-box__image, .DNA-module[data-id=offers-teaser] .DNA-module__main .DNA-module__slider .DNA-product-box .DNA-product-box__overlay {
  height: 100%;
  left: 0;
  overflow: hidden;
  position: absolute;
  top: 0;
  width: 100%;
}
.DNA-module[data-id=offers-teaser] .DNA-module__main .DNA-module__slider .DNA-product-box .DNA-product-box__image {
  cursor: pointer;
  display: block;
  z-index: 5;
}
.DNA-module[data-id=offers-teaser] .DNA-module__main .DNA-module__slider .DNA-product-box .DNA-product-box__image img {
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
}
.DNA-module[data-id=offers-teaser] .DNA-module__main .DNA-module__slider .DNA-product-box .DNA-product-box__overlay {
  align-items: flex-end;
  background-color: rgba(28, 33, 34, 0.5);
  display: flex;
  opacity: 0;
  padding: 2em;
  pointer-events: none;
  transition: opacity 0.5s ease-in-out;
  z-index: 10;
}
.DNA-module[data-id=offers-teaser] .DNA-module__main .DNA-module__slider .DNA-product-box .DNA-product-box__buttons-wrap {
  display: flex;
  justify-content: space-between;
  width: 100%;
}
.DNA-module[data-id=offers-teaser] .DNA-module__main .DNA-module__slider .DNA-product-box .DNA-product-box__buttons-wrap.DNA-product-box__buttons-wrap--center {
  justify-content: center;
}
.DNA-module[data-id=offers-teaser] .DNA-module__main .DNA-module__slider .DNA-product-box .DNA-product-box__button {
  min-width: 0;
  width: calc(50% - 1em);
}
.DNA-module[data-id=offers-teaser] .DNA-module__main .DNA-module__slider .DNA-product-box .DNA-product-box__button:first-child:last-child {
  width: 50%;
}
.DNA-module[data-id=offers-teaser] .DNA-module__main .DNA-module__slider .DNA-product-box .DNA-product-box__content, .DNA-module[data-id=offers-teaser] .DNA-module__main .DNA-module__slider .DNA-product-box .DNA-product-box__footer {
  padding: 0 2em;
}
.DNA-module[data-id=offers-teaser] .DNA-module__main .DNA-module__slider .DNA-product-box .DNA-product-box__content {
  padding-top: 2em;
}
.DNA-module[data-id=offers-teaser] .DNA-module__main .DNA-module__slider .DNA-product-box .DNA-product-box__title a,
.DNA-module[data-id=offers-teaser] .DNA-module__main .DNA-module__slider .DNA-product-box .DNA-product-box__title span {
  color: #1C2122;
  font-size: 1.8em;
  font-weight: 700;
  line-height: 1.2;
  text-transform: uppercase;
}
.DNA-module[data-id=offers-teaser] .DNA-module__main .DNA-module__slider .DNA-product-box .DNA-product-box__title a:visited, .DNA-module[data-id=offers-teaser] .DNA-module__main .DNA-module__slider .DNA-product-box .DNA-product-box__title a:hover,
.DNA-module[data-id=offers-teaser] .DNA-module__main .DNA-module__slider .DNA-product-box .DNA-product-box__title span:visited,
.DNA-module[data-id=offers-teaser] .DNA-module__main .DNA-module__slider .DNA-product-box .DNA-product-box__title span:hover {
  color: #1C2122;
}
.DNA-module[data-id=offers-teaser] .DNA-module__main .DNA-module__slider .DNA-product-box .DNA-product-box__title span {
  cursor: pointer;
}
.DNA-module[data-id=offers-teaser] .DNA-module__main .DNA-module__slider .DNA-product-box .DNA-product-box__subtitle {
  margin-top: 1em;
}
.DNA-module[data-id=offers-teaser] .DNA-module__main .DNA-module__slider .DNA-product-box .DNA-product-box__subtitle span {
  font-size: 1.2em;
  line-height: 1.2;
}
.DNA-module[data-id=offers-teaser] .DNA-module__main .DNA-module__slider .DNA-product-box .DNA-product-box__footer {
  align-items: center;
  display: flex;
  margin-top: auto;
  padding-bottom: 2em;
  padding-top: 2em;
}
.DNA-module[data-id=offers-teaser] .DNA-module__main .DNA-module__slider .DNA-product-box .DNA-product-box__price-wrap {
  display: flex;
  flex: 1;
  flex-direction: column;
}
.DNA-module[data-id=offers-teaser] .DNA-module__main .DNA-module__slider .DNA-product-box .DNA-product-box__price-addition b,
.DNA-module[data-id=offers-teaser] .DNA-module__main .DNA-module__slider .DNA-product-box .DNA-product-box__price-addition span, .DNA-module[data-id=offers-teaser] .DNA-module__main .DNA-module__slider .DNA-product-box .DNA-product-box__price-digit b,
.DNA-module[data-id=offers-teaser] .DNA-module__main .DNA-module__slider .DNA-product-box .DNA-product-box__price-digit span, .DNA-module[data-id=offers-teaser] .DNA-module__main .DNA-module__slider .DNA-product-box .DNA-product-box__price-on-request b,
.DNA-module[data-id=offers-teaser] .DNA-module__main .DNA-module__slider .DNA-product-box .DNA-product-box__price-on-request span {
  line-height: 1.2;
}
.DNA-module[data-id=offers-teaser] .DNA-module__main .DNA-module__slider .DNA-product-box .DNA-product-box__price-addition span, .DNA-module[data-id=offers-teaser] .DNA-module__main .DNA-module__slider .DNA-product-box .DNA-product-box__price-on-request span {
  color: #BABABA;
  font-size: 1.4em;
  font-weight: 700;
}
.DNA-module[data-id=offers-teaser] .DNA-module__main .DNA-module__slider .DNA-product-box .DNA-product-box__price-digit b,
.DNA-module[data-id=offers-teaser] .DNA-module__main .DNA-module__slider .DNA-product-box .DNA-product-box__price-digit span {
  font-size: 2em;
}
.DNA-module[data-id=offers-teaser] .DNA-module__main .DNA-module__slider .DNA-product-box .DNA-product-box__notice-btn, .DNA-module[data-id=offers-teaser] .DNA-module__main .DNA-module__slider .DNA-product-box .DNA-product-box__detail-btn {
  margin-left: 1.5em;
}
.DNA-module[data-id=offers-teaser] .DNA-module__main .DNA-module__slider .DNA-product-box[data-roomid="28690"] .DNA-product-box__button--book, .DNA-module[data-id=offers-teaser] .DNA-module__main .DNA-module__slider .DNA-product-box[data-roomid="28687"] .DNA-product-box__button--book {
  display: none;
}
@media (max-width: 1366px) {
  .DNA-module[data-id=offers-teaser] .DNA-module__main .DNA-module__slider .DNA-product-box {
    padding-bottom: 1.5em;
    padding-top: 1.5em;
  }
  .DNA-module[data-id=offers-teaser] .DNA-module__main .DNA-module__slider .DNA-product-box .DNA-product-box__wrap {
    padding-left: 1.5em;
    padding-right: 1.5em;
  }
  .DNA-module[data-id=offers-teaser] .DNA-module__main .DNA-module__slider .DNA-product-box .DNA-product-box__overlay {
    padding: 1.5em;
  }
  .DNA-module[data-id=offers-teaser] .DNA-module__main .DNA-module__slider .DNA-product-box .DNA-product-box__button {
    width: calc(50% - 0.5em);
  }
  .DNA-module[data-id=offers-teaser] .DNA-module__main .DNA-module__slider .DNA-product-box .DNA-product-box__content, .DNA-module[data-id=offers-teaser] .DNA-module__main .DNA-module__slider .DNA-product-box .DNA-product-box__footer {
    padding-left: 1.5em;
    padding-right: 1.5em;
  }
  .DNA-module[data-id=offers-teaser] .DNA-module__main .DNA-module__slider .DNA-product-box .DNA-product-box__content {
    padding-top: 1.5em;
  }
  .DNA-module[data-id=offers-teaser] .DNA-module__main .DNA-module__slider .DNA-product-box .DNA-product-box__footer {
    padding-bottom: 1.5em;
    padding-top: 1.5em;
  }
  .DNA-module[data-id=offers-teaser] .DNA-module__main .DNA-module__slider .DNA-product-box .DNA-product-box__price-wrap {
    font-size: 0.8em;
  }
  .DNA-module[data-id=offers-teaser] .DNA-module__main .DNA-module__slider .DNA-product-box .DNA-product-box__notice-btn, .DNA-module[data-id=offers-teaser] .DNA-module__main .DNA-module__slider .DNA-product-box .DNA-product-box__detail-btn {
    margin-left: 1em;
  }
}
@media (max-width: 1024px) {
  .DNA-module[data-id=offers-teaser] .DNA-module__main .DNA-module__slider .DNA-product-box {
    padding-bottom: 1em;
    padding-top: 1em;
    width: 50%;
  }
  .DNA-module[data-id=offers-teaser] .DNA-module__main .DNA-module__slider .DNA-product-box .DNA-product-box__wrap {
    padding-left: 1em;
    padding-right: 1em;
  }
  .DNA-module[data-id=offers-teaser] .DNA-module__main .DNA-module__slider .DNA-product-box .DNA-product-box__overlay {
    background-color: rgba(28, 33, 34, 0.25);
    opacity: 1;
  }
  .DNA-module[data-id=offers-teaser] .DNA-module__main .DNA-module__slider .DNA-product-box .DNA-product-box__title a,
.DNA-module[data-id=offers-teaser] .DNA-module__main .DNA-module__slider .DNA-product-box .DNA-product-box__title span {
    font-size: 1.4em;
  }
  .DNA-module[data-id=offers-teaser] .DNA-module__main .DNA-module__slider .DNA-product-box .DNA-product-box__subtitle span {
    font-size: 1.1em;
  }
  .DNA-module[data-id=offers-teaser] .DNA-module__main .DNA-module__slider .DNA-product-box .DNA-product-box__price-wrap {
    font-size: 1em;
  }
  .DNA-module[data-id=offers-teaser] .DNA-module__main .DNA-module__slider .DNA-product-box .DNA-product-box__price-addition span, .DNA-module[data-id=offers-teaser] .DNA-module__main .DNA-module__slider .DNA-product-box .DNA-product-box__price-on-request span {
    font-size: 1.2em;
  }
  .DNA-module[data-id=offers-teaser] .DNA-module__main .DNA-module__slider .DNA-product-box .DNA-product-box__price-digit b,
.DNA-module[data-id=offers-teaser] .DNA-module__main .DNA-module__slider .DNA-product-box .DNA-product-box__price-digit span {
    font-size: 1.6em;
  }
}
@media (max-width: 767px) {
  .DNA-module[data-id=offers-teaser] .DNA-module__main .DNA-module__slider .DNA-product-box {
    padding-bottom: 0.5em;
    padding-top: 0.5em;
  }
  .DNA-module[data-id=offers-teaser] .DNA-module__main .DNA-module__slider .DNA-product-box .DNA-product-box__wrap {
    padding-left: 0.5em;
    padding-right: 0.5em;
  }
  .DNA-module[data-id=offers-teaser] .DNA-module__main .DNA-module__slider .DNA-product-box .DNA-product-box__title a,
.DNA-module[data-id=offers-teaser] .DNA-module__main .DNA-module__slider .DNA-product-box .DNA-product-box__title span {
    font-size: 1.2em;
  }
  .DNA-module[data-id=offers-teaser] .DNA-module__main .DNA-module__slider .DNA-product-box .DNA-product-box__subtitle {
    margin-top: 0.5em;
  }
  .DNA-module[data-id=offers-teaser] .DNA-module__main .DNA-module__slider .DNA-product-box .DNA-product-box__subtitle span {
    font-size: 1em;
  }
  .DNA-module[data-id=offers-teaser] .DNA-module__main .DNA-module__slider .DNA-product-box .DNA-product-box__footer {
    flex-wrap: wrap;
  }
  .DNA-module[data-id=offers-teaser] .DNA-module__main .DNA-module__slider .DNA-product-box .DNA-product-box__price-wrap {
    flex: none;
    margin-bottom: 1em;
    width: 100%;
  }
  .DNA-module[data-id=offers-teaser] .DNA-module__main .DNA-module__slider .DNA-product-box .DNA-product-box__price-addition span, .DNA-module[data-id=offers-teaser] .DNA-module__main .DNA-module__slider .DNA-product-box .DNA-product-box__price-on-request span {
    font-size: 1em;
  }
  .DNA-module[data-id=offers-teaser] .DNA-module__main .DNA-module__slider .DNA-product-box .DNA-product-box__price-digit b,
.DNA-module[data-id=offers-teaser] .DNA-module__main .DNA-module__slider .DNA-product-box .DNA-product-box__price-digit span {
    font-size: 1.4em;
  }
  .DNA-module[data-id=offers-teaser] .DNA-module__main .DNA-module__slider .DNA-product-box .DNA-product-box__notice-btn {
    margin-left: 0;
  }
}
@media (max-width: 480px) {
  .DNA-module[data-id=offers-teaser] .DNA-module__main .DNA-module__slider .DNA-product-box {
    padding-bottom: 1em;
    padding-top: 1em;
    width: 100%;
  }
  .DNA-module[data-id=offers-teaser] .DNA-module__main .DNA-module__slider .DNA-product-box .DNA-product-box__wrap {
    padding-left: 1em;
    padding-right: 1em;
  }
}
.DNA-module[data-id=offers-teaser] .DNA-module__main .DNA-module__slider .DNA-product-box-v2 {
  padding: 2em 0;
  width: 33.33%;
}
.DNA-module[data-id=offers-teaser] .DNA-module__main .DNA-module__slider .DNA-product-box-v2 .DNA-product-box-v2__wrap {
  padding: 0 2em;
}
.DNA-module[data-id=offers-teaser] .DNA-module__main .DNA-module__slider .DNA-product-box-v2 .DNA-product-box-v2__frame {
  box-shadow: 0 0 1em 0 rgba(0, 0, 0, 0.25);
  position: relative;
}
.DNA-module[data-id=offers-teaser] .DNA-module__main .DNA-module__slider .DNA-product-box-v2 .DNA-product-box-v2__bg {
  background-color: #000000;
  position: relative;
  z-index: 5;
}
.DNA-module[data-id=offers-teaser] .DNA-module__main .DNA-module__slider .DNA-product-box-v2 .DNA-product-box-v2__bg:before {
  content: "";
  display: block;
  height: 0;
  padding-top: 100%;
}
.DNA-module[data-id=offers-teaser] .DNA-module__main .DNA-module__slider .DNA-product-box-v2 .DNA-product-box-v2__image {
  height: 100%;
  left: 0;
  overflow: hidden;
  position: absolute;
  top: 0;
  width: 100%;
}
.DNA-module[data-id=offers-teaser] .DNA-module__main .DNA-module__slider .DNA-product-box-v2 .DNA-product-box-v2__image img {
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
}
.DNA-module[data-id=offers-teaser] .DNA-module__main .DNA-module__slider .DNA-product-box-v2 .DNA-product-box-v2__overlay {
  display: flex;
  height: 100%;
  left: 0;
  overflow: hidden;
  padding: 2em;
  position: absolute;
  top: 0;
  width: 100%;
  z-index: 10;
}
.DNA-module[data-id=offers-teaser] .DNA-module__main .DNA-module__slider .DNA-product-box-v2 .DNA-product-box-v2__overlay > div {
  background-color: rgba(92, 78, 70, 0.4);
  display: flex;
  flex-direction: column;
  flex: 1;
  max-width: 100%;
  padding: 2em;
  position: relative;
}
.DNA-module[data-id=offers-teaser] .DNA-module__main .DNA-module__slider .DNA-product-box-v2 .DNA-product-box-v2__informations {
  margin-top: 2em;
  position: absolute;
  width: calc(100% - 3em);
}
.DNA-module[data-id=offers-teaser] .DNA-module__main .DNA-module__slider .DNA-product-box-v2 .DNA-product-box-v2__informations p {
  color: #FFFFFF;
}
.DNA-module[data-id=offers-teaser] .DNA-module__main .DNA-module__slider .DNA-product-box-v2 .DNA-product-box-v2__header {
  padding-bottom: 1em;
}
.DNA-module[data-id=offers-teaser] .DNA-module__main .DNA-module__slider .DNA-product-box-v2 .DNA-product-box-v2__seasons a,
.DNA-module[data-id=offers-teaser] .DNA-module__main .DNA-module__slider .DNA-product-box-v2 .DNA-product-box-v2__seasons span {
  color: #FFFFFF;
  font-size: 1.4em;
}
.DNA-module[data-id=offers-teaser] .DNA-module__main .DNA-module__slider .DNA-product-box-v2 .DNA-product-box-v2__seasons a:visited, .DNA-module[data-id=offers-teaser] .DNA-module__main .DNA-module__slider .DNA-product-box-v2 .DNA-product-box-v2__seasons a:hover,
.DNA-module[data-id=offers-teaser] .DNA-module__main .DNA-module__slider .DNA-product-box-v2 .DNA-product-box-v2__seasons span:visited,
.DNA-module[data-id=offers-teaser] .DNA-module__main .DNA-module__slider .DNA-product-box-v2 .DNA-product-box-v2__seasons span:hover {
  color: #FFFFFF;
}
.DNA-module[data-id=offers-teaser] .DNA-module__main .DNA-module__slider .DNA-product-box-v2 .DNA-product-box-v2__seasons span {
  cursor: pointer;
}
.DNA-module[data-id=offers-teaser] .DNA-module__main .DNA-module__slider .DNA-product-box-v2 .DNA-product-box-v2__content {
  display: flex;
  flex-direction: column;
  flex: 1;
  justify-content: flex-end;
}
.DNA-module[data-id=offers-teaser] .DNA-module__main .DNA-module__slider .DNA-product-box-v2 .DNA-product-box-v2__buttons-wrap {
  display: flex;
  margin-bottom: 4em;
  max-width: 100%;
  opacity: 0;
  overflow: hidden;
  pointer-events: none;
}
.DNA-module[data-id=offers-teaser] .DNA-module__main .DNA-module__slider .DNA-product-box-v2 .DNA-product-box-v2__button {
  max-width: calc(50% - 0.5em);
}
.DNA-module[data-id=offers-teaser] .DNA-module__main .DNA-module__slider .DNA-product-box-v2 .DNA-product-box-v2__button span {
  pointer-events: none;
}
.DNA-module[data-id=offers-teaser] .DNA-module__main .DNA-module__slider .DNA-product-box-v2 .DNA-product-box-v2__button + .DNA-product-box-v2__button {
  margin-left: 1em;
}
.DNA-module[data-id=offers-teaser] .DNA-module__main .DNA-module__slider .DNA-product-box-v2 .DNA-product-box-v2__title {
  width: 100%;
}
.DNA-module[data-id=offers-teaser] .DNA-module__main .DNA-module__slider .DNA-product-box-v2 .DNA-product-box-v2__title a,
.DNA-module[data-id=offers-teaser] .DNA-module__main .DNA-module__slider .DNA-product-box-v2 .DNA-product-box-v2__title span {
  color: #FFFFFF;
  font-size: 1.8em;
  font-weight: 700;
}
.DNA-module[data-id=offers-teaser] .DNA-module__main .DNA-module__slider .DNA-product-box-v2 .DNA-product-box-v2__title a:visited, .DNA-module[data-id=offers-teaser] .DNA-module__main .DNA-module__slider .DNA-product-box-v2 .DNA-product-box-v2__title a:hover,
.DNA-module[data-id=offers-teaser] .DNA-module__main .DNA-module__slider .DNA-product-box-v2 .DNA-product-box-v2__title span:visited,
.DNA-module[data-id=offers-teaser] .DNA-module__main .DNA-module__slider .DNA-product-box-v2 .DNA-product-box-v2__title span:hover {
  color: #FFFFFF;
}
.DNA-module[data-id=offers-teaser] .DNA-module__main .DNA-module__slider .DNA-product-box-v2 .DNA-product-box-v2__title span {
  cursor: pointer;
}
.DNA-module[data-id=offers-teaser] .DNA-module__main .DNA-module__slider .DNA-product-box-v2 .DNA-product-box-v2__footer {
  align-items: center;
  display: flex;
  padding-top: 1em;
}
.DNA-module[data-id=offers-teaser] .DNA-module__main .DNA-module__slider .DNA-product-box-v2 .DNA-product-box-v2__price-wrap {
  display: flex;
  flex: 1;
  flex-direction: column;
}
.DNA-module[data-id=offers-teaser] .DNA-module__main .DNA-module__slider .DNA-product-box-v2 .DNA-product-box-v2__price-addition b,
.DNA-module[data-id=offers-teaser] .DNA-module__main .DNA-module__slider .DNA-product-box-v2 .DNA-product-box-v2__price-addition span, .DNA-module[data-id=offers-teaser] .DNA-module__main .DNA-module__slider .DNA-product-box-v2 .DNA-product-box-v2__price-digit b,
.DNA-module[data-id=offers-teaser] .DNA-module__main .DNA-module__slider .DNA-product-box-v2 .DNA-product-box-v2__price-digit span, .DNA-module[data-id=offers-teaser] .DNA-module__main .DNA-module__slider .DNA-product-box-v2 .DNA-product-box-v2__price-on-request b,
.DNA-module[data-id=offers-teaser] .DNA-module__main .DNA-module__slider .DNA-product-box-v2 .DNA-product-box-v2__price-on-request span {
  color: #FFFFFF;
  line-height: 1.2;
}
.DNA-module[data-id=offers-teaser] .DNA-module__main .DNA-module__slider .DNA-product-box-v2 .DNA-product-box-v2__price-addition span, .DNA-module[data-id=offers-teaser] .DNA-module__main .DNA-module__slider .DNA-product-box-v2 .DNA-product-box-v2__price-on-request span {
  font-size: 1.4em;
  font-weight: 700;
}
.DNA-module[data-id=offers-teaser] .DNA-module__main .DNA-module__slider .DNA-product-box-v2 .DNA-product-box-v2__price-digit b,
.DNA-module[data-id=offers-teaser] .DNA-module__main .DNA-module__slider .DNA-product-box-v2 .DNA-product-box-v2__price-digit span {
  font-size: 2em;
}
.DNA-module[data-id=offers-teaser] .DNA-module__main .DNA-module__slider .DNA-product-box-v2 .DNA-product-box-v2__notice-btn, .DNA-module[data-id=offers-teaser] .DNA-module__main .DNA-module__slider .DNA-product-box-v2 .DNA-product-box-v2__detail-btn {
  margin-left: 1.5em;
}
@media (min-width: 1025px) {
  .DNA-module[data-id=offers-teaser] .DNA-module__main .DNA-module__slider .DNA-product-box-v2 .DNA-product-box-v2__frame:hover .DNA-product-box-v2__overlay > div {
    background-color: rgba(92, 78, 70, 0.8);
  }
  .DNA-module[data-id=offers-teaser] .DNA-module__main .DNA-module__slider .DNA-product-box-v2 .DNA-product-box-v2__frame:hover .DNA-product-box-v2__buttons-wrap {
    opacity: 1;
    pointer-events: auto;
  }
}
@media (max-width: 1600px) {
  .DNA-module[data-id=offers-teaser] .DNA-module__main .DNA-module__slider .DNA-product-box-v2 .DNA-product-box-v2__buttons-wrap {
    margin-bottom: 3em;
  }
  .DNA-module[data-id=offers-teaser] .DNA-module__main .DNA-module__slider .DNA-product-box-v2 .DNA-product-box-v2__button {
    min-width: 12.5em;
  }
}
@media (max-width: 1366px) {
  .DNA-module[data-id=offers-teaser] .DNA-module__main .DNA-module__slider .DNA-product-box-v2 {
    padding-bottom: 1.5em;
    padding-top: 1.5em;
  }
  .DNA-module[data-id=offers-teaser] .DNA-module__main .DNA-module__slider .DNA-product-box-v2 .DNA-product-box-v2__wrap {
    padding-left: 1.5em;
    padding-right: 1.5em;
  }
  .DNA-module[data-id=offers-teaser] .DNA-module__main .DNA-module__slider .DNA-product-box-v2 .DNA-product-box-v2__overlay {
    padding: 1.5em;
  }
  .DNA-module[data-id=offers-teaser] .DNA-module__main .DNA-module__slider .DNA-product-box-v2 .DNA-product-box-v2__overlay > div {
    padding: 1.5em;
  }
  .DNA-module[data-id=offers-teaser] .DNA-module__main .DNA-module__slider .DNA-product-box-v2 .DNA-product-box-v2__buttons-wrap {
    margin-bottom: 2em;
  }
  .DNA-module[data-id=offers-teaser] .DNA-module__main .DNA-module__slider .DNA-product-box-v2 .DNA-product-box-v2__button {
    min-width: 10em;
  }
  .DNA-module[data-id=offers-teaser] .DNA-module__main .DNA-module__slider .DNA-product-box-v2 .DNA-product-box-v2__price-wrap {
    font-size: 0.8em;
  }
  .DNA-module[data-id=offers-teaser] .DNA-module__main .DNA-module__slider .DNA-product-box-v2 .DNA-product-box-v2__notice-btn, .DNA-module[data-id=offers-teaser] .DNA-module__main .DNA-module__slider .DNA-product-box-v2 .DNA-product-box-v2__detail-btn {
    margin-left: 1em;
  }
}
@media (max-width: 1024px) {
  .DNA-module[data-id=offers-teaser] .DNA-module__main .DNA-module__slider .DNA-product-box-v2 {
    padding-bottom: 1em;
    padding-top: 1em;
    width: 50%;
  }
  .DNA-module[data-id=offers-teaser] .DNA-module__main .DNA-module__slider .DNA-product-box-v2 .DNA-product-box-v2__wrap {
    padding-left: 1em;
    padding-right: 1em;
  }
  .DNA-module[data-id=offers-teaser] .DNA-module__main .DNA-module__slider .DNA-product-box-v2 .DNA-product-box-v2__header {
    padding-bottom: 0.5em;
  }
  .DNA-module[data-id=offers-teaser] .DNA-module__main .DNA-module__slider .DNA-product-box-v2 .DNA-product-box-v2__seasons a,
.DNA-module[data-id=offers-teaser] .DNA-module__main .DNA-module__slider .DNA-product-box-v2 .DNA-product-box-v2__seasons span {
    font-size: 1.3em;
  }
  .DNA-module[data-id=offers-teaser] .DNA-module__main .DNA-module__slider .DNA-product-box-v2 .DNA-product-box-v2__title a,
.DNA-module[data-id=offers-teaser] .DNA-module__main .DNA-module__slider .DNA-product-box-v2 .DNA-product-box-v2__title span {
    font-size: 1.6em;
  }
  .DNA-module[data-id=offers-teaser] .DNA-module__main .DNA-module__slider .DNA-product-box-v2 .DNA-product-box-v2__buttons-wrap {
    display: none;
  }
  .DNA-module[data-id=offers-teaser] .DNA-module__main .DNA-module__slider .DNA-product-box-v2 .DNA-product-box-v2__footer {
    padding-top: 0.5em;
  }
  .DNA-module[data-id=offers-teaser] .DNA-module__main .DNA-module__slider .DNA-product-box-v2 .DNA-product-box-v2__price-wrap {
    font-size: 1em;
  }
  .DNA-module[data-id=offers-teaser] .DNA-module__main .DNA-module__slider .DNA-product-box-v2 .DNA-product-box-v2__price-addition span, .DNA-module[data-id=offers-teaser] .DNA-module__main .DNA-module__slider .DNA-product-box-v2 .DNA-product-box-v2__price-on-request span {
    font-size: 1.2em;
  }
  .DNA-module[data-id=offers-teaser] .DNA-module__main .DNA-module__slider .DNA-product-box-v2 .DNA-product-box-v2__price-digit b,
.DNA-module[data-id=offers-teaser] .DNA-module__main .DNA-module__slider .DNA-product-box-v2 .DNA-product-box-v2__price-digit span {
    font-size: 1.6em;
  }
}
@media (max-width: 767px) {
  .DNA-module[data-id=offers-teaser] .DNA-module__main .DNA-module__slider .DNA-product-box-v2 {
    padding-bottom: 0.5em;
    padding-top: 0.5em;
    width: 100%;
  }
  .DNA-module[data-id=offers-teaser] .DNA-module__main .DNA-module__slider .DNA-product-box-v2 .DNA-product-box-v2__wrap {
    padding-left: 0.5em;
    padding-right: 0.5em;
  }
  .DNA-module[data-id=offers-teaser] .DNA-module__main .DNA-module__slider .DNA-product-box-v2 .DNA-product-box-v2__overlay {
    padding: 1em;
  }
  .DNA-module[data-id=offers-teaser] .DNA-module__main .DNA-module__slider .DNA-product-box-v2 .DNA-product-box-v2__overlay > div {
    padding: 1em;
  }
  .DNA-module[data-id=offers-teaser] .DNA-module__main .DNA-module__slider .DNA-product-box-v2 .DNA-product-box-v2__seasons a,
.DNA-module[data-id=offers-teaser] .DNA-module__main .DNA-module__slider .DNA-product-box-v2 .DNA-product-box-v2__seasons span {
    font-size: 1.2em;
  }
  .DNA-module[data-id=offers-teaser] .DNA-module__main .DNA-module__slider .DNA-product-box-v2 .DNA-product-box-v2__title a,
.DNA-module[data-id=offers-teaser] .DNA-module__main .DNA-module__slider .DNA-product-box-v2 .DNA-product-box-v2__title span {
    font-size: 1.4em;
  }
  .DNA-module[data-id=offers-teaser] .DNA-module__main .DNA-module__slider .DNA-product-box-v2 .DNA-product-box-v2__footer {
    flex-wrap: wrap;
  }
  .DNA-module[data-id=offers-teaser] .DNA-module__main .DNA-module__slider .DNA-product-box-v2 .DNA-product-box-v2__price-wrap {
    flex: none;
    margin-bottom: 1em;
    width: 100%;
  }
  .DNA-module[data-id=offers-teaser] .DNA-module__main .DNA-module__slider .DNA-product-box-v2 .DNA-product-box-v2__price-addition span, .DNA-module[data-id=offers-teaser] .DNA-module__main .DNA-module__slider .DNA-product-box-v2 .DNA-product-box-v2__price-on-request span {
    font-size: 1em;
  }
  .DNA-module[data-id=offers-teaser] .DNA-module__main .DNA-module__slider .DNA-product-box-v2 .DNA-product-box-v2__price-digit b,
.DNA-module[data-id=offers-teaser] .DNA-module__main .DNA-module__slider .DNA-product-box-v2 .DNA-product-box-v2__price-digit span {
    font-size: 1.4em;
  }
  .DNA-module[data-id=offers-teaser] .DNA-module__main .DNA-module__slider .DNA-product-box-v2 .DNA-product-box-v2__notice-btn {
    margin-left: 0;
  }
}
@media (max-width: 480px) {
  .DNA-module[data-id=offers-teaser] .DNA-module__main .DNA-module__slider .DNA-product-box-v2 {
    padding-bottom: 1em;
    padding-top: 1em;
  }
  .DNA-module[data-id=offers-teaser] .DNA-module__main .DNA-module__slider .DNA-product-box-v2 .DNA-product-box-v2__wrap {
    padding-left: 1em;
    padding-right: 1em;
  }
}
.DNA-module[data-id=offers-teaser] .DNA-module__main .DNA-module__slider:not(.tns-slider) {
  display: flex;
  flex-wrap: wrap;
}
.DNA-module[data-id=offers-teaser] .DNA-module__main .DNA-module__product-box, .DNA-module[data-id=offers-teaser] .DNA-module__main .DNA-module__product-box-v2 {
  display: none !important;
}
.DNA-module[data-id=offers-teaser] .DNA-module__main .DNA-module__product-box.tns-item, .DNA-module[data-id=offers-teaser] .DNA-module__main .DNA-module__product-box-v2.tns-item {
  float: left;
}
.DNA-module[data-id=offers-teaser] .DNA-module__main .DNA-module__product-box.tns-item {
  display: flex !important;
}
.DNA-module[data-id=offers-teaser] .DNA-module__main .DNA-module__product-box-v2.tns-item {
  display: block !important;
}
.DNA-module[data-id=offers-teaser] .DNA-module__main .DNA-module__controls {
  margin-top: 2em;
}
.DNA-module[data-id=offers-teaser] .DNA-module__main .DNA-module__button-wrap {
  margin-top: calc(2em * 2);
  text-align: center;
}
@media (min-width: 1025px) {
  .DNA-module[data-id=offers-teaser] .DNA-module__main .DNA-module__slider:not(.tns-slider) .DNA-module__product-box:nth-child(-n+4) {
    display: flex !important;
  }
  .DNA-module[data-id=offers-teaser] .DNA-module__main .DNA-module__slider:not(.tns-slider) .DNA-module__product-box-v2:nth-child(-n+3) {
    display: block !important;
  }
}
@media (max-width: 1366px) {
  .DNA-module[data-id=offers-teaser] .DNA-module__main {
    margin-left: -1.5em;
    width: calc(100% + 1.5em + 1.5em);
  }
  .DNA-module[data-id=offers-teaser] .DNA-module__main .DNA-module__controls {
    margin-top: 1.5em;
  }
  .DNA-module[data-id=offers-teaser] .DNA-module__main .DNA-module__button-wrap {
    margin-top: calc(1.5em * 2);
  }
}
@media (min-width: 768px) and (max-width: 1024px) {
  .DNA-module[data-id=offers-teaser] .DNA-module__main .DNA-module__slider:not(.tns-slider) .DNA-module__product-box:nth-child(-n+2) {
    display: flex !important;
  }
  .DNA-module[data-id=offers-teaser] .DNA-module__main .DNA-module__slider:not(.tns-slider) .DNA-module__product-box-v2:nth-child(-n+2) {
    display: block !important;
  }
}
@media (max-width: 1024px) {
  .DNA-module[data-id=offers-teaser] .DNA-module__main {
    margin-left: -1em;
    width: calc(100% + 1em + 1em);
  }
  .DNA-module[data-id=offers-teaser] .DNA-module__main .DNA-module__controls {
    margin-top: 1em;
  }
  .DNA-module[data-id=offers-teaser] .DNA-module__main .DNA-module__button-wrap {
    margin-top: calc(1em * 2);
  }
}
@media (min-width: 481px) and (max-width: 767px) {
  .DNA-module[data-id=offers-teaser] .DNA-module__main .DNA-module__slider:not(.tns-slider) .DNA-module__product-box:nth-child(-n+2) {
    display: flex !important;
  }
  .DNA-module[data-id=offers-teaser] .DNA-module__main .DNA-module__slider:not(.tns-slider) .DNA-module__product-box-v2:nth-child(-n+2) {
    display: block !important;
  }
}
@media (max-width: 767px) {
  .DNA-module[data-id=offers-teaser] .DNA-module__main {
    margin-left: -0.5em;
    width: calc(100% + 0.5em + 0.5em);
  }
  .DNA-module[data-id=offers-teaser] .DNA-module__main .DNA-module__controls {
    margin-top: 0.5em;
  }
  .DNA-module[data-id=offers-teaser] .DNA-module__main .DNA-module__button-wrap {
    margin-top: calc(0.5em * 2);
  }
}
@media (max-width: 480px) {
  .DNA-module[data-id=offers-teaser] .DNA-module__main {
    margin-left: -1em;
    width: calc(100% + 1em + 1em);
  }
  .DNA-module[data-id=offers-teaser] .DNA-module__main .DNA-module__controls {
    margin-bottom: 1em;
  }
  .DNA-module[data-id=offers-teaser] .DNA-module__main .DNA-module__slider:not(.tns-slider) .DNA-module__product-box:first-child {
    display: flex !important;
  }
  .DNA-module[data-id=offers-teaser] .DNA-module__main .DNA-module__slider:not(.tns-slider) .DNA-module__product-box-v2:first-child {
    display: block !important;
  }
  .DNA-module[data-id=offers-teaser] .DNA-module__main .DNA-module__controls {
    margin-top: 1em;
  }
  .DNA-module[data-id=offers-teaser] .DNA-module__main .DNA-module__button-wrap {
    margin-top: calc(1em * 2);
  }
}
.DNA-module[data-id=offers-teaser] .DNA-module__product-box-v2__overlay {
  cursor: pointer;
}
@media (max-width: 1366px) {
  .DNA-module[data-id=offers-teaser] .DNA-module__header {
    margin-bottom: 1.5em;
  }
}
@media (max-width: 1024px) {
  .DNA-module[data-id=offers-teaser] .DNA-module__header {
    margin-bottom: 1em;
  }
}
@media (max-width: 767px) {
  .DNA-module[data-id=offers-teaser] .DNA-module__header {
    margin-bottom: 0.5em;
  }
}
@media (max-width: 480px) {
  .DNA-module[data-id=offers-teaser] .DNA-module__header {
    margin-bottom: 1em;
  }
}
