/*!*****************************************************************************************************************************************************************************************************************************************************************!*\
  !*** css ./node_modules/css-loader/dist/cjs.js??ruleSet[1].rules[0].use[1]!./node_modules/postcss-loader/dist/cjs.js??ruleSet[1].rules[0].use[2]!./node_modules/sass-loader/dist/cjs.js??ruleSet[1].rules[0].use[3]!../Templates/Modules/Gallery/frontend.scss ***!
  \*****************************************************************************************************************************************************************************************************************************************************************/
/*  ==========================================================================
    MODULE
    ========================================================================== */
/*  ==========================================================================
    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-"
    ========================================================================== */
/*  ==========================================================================
    DEFAULTS
    ========================================================================== */
/*  ==========================================================================
    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.
    ========================================================================== */
/*  ==========================================================================
    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!)
    ========================================================================== */
/*  ==========================================================================
    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
 */
/*
 * RESPONSIVE PROPERTIES
 * creates a css-property for each media query (desktop, tablet & mobile)
 */
/*  ==========================================================================
    TYPOGRAPHY
    Helpers to arrange type

    INFO:
    - all mixins should start with "typo" as prefix
    ========================================================================== */
/*  ==========================================================================
    CONTENT
    Helpers for Headlines/RichText/...

    INFO:
    - all mixins should start with "content" as prefix
    ========================================================================== */
/*
 * OVERLINE
 */
/*
 * HEADLINES
 */
/*
 * TABLE-WRAP
 */
/*
 * RICH-TEXT
 */
/*  ==========================================================================
    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
    ========================================================================== */
/*  ==========================================================================
    VISTA
    Helper to add base style to the vista output.

    INFO:
    - Usage example:
      @include vista(100vh, 75vh, 100vh, 60vh, true);
    ========================================================================== */
/*  ==========================================================================
    POPUP
    ========================================================================== */
/*  ==========================================================================
    FLATPICKR
    ========================================================================== */
/*  ==========================================================================
    HEADER
    Helpers to edit header

    INFO:
    - all mixins should start with "header" as prefix
    ========================================================================== */
/*  ==========================================================================
    MISC
    ========================================================================== */
/*  ==========================================================================
    MISC
    ========================================================================== */
/*  ==========================================================================
    EHOTELIER
    Helpers to edit eHotelier elements

    INFO:
    - all mixins should start with "ehot" as prefix
    ========================================================================== */
/*  ==========================================================================
    FOOTER
    Helpers to edit footer

    INFO:
    - all mixins should start with "footer" as prefix
    ========================================================================== */
/*  ==========================================================================
    KEYFRAMES
    Collection of all keyframes (mind the ordering!)
    ========================================================================== */
/*  ==========================================================================
    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 pulse-animation {
  0% {
    transform: scale(1);
    background: rgba(180, 144, 98, 0.3);
  }
  100% {
    transform: scale(1.1);
    background: rgba(180, 144, 98, 0);
  }
}
/* STYLING
 * --------------------------------------------------------------------------- */
.DNA-module[data-id=Gallery] {
  /* RESPONSIVE
   * --------------------------------------------------------------------------- */
}
.DNA-module[data-id=Gallery] .DNA-module__tabs {
  padding-top: 1em;
  margin-bottom: 5em;
  position: sticky;
  top: 5em;
  z-index: 1;
  background-color: #1C1C1C;
}
.DNA-module[data-id=Gallery] .DNA-module__tabs__select {
  display: none;
}
.DNA-module[data-id=Gallery] .DNA-module__tabs__list {
  display: flex;
  gap: 2em 3.5em;
  align-items: center;
  flex-wrap: wrap;
}
.DNA-module[data-id=Gallery] .DNA-module__tabs__item {
  letter-spacing: 0.34px;
  color: rgba(255, 255, 255, 0.9);
  text-shadow: 0px 0px 20px rgba(0, 0, 0, 0.15);
  cursor: pointer;
}
.DNA-module[data-id=Gallery] .DNA-module__tabs__item > * {
  font-size: 1.8em;
}
@media (max-width: 1024px) {
  .DNA-module[data-id=Gallery] .DNA-module__tabs__item > * {
    font-size: 1.6em;
  }
}
.DNA-module[data-id=Gallery] .DNA-module__tabs__item[data-active="1"] {
  color: #B49062;
}
@media (min-width: 1025px) {
  .DNA-module[data-id=Gallery] .DNA-module__tabs__item {
    transition: opacity 0.5s;
  }
  .DNA-module[data-id=Gallery] .DNA-module__tabs__item[data-active="0"]:hover {
    opacity: 0.8;
  }
}
@media (max-width: 1024px) {
  .DNA-module[data-id=Gallery] .DNA-module__tabs__list {
    gap: 3em;
  }
}
.DNA-module[data-id=Gallery] .DNA-module__tabs__wrap {
  position: relative;
}
.DNA-module[data-id=Gallery] .DNA-module__tabs__overlay {
  position: absolute;
  width: 6em;
  top: 0;
  height: 100%;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.5s;
}
.DNA-module[data-id=Gallery] .DNA-module__tabs__overlay[data-position=right] {
  background: linear-gradient(90deg, rgba(28, 28, 28, 0) 0%, #1c1c1c 90%);
  right: 0;
}
.DNA-module[data-id=Gallery] .DNA-module__tabs__overlay[data-position=left] {
  background: linear-gradient(90deg, #1c1c1c 0%, rgba(28, 28, 28, 0) 90%);
  left: 0;
  width: 2.5em;
}
.DNA-module[data-id=Gallery] .DNA-module__tabs__overlay[data-active="1"] {
  opacity: 1;
}
.DNA-module[data-id=Gallery] .DNA-module__tabs__list {
  gap: 0;
  flex-wrap: nowrap;
  overflow: auto;
  padding-top: 0.5em;
  padding-bottom: 1em;
  justify-content: flex-start;
}
.DNA-module[data-id=Gallery] .DNA-module__tabs__list::-webkit-scrollbar {
  height: 5px;
}
.DNA-module[data-id=Gallery] .DNA-module__tabs__list::-webkit-scrollbar-track {
  background-color: rgba(255, 255, 255, 0.1);
}
.DNA-module[data-id=Gallery] .DNA-module__tabs__list::-webkit-scrollbar-thumb {
  background-color: rgba(255, 255, 255, 0.6);
}
.DNA-module[data-id=Gallery] .DNA-module__tabs__item {
  white-space: nowrap;
  position: relative;
  padding: 0 1.5em;
}
.DNA-module[data-id=Gallery] .DNA-module__tabs__item:first-child {
  padding-left: 0;
}
.DNA-module[data-id=Gallery] .DNA-module__tabs__item:last-child {
  padding-right: 0;
}
.DNA-module[data-id=Gallery] .DNA-module__tabs__item:not(:last-child):after {
  content: "|";
  position: absolute;
  right: 0;
  font-size: 1.8em;
  color: rgba(255, 255, 255, 0.9) !important;
}
.DNA-module[data-id=Gallery] .DNA-module__tabs__arrows {
  display: none;
}
@media (min-width: 1025px) {
  .DNA-module[data-id=Gallery] .DNA-module__tabs__wrap {
    height: 4.5em;
    overflow: hidden;
  }
}
@media (min-width: 1025px) {
  .DNA-module[data-id=Gallery] .DNA-module__tabs[data-slider-arrows="1"] {
    display: flex;
  }
  .DNA-module[data-id=Gallery] .DNA-module__tabs[data-slider-arrows="1"] .DNA-module__tabs__list {
    padding-bottom: 0.5em;
    overflow: unset;
  }
  .DNA-module[data-id=Gallery] .DNA-module__tabs[data-slider-arrows="1"] .DNA-module__tabs__item {
    width: auto;
  }
  .DNA-module[data-id=Gallery] .DNA-module__tabs[data-slider-arrows="1"] .DNA-module__tabs__arrows {
    display: flex;
    gap: 1.2em;
    align-items: center;
    margin-left: 2em;
  }
  .DNA-module[data-id=Gallery] .DNA-module__tabs[data-slider-arrows="1"] .DNA-module__tabs__arrows .DNA-slider-pagination {
    color: #FFFFFF;
    font-weight: 300;
  }
  .DNA-module[data-id=Gallery] .DNA-module__tabs[data-slider-arrows="1"] .DNA-module__tabs__arrows .DNA-slider-pagination > * {
    font-size: 1.4em;
  }
  .DNA-module[data-id=Gallery] .DNA-module__tabs[data-slider-arrows="1"] .DNA-module__tabs__arrows .DNA-slider-pagination > *:first-child {
    font-weight: 500;
  }
  .DNA-module[data-id=Gallery] .DNA-module__tabs[data-slider-arrows="1"] .DNA-module__tabs__arrows .DNA-slider-arrows {
    display: flex;
    align-items: center;
    gap: 0.7em;
  }
  .DNA-module[data-id=Gallery] .DNA-module__tabs[data-slider-arrows="1"] .DNA-module__tabs__arrows .DNA-slider-arrows__arrow {
    padding: 1em;
    aspect-ratio: 1/1;
    border-radius: 50%;
    color: #FFFFFF;
    border: 1px solid rgba(255, 255, 255, 0.25);
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
  }
  .DNA-module[data-id=Gallery] .DNA-module__tabs[data-slider-arrows="1"] .DNA-module__tabs__arrows .DNA-slider-arrows__arrow > * {
    font-size: 1.2em;
  }
}
@media (max-width: 1024px) {
  .DNA-module[data-id=Gallery] .DNA-module__tabs__list::-webkit-scrollbar {
    height: 2px;
  }
}
.DNA-module[data-id=Gallery] .DNA-module__container[data-active="0"] {
  display: none !important;
}
.DNA-module[data-id=Gallery] .DNA-module__list {
  display: flex;
  flex-wrap: wrap;
}
.DNA-module[data-id=Gallery] .DNA-module__item {
  position: relative;
}
.DNA-module[data-id=Gallery] .DNA-module__item img {
  height: 100%;
  object-fit: cover;
  width: 100%;
  left: 0;
  position: absolute;
  top: 0;
}
.DNA-module[data-id=Gallery] .DNA-module__item__wrap {
  position: relative;
}
.DNA-module[data-id=Gallery] .DNA-module__item__wrap > * {
  position: relative;
  cursor: pointer;
  display: block;
}
.DNA-module[data-id=Gallery] .DNA-module__item__flag {
  font-weight: 500;
  position: absolute;
  top: 1.5em;
  right: 1.5em;
  background: #1C1C1C;
  width: auto !important;
  height: auto !important;
  max-width: 100%;
  padding: 0.5em 1.5em;
  border-radius: 3px;
  color: #FFFFFF;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1em;
  pointer-events: none;
}
.DNA-module[data-id=Gallery] .DNA-module__item__flag > * {
  font-size: 1.8em;
}
@media (max-width: 1024px) {
  .DNA-module[data-id=Gallery] .DNA-module__item__flag > * {
    font-size: 1.5em;
  }
}
@media (max-width: 767px) {
  .DNA-module[data-id=Gallery] .DNA-module__item__flag > * {
    font-size: 1.2em;
  }
}
.DNA-module[data-id=Gallery] .DNA-module__item__flag i {
  font-size: 2em;
}
@media (max-width: 1024px) {
  .DNA-module[data-id=Gallery] .DNA-module__item__flag {
    top: 1em;
    right: 1em;
    padding: 0.5em 1em;
    gap: 0.8em;
  }
  .DNA-module[data-id=Gallery] .DNA-module__item__flag i {
    font-size: 1.8em;
  }
}
@media (max-width: 767px) {
  .DNA-module[data-id=Gallery] .DNA-module__item__flag {
    top: 0.5em;
    right: 0.5em;
    padding: 0.5em;
    gap: 0.5em;
  }
  .DNA-module[data-id=Gallery] .DNA-module__item__flag i {
    font-size: 1.6em;
  }
}
.DNA-module[data-id=Gallery] .DNA-module__item[data-type=video_local] video {
  height: 100%;
  object-fit: cover;
  width: 100%;
  left: 0;
  position: absolute;
  top: 0;
}
.DNA-module[data-id=Gallery][data-variant=V1] .DNA-module__list {
  margin-left: -1em;
  margin-right: -1em;
}
.DNA-module[data-id=Gallery][data-variant=V1] .DNA-module__item {
  position: relative;
  width: 33.3333333333%;
  padding: 1em;
}
.DNA-module[data-id=Gallery][data-variant=V1] .DNA-module__item img {
  height: 100%;
  object-fit: cover;
  width: 100%;
  left: 0;
  position: absolute;
  top: 0;
}
.DNA-module[data-id=Gallery][data-variant=V1] .DNA-module__item__wrap > * {
  height: 30em;
}
@media (min-width: 1025px) {
  .DNA-module[data-id=Gallery][data-variant=V1] .DNA-module__item:nth-child(7n), .DNA-module[data-id=Gallery][data-variant=V1] .DNA-module__item:nth-child(7n-3) {
    width: 16.6666666667%;
  }
}
.DNA-module[data-id=Gallery][data-variant=V2] .DNA-module__list {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  grid-auto-rows: 23.5em 23.5em 27.5em 27.5em 23.5em 23.5em;
  gap: 1.5em;
}
.DNA-module[data-id=Gallery][data-variant=V2] .DNA-module__item__wrap {
  width: 100%;
  height: 100%;
}
.DNA-module[data-id=Gallery][data-variant=V2] .DNA-module__item__wrap > * {
  width: 100%;
  height: 100%;
}
@media (min-width: 1025px) {
  .DNA-module[data-id=Gallery][data-variant=V2] .DNA-module__item:nth-child(16n-15), .DNA-module[data-id=Gallery][data-variant=V2] .DNA-module__item:nth-child(16n-11), .DNA-module[data-id=Gallery][data-variant=V2] .DNA-module__item:nth-child(16n-6), .DNA-module[data-id=Gallery][data-variant=V2] .DNA-module__item:nth-child(16n-1) {
    grid-column: span 2;
    grid-row: span 2;
  }
  .DNA-module[data-id=Gallery][data-variant=V2] .DNA-module__item:nth-child(16n-14), .DNA-module[data-id=Gallery][data-variant=V2] .DNA-module__item:nth-child(16n-12), .DNA-module[data-id=Gallery][data-variant=V2] .DNA-module__item:nth-child(16n-3), .DNA-module[data-id=Gallery][data-variant=V2] .DNA-module__item:nth-child(16n-2) {
    grid-row: span 2;
  }
  .DNA-module[data-id=Gallery][data-variant=V2] .DNA-module__item:nth-child(16n-13), .DNA-module[data-id=Gallery][data-variant=V2] .DNA-module__item:nth-child(16n-9), .DNA-module[data-id=Gallery][data-variant=V2] .DNA-module__item:nth-child(16n-5), .DNA-module[data-id=Gallery][data-variant=V2] .DNA-module__item:nth-child(16n) {
    grid-column: span 2;
  }
}
@media (max-width: 1024px) {
  .DNA-module[data-id=Gallery] .DNA-module__tabs {
    top: 6em;
    margin-bottom: 5em;
  }
  .DNA-module[data-id=Gallery][data-variant=V1] .DNA-module__list {
    margin-left: -0.5em;
    margin-right: -0.5em;
  }
  .DNA-module[data-id=Gallery][data-variant=V1] .DNA-module__item {
    width: 50%;
    padding: 0.5em;
  }
  .DNA-module[data-id=Gallery][data-variant=V1] .DNA-module__item__wrap > *:first-child {
    height: 25em;
  }
  .DNA-module[data-id=Gallery][data-variant=V1] .DNA-module__item:nth-child(8n), .DNA-module[data-id=Gallery][data-variant=V1] .DNA-module__item:nth-child(8n-5) {
    width: 20%;
  }
  .DNA-module[data-id=Gallery][data-variant=V1] .DNA-module__item:nth-child(8n-1), .DNA-module[data-id=Gallery][data-variant=V1] .DNA-module__item:nth-child(8n-2), .DNA-module[data-id=Gallery][data-variant=V1] .DNA-module__item:nth-child(8n-3), .DNA-module[data-id=Gallery][data-variant=V1] .DNA-module__item:nth-child(8n-4) {
    width: 40%;
  }
  .DNA-module[data-id=Gallery][data-variant=V2] .DNA-module__list {
    grid-template-columns: repeat(5, 1fr);
    grid-auto-rows: 13.5em 13.5em 17.5em 17.5em 13.5em 13.5em;
    gap: 1em;
  }
}
@media (max-width: 1024px) and (min-width: 768px) {
  .DNA-module[data-id=Gallery][data-variant=V2] .DNA-module__item:nth-child(13n-12), .DNA-module[data-id=Gallery][data-variant=V2] .DNA-module__item:nth-child(13n-9), .DNA-module[data-id=Gallery][data-variant=V2] .DNA-module__item:nth-child(13n-6), .DNA-module[data-id=Gallery][data-variant=V2] .DNA-module__item:nth-child(13n-2) {
    grid-column: span 2;
    grid-row: span 2;
  }
  .DNA-module[data-id=Gallery][data-variant=V2] .DNA-module__item:nth-child(13n-11), .DNA-module[data-id=Gallery][data-variant=V2] .DNA-module__item:nth-child(13n-3) {
    grid-row: span 2;
  }
  .DNA-module[data-id=Gallery][data-variant=V2] .DNA-module__item:nth-child(13n-10), .DNA-module[data-id=Gallery][data-variant=V2] .DNA-module__item:nth-child(13n-7), .DNA-module[data-id=Gallery][data-variant=V2] .DNA-module__item:nth-child(13n-5) {
    grid-column: span 2;
  }
}
@media (max-width: 767px) {
  .DNA-module[data-id=Gallery] .DNA-module__tabs {
    margin-bottom: 3em;
  }
  .DNA-module[data-id=Gallery][data-variant=V1] .DNA-module__item__wrap > *:first-child {
    height: 10em;
  }
  .DNA-module[data-id=Gallery][data-variant=V2] .DNA-module__list {
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: 8em 8em 10em 10em 8em 10em;
  }
  .DNA-module[data-id=Gallery][data-variant=V2] .DNA-module__item:nth-child(8n-7), .DNA-module[data-id=Gallery][data-variant=V2] .DNA-module__item:nth-child(8n-2) {
    grid-column: span 2;
    grid-row: span 2;
  }
  .DNA-module[data-id=Gallery][data-variant=V2] .DNA-module__item:nth-child(8n-6), .DNA-module[data-id=Gallery][data-variant=V2] .DNA-module__item:nth-child(8n-1) {
    grid-row: span 2;
  }
  .DNA-module[data-id=Gallery][data-variant=V2] .DNA-module__item:nth-child(8n), .DNA-module[data-id=Gallery][data-variant=V2] .DNA-module__item:nth-child(8n-4) {
    grid-column: span 2;
  }
}
