/*  ==========================================================================
    EYECATCHER
    ========================================================================== */
/*  ==========================================================================
    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=eyecatcher] {
  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=eyecatcher] .DNA-module__wrap {
  margin: 0 auto;
  max-width: 256em;
  position: relative;
}
.DNA-module[data-id=eyecatcher] .DNA-module__slider-wrap {
  overflow: hidden;
  position: relative;
  z-index: 5;
}
.DNA-module[data-id=eyecatcher] .DNA-module__slider {
  *zoom: 1;
}
.DNA-module[data-id=eyecatcher] .DNA-module__slider:before, .DNA-module[data-id=eyecatcher] .DNA-module__slider:after {
  content: " ";
  display: table;
}
.DNA-module[data-id=eyecatcher] .DNA-module__slider:after {
  clear: both;
}
.DNA-module[data-id=eyecatcher] .DNA-module__image {
  background-color: #000000;
  display: none;
  float: left;
  width: 100%;
}
.DNA-module[data-id=eyecatcher] .DNA-module__image > div {
  position: relative;
}
.DNA-module[data-id=eyecatcher] .DNA-module__image > div:before {
  content: "";
  display: block;
  height: 0;
  padding-top: 42.8571428571%;
}
.DNA-module[data-id=eyecatcher] .DNA-module__image > div > div {
  height: 100%;
  left: 0;
  overflow: hidden;
  position: absolute;
  top: 0;
  width: 100%;
}
.DNA-module[data-id=eyecatcher] .DNA-module__image > div > div img {
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
}
.DNA-module[data-id=eyecatcher] .DNA-module__image:first-child, .DNA-module[data-id=eyecatcher] .DNA-module__image.tns-item {
  display: block;
}
.DNA-module[data-id=eyecatcher] .DNA-module__image--auto-ratio > div:before {
  display: none;
}
.DNA-module[data-id=eyecatcher] .DNA-module__image--auto-ratio > div > div {
  height: auto;
  left: auto;
  position: static;
  top: auto;
}
.DNA-module[data-id=eyecatcher] .DNA-module__image--auto-ratio > div > div img {
  display: block;
  height: auto;
  width: 100%;
  -o-object-fit: none;
     object-fit: none;
}
.DNA-module[data-id=eyecatcher] .DNA-module__controls {
  bottom: 0;
  left: 0;
  position: absolute;
  width: 100%;
  z-index: 10;
}
.DNA-module[data-id=eyecatcher] .DNA-module__video-wrap {
  position: relative;
}
.DNA-module[data-id=eyecatcher] .DNA-module__video-wrap:before {
  content: "";
  display: block;
  height: 0;
  padding-top: 42.8571428571%;
}
.DNA-module[data-id=eyecatcher] .DNA-module__video {
  background-color: #000000;
  height: 100%;
  left: 0;
  overflow: hidden;
  position: absolute;
  top: 0;
  width: 100%;
  z-index: 10;
}
.DNA-module[data-id=eyecatcher] .DNA-module__video video {
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  pointer-events: none;
}
.DNA-module[data-id=eyecatcher] .DNA-module__video video:not(.JS-video--ready) {
  opacity: 0;
}
@media (min-width: 1025px) {
  .DNA-module[data-id=eyecatcher] .DNA-module__image > div > div img {
    animation: img-scale 30s ease-in-out infinite;
  }
}
@media (max-width: 1024px) {
  .DNA-module[data-id=eyecatcher] .DNA-module__image > div:before {
    content: "";
    display: block;
    height: 0;
    padding-top: 56.25%;
  }
  .DNA-module[data-id=eyecatcher] .DNA-module__image--auto-ratio > div:before {
    display: none;
  }
  .DNA-module[data-id=eyecatcher] .DNA-module__video-wrap:before {
    content: "";
    display: block;
    height: 0;
    padding-top: 56.25%;
  }
}
@media (max-width: 767px) {
  .DNA-module[data-id=eyecatcher] .DNA-module__image > div:before {
    content: "";
    display: block;
    height: 0;
    padding-top: 75%;
  }
  .DNA-module[data-id=eyecatcher] .DNA-module__image--auto-ratio > div:before {
    display: none;
  }
  .DNA-module[data-id=eyecatcher] .DNA-module__video-wrap:before {
    content: "";
    display: block;
    height: 0;
    padding-top: 75%;
  }
}
