/*  ==========================================================================
    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.
    ========================================================================== */
/*  ==========================================================================
    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!
    ========================================================================== */
/*
 * RESPONSIVE PROPERTIES
 * creates a css-property for each media query (desktop, tablet & mobile)
 */
/*  ==========================================================================
    BUTTONS
    Helpers to edit buttons

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

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

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

    INFO:
    - Usage example:
      @include vista(100vh, 75vh, 100vh, 60vh, true);
    ========================================================================== */
/*  ==========================================================================
    CONTENT-PARTS
    ========================================================================== */
/*
 * WRAPPER DIMENSIONS
 * generates wrapper padding & max-width
 */
/*
 * CONTENT TABLE
 */
/*
 * RICH-TEXT
 */
/*
 * HEADLINES
 */
/*
 * OPENER FOR CROPPED TEXT ON MOBILE
 */
/*  ==========================================================================
    SLIDER ITEMS
    ========================================================================== */
/*  ==========================================================================
    ACCORDEON BOXES
    ========================================================================== */
/*  ==========================================================================
    GALLERYLIST LAYOUTS
    ========================================================================== */
/*  ==========================================================================
    TABS
    ========================================================================== */
/*  ==========================================================================
    HEADER
    ========================================================================== */
/*  ==========================================================================
    FOOTER
    ========================================================================== */
/*  ==========================================================================
    DETAIL-PAGE
    ========================================================================== */
/*
 * PAGINATION FOR DETAIL-PAGES
 */
/*
 * DETAIL TEASER
 */
/*  ==========================================================================
    FLATPICKR
    ========================================================================== */
/*  ==========================================================================
    KEYFRAMES
    Collection of all keyframes (mind the ordering!)
    ========================================================================== */
/*  ==========================================================================
    EFFECTS
    ========================================================================== */
@keyframes animate-fade-up {
  0% {
    opacity: 0;
    transform: translateY(3em);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes animate-fade-left {
  0% {
    opacity: 0;
    transform: translateX(3em);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes animate-fade-right {
  0% {
    opacity: 0;
    transform: translateX(-3em);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
/*  ==========================================================================
    LOADER
    ========================================================================== */
@keyframes loader-spinning {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
@keyframes loader-blink {
  0% {
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
/*  ==========================================================================
    MISC
    ========================================================================== */
@keyframes zoom-header-images {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(1.1);
  }
}
/*  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
 * --------------------------------------------------------------------------- */
/*
 * eHotelier
 */
.ui-datepicker,
.flatpickr-calendar {
  display: none !important;
}

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

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

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

img {
  height: auto;
  display: none !important;
  width: auto;
}

.hidden {
  display: none;
}

.icon,
.dna-icon {
  display: none;
}

/*
 * Typography
 */
body {
  font-family: Arial, sans-serif;
  font-size: 12px;
}

h1,
h2,
h3,
h4,
.DNA-headlines > * {
  margin-bottom: 15px;
  text-transform: uppercase;
}

.DNA-headlines {
  margin: 30px 0 15px 0;
}

h1 {
  font-size: 20px;
}

h2 {
  font-size: 16px;
}

h3,
h4 {
  font-size: 14px !important;
}

a {
  text-decoration: none;
}

p,
ul,
ol,
table {
  font-size: 12px;
  margin: 0 0 15px 0;
}

table {
  width: 100%;
}

table tr th {
  background-color: #EEEEEE !important;
  font-size: 16px;
}

table tr > * {
  border: 1px solid;
}

/*
 * Output
 */
body > *:not(.branDNAmic) {
  display: none;
}

.branDNAmic > *:not(#DNA-section--main):not(#DNA-section--print) {
  display: none;
}

#DNA-section--main > *:not(.DNA-section__content) {
  display: none;
}
#DNA-section--main .DNA-section__content > *:not([data-id^=text]) {
  display: none;
}

.DNA-section[data-id=print] {
  margin-top: 25px;
  padding-top: 25px;
  border-top: 1px solid;
  text-align: center;
}
.DNA-section[data-id=print] .DNA-section__elements {
  display: flex;
  justify-content: center;
  margin-bottom: 15px;
}
.DNA-section[data-id=print] .DNA-section__logo {
  padding: 15px;
  background-color: #CCCCCC !important;
  display: block;
}
.DNA-section[data-id=print] .DNA-section__logo img {
  display: block !important;
  max-width: 150px !important;
  max-height: 150px !important;
}
.DNA-section[data-id=print] .DNA-section__content {
  font-size: 14px;
  line-height: 1.4;
}
