/*  ==========================================================================
    PRINT STYLES
    Styling for the printed version of the page

    INFO:
    - try not to modify the defaults
    - append your custom rules at the end after 'OWN RULES'
    - contributions for the kickstarter are welcome!
    ========================================================================== */
/*  INCLUDES
    ------------------------------------------------------------------------ */
/*  ==========================================================================
    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
    ------------------------------------------------------------------------ */
* {
  -webkit-print-color-adjust: exact;
  background: transparent !important;
  color: #000 !important;
  /* Black prints faster: h5bp.com/s */
  box-shadow: none !important;
  text-shadow: none !important;
}

a,
a:visited {
  text-decoration: underline;
}

abbr[title]:after {
  content: " (" attr(title) ")";
}

/*
 * Don't show links for images, or javascript/internal links
 */
.ir a:after,
a[href^="javascript:"]:after,
a[href^="#"]:after {
  content: "";
}

pre,
blockquote {
  border: 1px solid #999;
  page-break-inside: avoid;
}

thead {
  display: table-header-group;
  /* h5bp.com/t */
}

tr,
img {
  page-break-inside: avoid;
}

img {
  max-width: 100% !important;
}

@page {
  margin: 0.5cm;
}
p,
h2,
h3 {
  orphans: 3;
  widows: 3;
}

h2,
h3 {
  page-break-after: avoid;
}

video {
  display: none;
}

/* Own Rules
 * --------------------------------------------------------------------------- */
/*
 * GENERAL
 */
*:before,
*:after {
  display: none;
}

a[href]:after {
  display: none;
}

abbr[title]:after {
  display: none;
}

img {
  display: none;
  height: auto;
  width: 100%;
}

svg {
  display: none;
}

iframe {
  display: none;
}

video {
  display: none;
}

form,
label,
input,
select,
textarea,
button {
  display: none;
}

.hidden {
  display: none;
}

.DNA-icon {
  display: none;
}

.DNA-button,
.DNA-rte__more {
  display: none;
}

.DNA-loader,
.DNA-no-result {
  display: none;
}

.DNA-slider-controls,
.DNA-slider-arrows,
.DNA-slider-nav,
.DNA-slider-pagination {
  display: none !important;
}

.JS-tab-panel__tabs {
  display: none;
}

.tns-outer {
  display: none;
}

.DNA-scroller {
  display: none;
}

/*
 * TYPOGRAPHY
 */
* {
  color: #000000 !important;
}

body {
  font-family: Arial, sans-serif;
  font-size: 12px !important;
}

a {
  color: #000000 !important;
  text-decoration: underline !important;
}
a:visited, a:hover {
  color: #000000 !important;
  text-decoration: underline;
}

a * {
  color: #000000 !important;
}

b,
strong {
  color: #000000 !important;
}

h1,
h2,
h3,
h4,
h5,
h6,
p,
ul,
ol,
table,
blockquote,
pre {
  margin: 15px 0 15px 0;
}

ul,
ol {
  padding: 0 0 0 30px;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: #000000 !important;
}
h1 a,
h2 a,
h3 a,
h4 a,
h5 a,
h6 a {
  text-decoration: none !important;
}

h1 {
  font-size: 26px !important;
}

h2 {
  font-size: 20px !important;
}

h3,
h4,
h5,
h6 {
  font-size: 16px !important;
}

blockquote {
  border: 0;
  font-style: italic;
  text-align: center;
}

pre {
  border: 1px solid #777777;
  padding: 15px;
}

table {
  border: 1px solid #dddddd;
  width: 100%;
}

table tr th {
  background: #EEEEEE !important;
  color: #000000 !important;
  font-size: 16px !important;
  -webkit-print-color-adjust: exact;
}

.DNA-table__overlay {
  display: none;
}

/*
 * LAYOUT
 */
body > * {
  display: none;
}
body #branDNAmic {
  display: block !important;
}
body #branDNAmic > * {
  display: none;
}

/*
 * HEADER
 */
#DNA-section--header {
  border-bottom: 2px solid #777777;
  display: block !important;
  margin-bottom: 30px;
  padding: 0 0 30px 0;
}
#DNA-section--header > * {
  display: none;
}
#DNA-section--header .DNA-section__bar {
  *zoom: 1;
  display: block !important;
}
#DNA-section--header .DNA-section__bar:before, #DNA-section--header .DNA-section__bar:after {
  content: " ";
  display: table;
}
#DNA-section--header .DNA-section__bar:after {
  clear: both;
}
#DNA-section--header .DNA-section__bar > * {
  display: none;
}
#DNA-section--header .DNA-section__col--group-logo,
#DNA-section--header .DNA-section__col--hotel-logo {
  display: block !important;
}
#DNA-section--header .DNA-section__col--group-logo > *,
#DNA-section--header .DNA-section__col--hotel-logo > * {
  display: none;
}
#DNA-section--header .DNA-section__col--group-logo {
  float: left;
}
#DNA-section--header .DNA-section__col--hotel-logo {
  float: right;
}
#DNA-section--header .DNA-section__group-logo,
#DNA-section--header .DNA-section__hotel-logo {
  display: block !important;
}
#DNA-section--header .DNA-section__group-logo > *,
#DNA-section--header .DNA-section__hotel-logo > * {
  display: none;
}
#DNA-section--header .DNA-section__group-logo__image--default,
#DNA-section--header .DNA-section__hotel-logo__image--default {
  background-color: #EEEEEE !important;
  display: block !important;
  margin: 0 auto;
  padding: 10px;
  text-align: center;
}
#DNA-section--header .DNA-section__group-logo__image--default img,
#DNA-section--header .DNA-section__hotel-logo__image--default img {
  display: block;
  height: auto;
  width: 100%;
}
#DNA-section--header .DNA-section__group-logo__image--default {
  width: 75px;
}
#DNA-section--header .DNA-section__hotel-logo__image--default {
  width: 150px;
}

/*
 * MAIN
 */
#DNA-section--main {
  display: block !important;
}
#DNA-section--main > * {
  display: none;
}
#DNA-section--main .DNA-section__content {
  display: block !important;
}
#DNA-section--main .DNA-section__content > * {
  display: none;
}
#DNA-section--main .DNA-section__content .DNA-module {
  margin: 30px 0;
}
#DNA-section--main .DNA-section__content .DNA-module[data-id=job], #DNA-section--main .DNA-section__content .DNA-module[data-id=news], #DNA-section--main .DNA-section__content .DNA-module[data-id=offers-detail], #DNA-section--main .DNA-section__content .DNA-module[data-id=quote], #DNA-section--main .DNA-section__content .DNA-module[data-id=rooms-detail], #DNA-section--main .DNA-section__content .DNA-module[data-id=slide-boxes], #DNA-section--main .DNA-section__content .DNA-module[data-id=text], #DNA-section--main .DNA-section__content .DNA-module[data-id=text-pic] {
  display: block !important;
}
#DNA-section--main .DNA-section__content .DNA-module[data-id=offers-detail] .DNA-module__backlink-wrap,
#DNA-section--main .DNA-section__content .DNA-module[data-id=offers-detail] .DNA-module__widget, #DNA-section--main .DNA-section__content .DNA-module[data-id=rooms-detail] .DNA-module__backlink-wrap,
#DNA-section--main .DNA-section__content .DNA-module[data-id=rooms-detail] .DNA-module__widget {
  display: none;
}
#DNA-section--main .DNA-section__content .DNA-module[data-id=job] .DNA-module__backlink-wrap {
  display: none;
}
#DNA-section--main .DNA-section__content .DNA-module[data-id=news] .DNA-module__backlink-wrap {
  display: none;
}
#DNA-section--main .DNA-section__content .DNA-module[data-id=quote] {
  text-align: center;
}
#DNA-section--main .DNA-section__content .DNA-module[data-id=text] .DNA-module__breadcrumb {
  display: none;
}

/*
 * FOOTER
 */
#DNA-section--footer {
  border-top: 2px solid #777777;
  display: block !important;
  margin-top: 30px;
  padding: 30px 0 0 0;
}
#DNA-section--footer > * {
  display: none;
}
#DNA-section--footer .DNA-section__bar {
  display: block !important;
}
#DNA-section--footer .DNA-section__bar > * {
  display: none;
}
#DNA-section--footer .DNA-section__row--2 {
  display: block !important;
}
#DNA-section--footer .DNA-section__row--2 > * {
  display: none;
}
#DNA-section--footer .DNA-section__wrap {
  display: block !important;
}
#DNA-section--footer .DNA-section__wrap > * {
  display: none;
}
#DNA-section--footer .DNA-section__col {
  display: block !important;
}
#DNA-section--footer .DNA-section__col > * {
  display: none;
}
#DNA-section--footer .DNA-section__contact {
  display: block !important;
}
#DNA-section--footer .DNA-section__contact > * {
  display: none;
}
#DNA-section--footer .DNA-section__contact__left {
  display: block !important;
}
#DNA-section--footer .DNA-section__contact__left > * {
  display: none;
}
#DNA-section--footer .DNA-section__address {
  display: block !important;
}
#DNA-section--footer .DNA-section__address > * {
  display: none;
}
#DNA-section--footer .DNA-section__address__frame {
  display: block !important;
  font-style: italic;
  text-align: center;
}
#DNA-section--footer .DNA-section__address__frame * {
  font-size: 10px !important;
  margin: 0;
}
