/*  ==========================================================================
    TEXT/PIC
    ========================================================================== */
/*  ==========================================================================
    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=text-pic] {
  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=text-pic] .DNA-module__frame {
  display: flex;
}
.DNA-module[data-id=text-pic] .DNA-module__content, .DNA-module[data-id=text-pic] .DNA-module__vista {
  width: 50%;
}
.DNA-module[data-id=text-pic] .DNA-module__vista {
  background-color: #000000;
  position: relative;
}
.DNA-module[data-id=text-pic] .DNA-module__vista:before {
  content: "";
  display: block;
  height: 0;
  padding-top: 75%;
}
.DNA-module[data-id=text-pic] .DNA-module__slider-wrap {
  height: 100%;
  left: 0;
  overflow: hidden;
  position: absolute;
  top: 0;
  width: 100%;
  z-index: 5;
}
.DNA-module[data-id=text-pic] .DNA-module__slider-wrap .tns-outer {
  height: 100%;
}
.DNA-module[data-id=text-pic] .DNA-module__slider-wrap .tns-outer .tns-inner {
  height: 100%;
}
.DNA-module[data-id=text-pic] .DNA-module__slider {
  *zoom: 1;
  height: 100%;
}
.DNA-module[data-id=text-pic] .DNA-module__slider:before, .DNA-module[data-id=text-pic] .DNA-module__slider:after {
  content: " ";
  display: table;
}
.DNA-module[data-id=text-pic] .DNA-module__slider:after {
  clear: both;
}
.DNA-module[data-id=text-pic] .DNA-module__slider:not(.tns-slider) .DNA-module__image:not(:first-child) {
  display: none;
}
.DNA-module[data-id=text-pic] .DNA-module__image {
  height: 100%;
  float: left;
  width: 100%;
}
.DNA-module[data-id=text-pic] .DNA-module__image a {
  display: block;
  height: 100%;
  pointer-events: none;
  width: 100%;
}
.DNA-module[data-id=text-pic] .DNA-module__image img {
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
}
.DNA-module[data-id=text-pic] .DNA-module__controls {
  bottom: 0;
  left: 0;
  position: absolute;
  width: 100%;
  z-index: 10;
}
.DNA-module[data-id=text-pic] .DNA-module__content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 10em 20em;
}
.DNA-module[data-id=text-pic] .DNA-module__headlines + .DNA-module__text {
  margin-top: 2em;
}
.DNA-module[data-id=text-pic] .DNA-module__overline + .DNA-module__headline {
  margin-top: 2em;
}
.DNA-module[data-id=text-pic] .DNA-module__logo-wrap {
  padding: 3em 0;
}
.DNA-module[data-id=text-pic] .DNA-module__logo-wrap:first-child {
  padding-top: 0;
}
.DNA-module[data-id=text-pic] .DNA-module__logo-wrap:last-child {
  padding-bottom: 0;
}
.DNA-module[data-id=text-pic] .DNA-module__logo {
  display: inline-block;
}
.DNA-module[data-id=text-pic] .DNA-module__logo img {
  height: 9em;
  max-width: 22em;
  width: auto;
}
.DNA-module[data-id=text-pic] .DNA-module__logo img:not([src$=".svg"]) {
  display: none;
}
.DNA-module[data-id=text-pic] .DNA-module__subheadline {
  margin-top: 0.5em;
}
.DNA-module[data-id=text-pic] .DNA-module__slides, .DNA-module[data-id=text-pic] .DNA-module__button-wrap {
  margin-top: 3em;
}
.DNA-module[data-id=text-pic] .DNA-module__slide {
  margin-top: 2em;
}
.DNA-module[data-id=text-pic] .DNA-module__slide__header {
  align-items: center;
  color: var(--clr-scheme-primary);
  cursor: pointer;
  display: flex;
}
.DNA-module[data-id=text-pic] .DNA-module__slide__header:hover {
  color: #1C2122;
}
.DNA-module[data-id=text-pic] .DNA-module__slide__header.JS-steirer__trigger--act .DNA-module__slide__state .DNA-icon {
  display: inline;
}
.DNA-module[data-id=text-pic] .DNA-module__slide__state {
  align-items: center;
  display: flex;
  justify-content: center;
  width: 4em;
}
.DNA-module[data-id=text-pic] .DNA-module__slide__state .DNA-icon {
  display: none;
  font-size: 1.2em;
}
.DNA-module[data-id=text-pic] .DNA-module__slide__title {
  flex: 1;
}
.DNA-module[data-id=text-pic] .DNA-module__slide__title span {
  font-size: 2em;
  font-weight: 700;
  line-height: 1.2;
}
.DNA-module[data-id=text-pic] .DNA-module__slide__content {
  display: none;
  margin-top: 1em;
  padding-left: 4em;
  /* same width as "state", look above */
}
.DNA-module[data-id=text-pic] .DNA-module__slide__content.JS-steirer__slide--open {
  display: block;
}
.DNA-module[data-id=text-pic] .DNA-module__slide__text p {
  color: #1C2122;
  font-size: 1.6em;
  line-height: 1.4;
}
.DNA-module[data-id=text-pic] .DNA-module__slide__text p b,
.DNA-module[data-id=text-pic] .DNA-module__slide__text p strong,
.DNA-module[data-id=text-pic] .DNA-module__slide__text p th {
  font-weight: 700;
}
.DNA-module[data-id=text-pic] .DNA-module__slide__text p s,
.DNA-module[data-id=text-pic] .DNA-module__slide__text p u {
  -webkit-text-decoration-color: var(--clr-scheme-primary);
          text-decoration-color: var(--clr-scheme-primary);
}
.DNA-module[data-id=text-pic] .DNA-module__slide__text p sub,
.DNA-module[data-id=text-pic] .DNA-module__slide__text p sup {
  font-size: 60% !important;
}
.DNA-module[data-id=text-pic] .DNA-module__slide__text p hr {
  border-color: var(--clr-scheme-primary);
}
.DNA-module[data-id=text-pic] .DNA-module__slide__text p a {
  color: var(--clr-scheme-primary);
}
.DNA-module[data-id=text-pic] .DNA-module__slide__text p a:visited {
  color: var(--clr-scheme-primary);
}
.DNA-module[data-id=text-pic] .DNA-module__slide__text p a:hover {
  color: var(--clr-scheme-primary-80);
}
.DNA-module[data-id=text-pic] .DNA-module__slide__text p a[href^="tel:"] {
  color: inherit;
}
.DNA-module[data-id=text-pic] .DNA-module__slide__text p a[href^="tel:"]:visited, .DNA-module[data-id=text-pic] .DNA-module__slide__text p a[href^="tel:"]:hover {
  color: inherit;
}
.DNA-module[data-id=text-pic] .DNA-module__slide__text p * {
  font-size: 1em;
}
@media (max-width: 1024px) {
  .DNA-module[data-id=text-pic] .DNA-module__slide__text p {
    font-size: 1.5em;
  }
}
@media (max-width: 767px) {
  .DNA-module[data-id=text-pic] .DNA-module__slide__text p {
    font-size: 1.4em;
  }
}
.DNA-module[data-id=text-pic] .DNA-module__slide__link-wrap {
  margin-top: 0.5em;
}
.DNA-module[data-id=text-pic] .DNA-module__slide__link-wrap a {
  color: var(--clr-scheme-primary);
  font-size: 1.6em;
  font-weight: 700;
}
.DNA-module[data-id=text-pic] .DNA-module__slide__link-wrap a:visited {
  color: var(--clr-scheme-primary);
}
.DNA-module[data-id=text-pic] .DNA-module__slide__link-wrap a:hover {
  color: var(--clr-scheme-primary-80);
}
.DNA-module[data-id=text-pic] .DNA-module__slide:first-child {
  margin-top: 0;
}
.DNA-module[data-id=text-pic] .DNA-module__button--id-gallery {
  display: none;
}
.DNA-module[data-id=text-pic][data-reflect="1"] .DNA-module__content {
  order: 2;
}
.DNA-module[data-id=text-pic][data-reflect="1"] .DNA-module__vista {
  order: 1;
}
@media (min-width: 1025px) {
  .DNA-module[data-id=text-pic] .DNA-module__image img {
    animation: img-scale 30s ease-in-out infinite;
  }
  .DNA-module[data-id=text-pic][data-reflect="1"] .DNA-module__image img {
    animation: img-scale-inverted 30s ease-in-out infinite;
  }
}
@media (max-width: 1600px) {
  .DNA-module[data-id=text-pic] .DNA-module__content {
    padding: 9em 15em;
  }
}
@media (max-width: 1366px) {
  .DNA-module[data-id=text-pic] .DNA-module__content {
    padding: 8em 10em;
  }
}
@media (max-width: 1024px) {
  .DNA-module[data-id=text-pic] .DNA-module__content {
    padding: 6em 4em;
  }
  .DNA-module[data-id=text-pic] .DNA-module__overline + .DNA-module__headline {
    margin-top: 1.5em;
  }
  .DNA-module[data-id=text-pic] .DNA-module__logo-wrap {
    padding: 2.5em 0;
  }
  .DNA-module[data-id=text-pic] .DNA-module__hotel-logo__image img {
    height: 5em;
    width: 12.5em;
  }
  .DNA-module[data-id=text-pic] .DNA-module__slides, .DNA-module[data-id=text-pic] .DNA-module__button-wrap {
    margin-top: 2.5em;
  }
  .DNA-module[data-id=text-pic] .DNA-module__slide {
    margin-top: 1.5em;
  }
  .DNA-module[data-id=text-pic] .DNA-module__slide__title span {
    font-size: 1.8em;
  }
  .DNA-module[data-id=text-pic] .DNA-module__slide__state {
    width: 3.5em;
  }
  .DNA-module[data-id=text-pic] .DNA-module__slide__state .DNA-icon {
    font-size: 1em;
  }
  .DNA-module[data-id=text-pic] .DNA-module__slide__content {
    padding-left: 3.5em;
    /* same width as "state", look above */
  }
  .DNA-module[data-id=text-pic] .DNA-module__slide__link-wrap a {
    font-size: 1.5em;
  }
}
@media (max-width: 767px) {
  .DNA-module[data-id=text-pic] .DNA-module__frame {
    flex-direction: column;
  }
  .DNA-module[data-id=text-pic] .DNA-module__content, .DNA-module[data-id=text-pic] .DNA-module__vista {
    width: 100%;
  }
  .DNA-module[data-id=text-pic] .DNA-module__content {
    order: 2;
    padding: 4em 2.5em;
  }
  .DNA-module[data-id=text-pic] .DNA-module__overline + .DNA-module__headline {
    margin-top: 1em;
  }
  .DNA-module[data-id=text-pic] .DNA-module__logo-wrap {
    padding: 2em 0;
  }
  .DNA-module[data-id=text-pic] .DNA-module__slides, .DNA-module[data-id=text-pic] .DNA-module__button-wrap {
    margin-top: 2em;
  }
  .DNA-module[data-id=text-pic] .DNA-module__slide {
    margin-top: 1em;
  }
  .DNA-module[data-id=text-pic] .DNA-module__slide__title span {
    font-size: 1.6em;
  }
  .DNA-module[data-id=text-pic] .DNA-module__slide__state {
    width: 3em;
  }
  .DNA-module[data-id=text-pic] .DNA-module__slide__state .DNA-icon {
    font-size: 0.8em;
  }
  .DNA-module[data-id=text-pic] .DNA-module__slide__content {
    margin-top: 0.5em;
    padding-left: 3em;
    /* same width as "state", look above */
  }
  .DNA-module[data-id=text-pic] .DNA-module__slide__link-wrap a {
    font-size: 1.4em;
  }
  .DNA-module[data-id=text-pic] .DNA-module__button-wrap {
    display: flex;
  }
  .DNA-module[data-id=text-pic] .DNA-module__button {
    margin-left: 1em;
  }
  .DNA-module[data-id=text-pic] .DNA-module__button--id-gallery {
    display: inline-flex;
  }
  .DNA-module[data-id=text-pic] .DNA-module__button:first-child {
    margin-left: 0;
  }
  .DNA-module[data-id=text-pic] .DNA-module__vista {
    order: 1;
  }
  .DNA-module[data-id=text-pic] .DNA-module__vista:before {
    content: "";
    display: block;
    height: 0;
    padding-top: 42.8571428571%;
  }
  .DNA-module[data-id=text-pic] .DNA-module__image a {
    pointer-events: auto;
  }
  .DNA-module[data-id=text-pic][data-mobile-image="0"] .DNA-module__vista {
    display: none;
  }
  .DNA-module[data-id=text-pic][data-mobile-image="0"] + .DNA-module[data-id=text-pic][data-mobile-image="0"] {
    border-top: 1px solid #1C2122;
  }
}
