/* Durchdacht approved WhatsApp popup. Prefix all rules to protect host pages. */
.dd-wa {
  --dd-wa-ink: #303030;
  --dd-wa-paper: #f8f7f4;
  --dd-wa-copper: #ce996f;
  --dd-wa-muted: #686b70;
  --dd-wa-font: "Plus Jakarta Sans", Arial, sans-serif;
  box-sizing: border-box;
  position: fixed;
  inset: 0;
  margin: auto;
  width: min(1376px, calc(100vw - 64px));
  max-width: none;
  max-height: calc(100vh - 48px);
  max-height: calc(100dvh - 48px);
  padding: 0;
  border: 0;
  border-radius: 18px;
  overflow: hidden;
  background: var(--dd-wa-paper);
  color: var(--dd-wa-ink);
  font-family: var(--dd-wa-font);
  text-align: left;
  box-shadow: 0 24px 90px #0004;
  overscroll-behavior: contain;
  -webkit-font-smoothing: antialiased;
}

.dd-wa:not([open]) {
  display: none !important
}

.dd-wa::backdrop {
  background: rgb(29 29 28 / 58%);
  backdrop-filter: blur(3px)
}

.dd-wa *,
.dd-wa *::before,
.dd-wa *::after {
  box-sizing: border-box
}

.dd-wa button,
.dd-wa a {
  font: inherit;
  letter-spacing: normal;
  text-transform: none;
  cursor: pointer;
  -webkit-tap-highlight-color: transparent
}

.dd-wa button {
  appearance: none;
  min-width: 0;
  box-shadow: none
}

.dd-wa__layout {
  display: grid;
  grid-template-columns: 48% 52%;
  min-height: min(700px, calc(100vh - 48px));
  max-height: calc(100vh - 48px);
  max-height: calc(100dvh - 48px);
  overscroll-behavior: contain
}

.dd-wa__visual {
  position: relative;
  min-width: 0;
  background: #e6e1d8
}

.dd-wa__photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100% !important;
  object-fit: cover;
  object-position: 50% 50%;
  display: block;
  max-width: none;
  margin: 0;
  border: 0
}

.dd-wa__content {
  position: relative;
  padding: 46px 48px 40px 60px;
  display: flex;
  flex-direction: column;
  min-width: 0
}

.dd-wa__logo {
  width: 218px;
  height: auto;
  max-width: 58%;
  object-fit: contain;
  align-self: flex-start;
  display: block;
  margin: 0;
  mix-blend-mode: multiply;
  border: 0
}

.dd-wa__close {
  position: absolute;
  z-index: 2;
  right: 30px;
  top: 28px;
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border: 1px solid #e4e1db;
  border-radius: 50%;
  background: #fff;
  color: var(--dd-wa-ink);
  padding: 12px
}

.dd-wa__close svg {
  display: block;
  width: 23px;
  height: 23px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.5;
  stroke-linecap: round
}

.dd-wa__copy {
  margin: auto 0;
  padding-top: 66px
}

.dd-wa__eyebrow {
  font-size: 14px;
  line-height: 1.5;
  font-weight: 600;
  letter-spacing: .105em;
  color: #95613e;
  margin: 0 0 22px
}

.dd-wa__title {
  font-family: var(--dd-wa-font);
  font-size: clamp(30px, 3.25vw, 47px);
  line-height: 1.17;
  font-weight: 650;
  letter-spacing: -.043em;
  margin: 0 0 32px;
  color: var(--dd-wa-ink);
  text-transform: none
}

.dd-wa__title span {
  white-space: normal;
  overflow-wrap: anywhere
}

.dd-wa__description {
  font: 400 24px/1.5 var(--dd-wa-font);
  letter-spacing: -.025em;
  margin: 0 0 24px;
  color: var(--dd-wa-ink)
}

.dd-wa__note {
  font: 400 19px/1.5 var(--dd-wa-font);
  letter-spacing: -.01em;
  color: var(--dd-wa-muted);
  margin: 0 0 34px
}

.dd-wa__cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  width: 100%;
  min-height: 70px;
  background: var(--dd-wa-copper);
  color: #20201f !important;
  border: 1px solid transparent;
  border-radius: 25px;
  padding: 14px 18px;
  text-decoration: none !important;
  font-size: 20px !important;
  font-weight: 600 !important;
  line-height: 1.3;
  transition: background .16s ease
}

.dd-wa__cta:hover {
  background: #c48c60
}

.dd-wa__cta svg {
  flex: 0 0 34px;
  width: 34px;
  height: 34px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round
}

.dd-wa__later {
  display: block;
  width: 100%;
  min-height: 48px;
  border: 0;
  border-radius: 8px;
  background: transparent !important;
  color: var(--dd-wa-muted);
  font-size: 17px !important;
  line-height: 1.4;
  padding: 10px;
  margin: 14px 0 0;
  text-align: center
}

.dd-wa__later:hover {
  color: var(--dd-wa-ink);
  text-decoration: underline
}

.dd-wa :is(a, button):focus-visible {
  outline: 3px solid #62452e;
  outline-offset: 4px
}

@media (max-width:1199px) and (min-width:761px) {
  .dd-wa {
    width: calc(100vw - 40px)
  }

  .dd-wa__layout {
    grid-template-columns: 43% 57%;
    min-height: min(610px, calc(100vh - 48px))
  }

  .dd-wa__content {
    padding: 34px 32px
  }

  .dd-wa__copy {
    padding-top: 48px
  }

  .dd-wa__logo {
    width: 185px
  }

  .dd-wa__title {
    font-size: clamp(27px, 3.7vw, 41px);
    margin-bottom: 24px
  }

  .dd-wa__description {
    font-size: 20px
  }

  .dd-wa__note {
    font-size: 17px;
    margin-bottom: 25px
  }

  .dd-wa__cta {
    font-size: 17px !important;
    min-height: 62px;
    gap: 10px
  }

  .dd-wa__close {
    width: 42px;
    height: 42px;
    top: 23px;
    right: 22px
  }
}

@media (max-width:760px) {
  .dd-wa {
    width: calc(100vw - 24px);
    max-height: calc(100vh - 24px);
    max-height: calc(100dvh - 24px);
    border-radius: 16px
  }

  .dd-wa__layout {
    display: flex;
    flex-direction: column;
    min-height: 0;
    max-height: calc(100vh - 24px);
    max-height: calc(100dvh - 24px)
  }

  .dd-wa__visual {
    aspect-ratio: 40 / 20;
    flex: 0 0 auto
  }

  .dd-wa__photo {
    object-position: 50% 26%
  }

  .dd-wa__content {
    position: static;
    padding: 22px 24px 20px
  }

  .dd-wa__logo {
    width: 154px;
    max-width: 65%
  }

  .dd-wa__close {
    position: absolute;
    top: 12px;
    right: 12px;
    width: 44px;
    height: 44px;
    background: #fffffff2;
    padding: 10px;
  }

  .dd-wa__copy {
    padding-top: 22px
  }

  .dd-wa__eyebrow {
    font-size: 10px;
    margin-bottom: 12px;
    letter-spacing: .09em
  }

  .dd-wa__title {
    font-size: clamp(24px, 6.7vw, 38px);
    line-height: 1.17;
    letter-spacing: -.043em;
    margin-bottom: 18px
  }

  .dd-wa__description {
    font-size: 16px;
    line-height: 1.5;
    margin-bottom: 14px
  }

  .dd-wa__note {
    font-size: 14px;
    line-height: 1.5;
    margin-bottom: 22px
  }

  .dd-wa__cta {
    font-size: 15px !important;
    min-height: 56px;
    padding: 13px 10px;
    gap: 10px;
    border-radius: 20px
  }

  .dd-wa__cta svg {
    width: 27px;
    height: 27px;
    flex-basis: 27px
  }

  .dd-wa__later {
    font-size: 14px !important;
    min-height: 44px;
    margin-top: 7px
  }
}

@media(max-width:460px) {
  .dd-wa__visual {
    aspect-ratio: 24 / 20;
    flex: 0 0 auto
  }

  .dd-wa__content {
    padding: 20px 18px 16px
  }

  .dd-wa__cta {
    font-size: 13px !important;
    gap: 8px
  }

  .dd-wa__title {
    font-size: 24px
  }
}

@media(max-height:650px) and (max-width:760px) {
  .dd-wa__visual {
    height: 140px
  }

  .dd-wa__copy {
    padding-top: 16px
  }
}

@media(prefers-reduced-motion:reduce) {
  .dd-wa * {
    transition: none !important;
    scroll-behavior: auto !important
  }
}