/*  ==========================================================================
    DYNFORM
    ========================================================================== */
/*  ==========================================================================
    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=dynform] {
  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=dynform] .DNA-module__frame {
  display: flex;
  flex-direction: column;
  margin: 0 auto;
  max-width: 76.8em;
}
.DNA-module[data-id=dynform] .DNA-module__dynform {
  order: 2;
  width: 100%;
}
.DNA-module[data-id=dynform] .DNA-module__dynform#bn-dynform--catalogue .bn-form__column--catalogues {
  display: none !important;
}
.DNA-module[data-id=dynform] .DNA-module__dynform#bn-dynform--catalogue .bn-form__label.JS-remove-star:after {
  display: none !important;
}
.DNA-module[data-id=dynform] .DNA-module__dynform#bn-dynform--catalogue #bn-dynform--catalogue_comment {
  min-height: 3.5em !important;
  resize: vertical !important;
}
.DNA-module[data-id=dynform] .DNA-module__dynform#bn-dynform--conference .bn-form__block--custom-additionals {
  display: none !important;
}
.DNA-module[data-id=dynform] .DNA-module__dynform#bn-dynform--conference .bn-form__column--starttime,
.DNA-module[data-id=dynform] .DNA-module__dynform#bn-dynform--conference .bn-form__column--endtime {
  display: none !important;
}
.DNA-module[data-id=dynform] .DNA-module__dynform#bn-dynform--job .bn-form__column--job_selection {
  width: 100% !important;
}
.DNA-module[data-id=dynform] .DNA-module__dynform#bn-dynform--job .bn-form__column--why_us {
  width: 100% !important;
}
.DNA-module[data-id=dynform] .DNA-module__dynform#bn-dynform--job .bn-form__column--comment {
  display: none !important;
}
.DNA-module[data-id=dynform] .DNA-module__dynform#bn-dynform--job .bn-form__column--job_location .bn-form__group.has-error .error, .DNA-module[data-id=dynform] .DNA-module__dynform#bn-dynform--job .bn-form__column--job_birthday .bn-form__group.has-error .error {
  opacity: 0 !important;
  pointer-events: none !important;
}
.DNA-module[data-id=dynform] .DNA-module__dynform#bn-dynform--job .bn-form__column--job_location .bn-form__group.has-error input, .DNA-module[data-id=dynform] .DNA-module__dynform#bn-dynform--job .bn-form__column--job_birthday .bn-form__group.has-error input {
  border-bottom-color: #efefef !important;
}
.DNA-module[data-id=dynform] .DNA-module__dynform#bn-dynform--job .bn-form__column--job_location .bn-form__group.has-error .bn-form__label, .DNA-module[data-id=dynform] .DNA-module__dynform#bn-dynform--job .bn-form__column--job_birthday .bn-form__group.has-error .bn-form__label {
  color: #9e9e9e !important;
}
.DNA-module[data-id=dynform] .DNA-module__dynform#bn-dynform--job .bn-form__column--job_location .bn-form__group.has-error .bn-form__groupIcon, .DNA-module[data-id=dynform] .DNA-module__dynform#bn-dynform--job .bn-form__column--job_birthday .bn-form__group.has-error .bn-form__groupIcon {
  color: #1C2122 !important;
}
.DNA-module[data-id=dynform] .DNA-module__dynform#bn-dynform--job .bn-form__label.JS-remove-star:after {
  display: none !important;
}
.DNA-module[data-id=dynform] .DNA-module__dynform#bn-dynform--job .bn-form__checkbox--newsletter {
  display: none;
}
.DNA-module[data-id=dynform] .DNA-module__dynform#bn-dynform--request .bn-form__column--addAdditionals {
  width: 100% !important;
}
.DNA-module[data-id=dynform] .DNA-module__dynform#bn-dynform--reservation #bn-dynform--reservation_reservation_comment {
  min-height: 3.5em !important;
  resize: vertical !important;
}
.DNA-module[data-id=dynform] .DNA-module__dynform.bn-dynformInit + .DNA-module__checkboxes {
  display: flex;
}
.DNA-module[data-id=dynform] .DNA-module__checkboxes {
  box-shadow: 0 2px 6px 2px rgba(117, 117, 117, 0.1);
  display: none;
  flex-wrap: wrap;
  order: 1;
  padding: 2em 3em;
  width: 100%;
}
.DNA-module[data-id=dynform] .DNA-module__checkboxes__item {
  align-items: center;
  display: flex;
  padding: 2em 0;
  width: 33.33%;
}
.DNA-module[data-id=dynform] .DNA-module__checkboxes__input {
  cursor: pointer;
}
.DNA-module[data-id=dynform] .DNA-module__checkboxes__label {
  color: #1C2122;
  flex: 1;
  font-size: 1.4em;
  padding: 0 2em;
}
.DNA-module[data-id=dynform]:not([data-dynform-type=catalogue]):not([data-dynform-type=contact_mandatory_comment]) .DNA-module__frame--hide-comment-field .bn-form__column--comment {
  display: none !important;
}
@media (max-width: 1024px) {
  .DNA-module[data-id=dynform] .DNA-module__dynform#bn-dynform--job .dropzone .defaultMessageContainer {
    padding: 1.5rem 2.5rem;
  }
  .DNA-module[data-id=dynform] .DNA-module__dynform#bn-dynform--job .dropzone .defaultMessageContainer span {
    padding: 0.6rem;
  }
  .DNA-module[data-id=dynform] .DNA-module__dynform#bn-dynform--job .dropzone .defaultMessageContainer .defaultMessage {
    padding-left: 2rem;
  }
  .DNA-module[data-id=dynform] .DNA-module__dynform#bn-dynform--job .dropzone .defaultMessageContainer .defaultMessage div {
    font-size: 1rem;
  }
  .DNA-module[data-id=dynform] .DNA-module__checkboxes {
    padding: 2em 2.5em;
  }
  .DNA-module[data-id=dynform] .DNA-module__checkboxes__item {
    padding: 1em;
    width: 50%;
  }
  .DNA-module[data-id=dynform] .DNA-module__checkboxes__label {
    padding: 0 1em;
  }
}
@media (max-width: 767px) {
  .DNA-module[data-id=dynform] .DNA-module__dynform#bn-dynform--job .dropzone .defaultMessageContainer {
    padding: 1rem 2rem;
  }
  .DNA-module[data-id=dynform] .DNA-module__dynform#bn-dynform--job .dropzone .defaultMessageContainer span {
    padding: 0.5rem;
  }
  .DNA-module[data-id=dynform] .DNA-module__dynform#bn-dynform--job .dropzone .defaultMessageContainer .defaultMessage {
    padding-left: 1rem;
  }
  .DNA-module[data-id=dynform] .DNA-module__dynform#bn-dynform--job .dropzone .defaultMessageContainer .defaultMessage div {
    font-size: 0.8rem;
  }
  .DNA-module[data-id=dynform] .DNA-module__checkboxes {
    padding: 2em;
  }
  .DNA-module[data-id=dynform] .DNA-module__checkboxes__item {
    margin-top: 1em;
    padding: 0;
    width: 100%;
  }
  .DNA-module[data-id=dynform] .DNA-module__checkboxes__item:first-child {
    margin-top: 0;
  }
  .DNA-module[data-id=dynform] .DNA-module__checkboxes__label {
    padding-right: 0;
  }
}

#bn-dynform--request .ractive--offer-lastminute-Template .bn-subtitle.bn-price {
  display: none !important;
}
