@charset "UTF-8";
/*  ==========================================================================
    TEXT
    ========================================================================== */
/*  ==========================================================================
    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] {
  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] .DNA-module__bg {
  height: 100%;
  left: 0;
  overflow: hidden;
  position: absolute;
  top: 0;
  width: 100%;
  z-index: 5;
}
.DNA-module[data-id=text] .DNA-module__bg img {
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
}
.DNA-module[data-id=text] .DNA-module__bg:before {
  background-color: rgba(28, 33, 34, 0.75);
  content: "";
  display: block;
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
  width: 100%;
  z-index: 5;
}
.DNA-module[data-id=text] .DNA-module__breadcrumb {
  margin-bottom: 7.5em;
}
.DNA-module[data-id=text] .DNA-module__breadcrumb a,
.DNA-module[data-id=text] .DNA-module__breadcrumb span {
  font-size: 1.2em;
  line-height: 1;
  text-transform: uppercase;
}
.DNA-module[data-id=text] .DNA-module__breadcrumb a {
  color: #1C2122;
}
.DNA-module[data-id=text] .DNA-module__breadcrumb a:visited {
  color: #1C2122;
}
.DNA-module[data-id=text] .DNA-module__breadcrumb a:hover {
  color: var(--clr-scheme-primary);
}
.DNA-module[data-id=text] .DNA-module__wrap {
  position: relative;
  z-index: 10;
}
.DNA-module[data-id=text] .DNA-module__headlines, .DNA-module[data-id=text] .DNA-module__logo-wrap, .DNA-module[data-id=text] .DNA-module__button-wrap {
  text-align: center;
}
.DNA-module[data-id=text] .DNA-module__headlines + .DNA-module__content {
  margin-top: 2em;
}
.DNA-module[data-id=text] .DNA-module__headlines.DNA-module__headlines--left {
  text-align: left;
}
.DNA-module[data-id=text] .DNA-module__overline + .DNA-module__headline {
  margin-top: 2em;
}
.DNA-module[data-id=text] .DNA-module__logo-wrap {
  padding: 3em 0;
}
.DNA-module[data-id=text] .DNA-module__logo-wrap:first-child {
  padding-top: 0;
}
.DNA-module[data-id=text] .DNA-module__logo-wrap:last-child {
  padding-bottom: 0;
}
.DNA-module[data-id=text] .DNA-module__hotel-logo {
  display: inline-block;
  pointer-events: none;
}
.DNA-module[data-id=text] .DNA-module__hotel-logo__image img {
  height: 10em;
  width: 25em;
}
.DNA-module[data-id=text] .DNA-module__hotel-logo__image img:not([src$=".svg"]) {
  display: none;
}
.DNA-module[data-id=text] .DNA-module__subheadline {
  margin-top: 0.5em;
}
.DNA-module[data-id=text] .DNA-module__button-wrap {
  margin-top: 3em;
}
.DNA-module[data-id=text] .DNA-module__button-wrap--left {
  text-align: left;
}
.DNA-module[data-id=text].DNA-module--ci-bg {
  background-color: var(--clr-scheme-primary);
}
.DNA-module[data-id=text].DNA-module--ci-bg .DNA-module__breadcrumb {
  display: none;
}
.DNA-module[data-id=text].DNA-module--ci-bg .DNA-module__overline {
  color: #FFFFFF;
}
.DNA-module[data-id=text].DNA-module--ci-bg .DNA-module__overline-divider {
  background-color: #FFFFFF;
}
.DNA-module[data-id=text].DNA-module--ci-bg .DNA-module__rte h1 s,
.DNA-module[data-id=text].DNA-module--ci-bg .DNA-module__rte h1 u,
.DNA-module[data-id=text].DNA-module--ci-bg .DNA-module__rte h2 s,
.DNA-module[data-id=text].DNA-module--ci-bg .DNA-module__rte h2 u,
.DNA-module[data-id=text].DNA-module--ci-bg .DNA-module__rte h3 s,
.DNA-module[data-id=text].DNA-module--ci-bg .DNA-module__rte h3 u,
.DNA-module[data-id=text].DNA-module--ci-bg .DNA-module__rte h4 s,
.DNA-module[data-id=text].DNA-module--ci-bg .DNA-module__rte h4 u,
.DNA-module[data-id=text].DNA-module--ci-bg .DNA-module__rte h5 s,
.DNA-module[data-id=text].DNA-module--ci-bg .DNA-module__rte h5 u,
.DNA-module[data-id=text].DNA-module--ci-bg .DNA-module__rte h6 s,
.DNA-module[data-id=text].DNA-module--ci-bg .DNA-module__rte h6 u,
.DNA-module[data-id=text].DNA-module--ci-bg .DNA-module__rte p s,
.DNA-module[data-id=text].DNA-module--ci-bg .DNA-module__rte p u {
  -webkit-text-decoration-color: #5C4E46;
          text-decoration-color: #5C4E46;
}
.DNA-module[data-id=text].DNA-module--ci-bg .DNA-module__rte h1 hr,
.DNA-module[data-id=text].DNA-module--ci-bg .DNA-module__rte h2 hr,
.DNA-module[data-id=text].DNA-module--ci-bg .DNA-module__rte h3 hr,
.DNA-module[data-id=text].DNA-module--ci-bg .DNA-module__rte h4 hr,
.DNA-module[data-id=text].DNA-module--ci-bg .DNA-module__rte h5 hr,
.DNA-module[data-id=text].DNA-module--ci-bg .DNA-module__rte h6 hr,
.DNA-module[data-id=text].DNA-module--ci-bg .DNA-module__rte p hr {
  border-color: #5C4E46;
}
.DNA-module[data-id=text].DNA-module--ci-bg .DNA-module__rte a {
  color: #5C4E46;
}
.DNA-module[data-id=text].DNA-module--ci-bg .DNA-module__rte a:visited {
  color: #5C4E46;
}
.DNA-module[data-id=text].DNA-module--ci-bg .DNA-module__rte a:hover {
  color: rgba(92, 78, 70, 0.8);
}
.DNA-module[data-id=text].DNA-module--ci-bg.DNA-module--corona-info {
  overflow: hidden;
}
.DNA-module[data-id=text].DNA-module--ci-bg.DNA-module--corona-info:before, .DNA-module[data-id=text].DNA-module--ci-bg.DNA-module--corona-info:after {
  content: "";
  font-family: "DNA" !important;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-style: normal;
  font-variant: normal;
  font-weight: 400;
  line-height: 1;
  speak: none;
  text-transform: none;
  color: rgba(255, 255, 255, 0.25);
  display: block;
  font-size: 30em;
  position: absolute;
  pointer-events: none;
  top: 50%;
  transform: translateY(-50%) !important;
  /* "!important" to override "pagespeed optimizations" from the "global.scss" */
  z-index: 5;
}
.DNA-module[data-id=text].DNA-module--ci-bg.DNA-module--corona-info:before {
  left: 0;
}
.DNA-module[data-id=text].DNA-module--ci-bg.DNA-module--corona-info:after {
  right: 0;
}
.DNA-module[data-id=text]:not(:first-child) .DNA-module__breadcrumb {
  display: none;
}
.DNA-module[data-id=text][data-inverted="1"] .DNA-module__breadcrumb a {
  color: #FFFFFF;
}
.DNA-module[data-id=text][data-inverted="1"] .DNA-module__breadcrumb a:visited {
  color: #FFFFFF;
}
.DNA-module[data-id=text][data-inverted="1"] .DNA-module__breadcrumb a:hover {
  color: var(--clr-scheme-primary);
}
@media (min-width: 1025px) {
  .DNA-module[data-id=text] .DNA-module__bg img {
    animation: img-scale 30s ease-in-out infinite;
  }
}
@media (max-width: 1024px) {
  .DNA-module[data-id=text] .DNA-module__breadcrumb {
    margin-bottom: 5em;
  }
  .DNA-module[data-id=text] .DNA-module__breadcrumb a,
.DNA-module[data-id=text] .DNA-module__breadcrumb span {
    font-size: 1.1em;
  }
  .DNA-module[data-id=text] .DNA-module__overline + .DNA-module__headline {
    margin-top: 1.5em;
  }
  .DNA-module[data-id=text] .DNA-module__logo-wrap {
    padding: 2.5em 0;
  }
  .DNA-module[data-id=text] .DNA-module__hotel-logo__image img {
    height: 7.5em;
    width: 18.5em;
  }
  .DNA-module[data-id=text] .DNA-module__button-wrap {
    margin-top: 2.5em;
  }
  .DNA-module[data-id=text].DNA-module--ci-bg.DNA-module--corona-info:before, .DNA-module[data-id=text].DNA-module--ci-bg.DNA-module--corona-info:after {
    font-size: 25em;
  }
}
@media (max-width: 767px) {
  .DNA-module[data-id=text] .DNA-module__breadcrumb {
    margin-bottom: 2.5em;
  }
  .DNA-module[data-id=text] .DNA-module__breadcrumb a,
.DNA-module[data-id=text] .DNA-module__breadcrumb span {
    font-size: 1em;
  }
  .DNA-module[data-id=text] .DNA-module__overline + .DNA-module__headline {
    margin-top: 1em;
  }
  .DNA-module[data-id=text] .DNA-module__logo-wrap {
    padding: 2em 0;
  }
  .DNA-module[data-id=text] .DNA-module__hotel-logo__image img {
    height: 6.5em;
    width: 16em;
  }
  .DNA-module[data-id=text] .DNA-module__button-wrap {
    margin-top: 2em;
  }
  .DNA-module[data-id=text].DNA-module--ci-bg.DNA-module--corona-info:before, .DNA-module[data-id=text].DNA-module--ci-bg.DNA-module--corona-info:after {
    font-size: 17.5em;
  }
}
@media (max-width: 480px) {
  .DNA-module[data-id=text].DNA-module--ci-bg.DNA-module--corona-info:before, .DNA-module[data-id=text].DNA-module--ci-bg.DNA-module--corona-info:after {
    font-size: 12.5em;
  }
}
