/*! tailwindcss v2.1.1 | MIT License | https://tailwindcss.com */

/*! modern-normalize v1.0.0 | MIT License | https://github.com/sindresorhus/modern-normalize */

/*
Document
========
*/

/**
Use a better box model (opinionated).
*/

*,
*::before,
*::after {
  box-sizing: border-box;
}

/**
Use a more readable tab size (opinionated).
*/

:root {
  -moz-tab-size: 4;
  -o-tab-size: 4;
     tab-size: 4;
}

/**
1. Correct the line height in all browsers.
2. Prevent adjustments of font size after orientation changes in iOS.
*/

html {
  line-height: 1.15; /* 1 */
  -webkit-text-size-adjust: 100%; /* 2 */
}

/*
Sections
========
*/

/**
Remove the margin in all browsers.
*/

body {
  margin: 0;
}

/**
Improve consistency of default fonts in all browsers. (https://github.com/sindresorhus/modern-normalize/issues/3)
*/

body {
  font-family:
		system-ui,
		-apple-system, /* Firefox supports this but not yet `system-ui` */
		'Segoe UI',
		Roboto,
		Helvetica,
		Arial,
		sans-serif,
		'Apple Color Emoji',
		'Segoe UI Emoji';
}

/*
Grouping content
================
*/

/**
1. Add the correct height in Firefox.
2. Correct the inheritance of border color in Firefox. (https://bugzilla.mozilla.org/show_bug.cgi?id=190655)
*/

hr {
  height: 0; /* 1 */
  color: inherit; /* 2 */
}

/*
Text-level semantics
====================
*/

/**
Add the correct text decoration in Chrome, Edge, and Safari.
*/

abbr[title] {
  -webkit-text-decoration: underline dotted;
          text-decoration: underline dotted;
}

/**
Add the correct font weight in Edge and Safari.
*/

b,
strong {
  font-weight: bolder;
}

/**
1. Improve consistency of default fonts in all browsers. (https://github.com/sindresorhus/modern-normalize/issues/3)
2. Correct the odd 'em' font sizing in all browsers.
*/

code,
kbd,
samp,
pre {
  font-family:
		ui-monospace,
		SFMono-Regular,
		Consolas,
		'Liberation Mono',
		Menlo,
		monospace; /* 1 */
  font-size: 1em; /* 2 */
}

/**
Add the correct font size in all browsers.
*/

small {
  font-size: 80%;
}

/**
Prevent 'sub' and 'sup' elements from affecting the line height in all browsers.
*/

sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

/*
Tabular data
============
*/

/**
1. Remove text indentation from table contents in Chrome and Safari. (https://bugs.chromium.org/p/chromium/issues/detail?id=999088, https://bugs.webkit.org/show_bug.cgi?id=201297)
2. Correct table border color inheritance in all Chrome and Safari. (https://bugs.chromium.org/p/chromium/issues/detail?id=935729, https://bugs.webkit.org/show_bug.cgi?id=195016)
*/

table {
  text-indent: 0; /* 1 */
  border-color: inherit; /* 2 */
}

/*
Forms
=====
*/

/**
1. Change the font styles in all browsers.
2. Remove the margin in Firefox and Safari.
*/

button,
input,
optgroup,
select,
textarea {
  font-family: inherit; /* 1 */
  font-size: 100%; /* 1 */
  line-height: 1.15; /* 1 */
  margin: 0; /* 2 */
}

/**
Remove the inheritance of text transform in Edge and Firefox.
1. Remove the inheritance of text transform in Firefox.
*/

button,
select { /* 1 */
  text-transform: none;
}

/**
Correct the inability to style clickable types in iOS and Safari.
*/

button,
[type='button'],
[type='submit'] {
  -webkit-appearance: button;
}

/**
Remove the inner border and padding in Firefox.
*/

/**
Restore the focus styles unset by the previous rule.
*/

/**
Remove the additional ':invalid' styles in Firefox.
See: https://github.com/mozilla/gecko-dev/blob/2f9eacd9d3d995c937b4251a5557d95d494c9be1/layout/style/res/forms.css#L728-L737
*/

/**
Remove the padding so developers are not caught out when they zero out 'fieldset' elements in all browsers.
*/

legend {
  padding: 0;
}

/**
Add the correct vertical alignment in Chrome and Firefox.
*/

progress {
  vertical-align: baseline;
}

/**
Correct the cursor style of increment and decrement buttons in Safari.
*/

/**
1. Correct the odd appearance in Chrome and Safari.
2. Correct the outline style in Safari.
*/

[type='search'] {
  -webkit-appearance: textfield; /* 1 */
  outline-offset: -2px; /* 2 */
}

/**
Remove the inner padding in Chrome and Safari on macOS.
*/

/**
1. Correct the inability to style clickable types in iOS and Safari.
2. Change font properties to 'inherit' in Safari.
*/

/*
Interactive
===========
*/

/*
Add the correct display in Chrome and Safari.
*/

summary {
  display: list-item;
}

/**
 * Manually forked from SUIT CSS Base: https://github.com/suitcss/base
 * A thin layer on top of normalize.css that provides a starting point more
 * suitable for web applications.
 */

/**
 * Removes the default spacing and border for appropriate elements.
 */

blockquote,
dl,
dd,
h1,
h2,
h3,
h4,
h5,
h6,
hr,
figure,
p,
pre {
  margin: 0;
}

button {
  background-color: transparent;
  background-image: none;
}

/**
 * Work around a Firefox/IE bug where the transparent `button` background
 * results in a loss of the default `button` focus styles.
 */

button:focus {
  outline: 1px dotted;
  outline: 5px auto -webkit-focus-ring-color;
}

fieldset {
  margin: 0;
  padding: 0;
}

ol,
ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

/**
 * Tailwind custom reset styles
 */

/**
 * 1. Use the user's configured `sans` font-family (with Tailwind's default
 *    sans-serif font stack as a fallback) as a sane default.
 * 2. Use Tailwind's default "normal" line-height so the user isn't forced
 *    to override it to ensure consistency even when using the default theme.
 */

html {
  font-family: Interstate, sans-serif; /* 1 */
  line-height: 1.5; /* 2 */
}

/**
 * Inherit font-family and line-height from `html` so users can set them as
 * a class directly on the `html` element.
 */

body {
  font-family: inherit;
  line-height: inherit;
}

/**
 * 1. Prevent padding and border from affecting element width.
 *
 *    We used to set this in the html element and inherit from
 *    the parent element for everything else. This caused issues
 *    in shadow-dom-enhanced elements like <details> where the content
 *    is wrapped by a div with box-sizing set to `content-box`.
 *
 *    https://github.com/mozdevs/cssremedy/issues/4
 *
 *
 * 2. Allow adding a border to an element by just adding a border-width.
 *
 *    By default, the way the browser specifies that an element should have no
 *    border is by setting it's border-style to `none` in the user-agent
 *    stylesheet.
 *
 *    In order to easily add borders to elements by just setting the `border-width`
 *    property, we change the default border-style for all elements to `solid`, and
 *    use border-width to hide them instead. This way our `border` utilities only
 *    need to set the `border-width` property instead of the entire `border`
 *    shorthand, making our border utilities much more straightforward to compose.
 *
 *    https://github.com/tailwindcss/tailwindcss/pull/116
 */

*,
::before,
::after {
  box-sizing: border-box; /* 1 */
  border-width: 0; /* 2 */
  border-style: solid; /* 2 */
  border-color: currentColor; /* 2 */
}

/*
 * Ensure horizontal rules are visible by default
 */

hr {
  border-top-width: 1px;
}

/**
 * Undo the `border-style: none` reset that Normalize applies to images so that
 * our `border-{width}` utilities have the expected effect.
 *
 * The Normalize reset is unnecessary for us since we default the border-width
 * to 0 on all elements.
 *
 * https://github.com/tailwindcss/tailwindcss/issues/362
 */

img {
  border-style: solid;
}

textarea {
  resize: vertical;
}

input::-moz-placeholder, textarea::-moz-placeholder {
  opacity: 1;
  color: #a1a1aa;
}

input:-ms-input-placeholder, textarea:-ms-input-placeholder {
  opacity: 1;
  color: #a1a1aa;
}

input::placeholder,
textarea::placeholder {
  opacity: 1;
  color: #a1a1aa;
}

button {
  cursor: pointer;
}

table {
  border-collapse: collapse;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: inherit;
  font-weight: inherit;
}

/**
 * Reset links to optimize for opt-in styling instead of
 * opt-out.
 */

a {
  color: inherit;
  text-decoration: inherit;
}

/**
 * Reset form element properties that are easy to forget to
 * style explicitly so you don't inadvertently introduce
 * styles that deviate from your design system. These styles
 * supplement a partial reset that is already applied by
 * normalize.css.
 */

button,
input,
optgroup,
select,
textarea {
  padding: 0;
  line-height: inherit;
  color: inherit;
}

/**
 * Use the configured 'mono' font family for elements that
 * are expected to be rendered with a monospace font, falling
 * back to the system monospace stack if there is no configured
 * 'mono' font family.
 */

pre,
code,
kbd,
samp {
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
}

/**
 * Make replaced elements `display: block` by default as that's
 * the behavior you want almost all of the time. Inspired by
 * CSS Remedy, with `svg` added as well.
 *
 * https://github.com/mozdevs/cssremedy/issues/14
 */

img,
svg,
video,
canvas,
audio,
iframe,
embed,
object {
  display: block;
  vertical-align: middle;
}

/**
 * Constrain images and videos to the parent width and preserve
 * their intrinsic aspect ratio.
 *
 * https://github.com/mozdevs/cssremedy/issues/14
 */

img,
video {
  max-width: 100%;
  height: auto;
}

.container {
  width: 100%;
}

@media (min-width: 640px) {
  .container {
    max-width: 640px;
  }
}

@media (min-width: 768px) {
  .container {
    max-width: 768px;
  }
}

@media (min-width: 1024px) {
  .container {
    max-width: 1024px;
  }
}

@media (min-width: 1280px) {
  .container {
    max-width: 1280px;
  }
}

@media (min-width: 1536px) {
  .container {
    max-width: 1536px;
  }
}

section {
  padding-bottom: 2.5rem;
  position: relative
}

.container {
  max-width: 1920px;
  margin-left: auto;
  margin-right: auto;
}

.tp-row.damo-columncount-2>div.empty-col, .tp-row.damo-columncount-3>div.empty-col, .tp-row.damo-columncount-4>div.empty-col {
  padding-bottom: 0px;
}

@media (min-width: 980px) {
  section {
    padding-bottom: 5rem
  }
}

@media (max-width: 767px) {
  .mobile-reverse {
    flex-direction: column-reverse
  }

  .tp-row.damo-columncount-2>div, .tp-row.damo-columncount-3>div, .tp-row.damo-columncount-4>div {
    padding-bottom: 2.5rem;
  }
}

/* GRID */

.damo-nested-grid {
  width: calc(100% + 1.39% + 1.39%);
  margin-left: -1.39%;
}

/* HERO */

.damo-hero {
  position: relative;
  top: 0%;
}

.damo-hero-img {
  margin-bottom: calc(((100%/1.8285)*0.1)*-1);
}

@media (min-width: 668px) {
  .tp-col-xl-8 .block-type-headline .text-left,
  .tp-col-xl-8 .block-type-text .text-left,
  .tp-col-xl-8 .block-type-list .text-left,
  .tp-col-xl-8 .block-type-headline .text-center,
  .tp-col-xl-8 .block-type-text .text-center,
  .tp-col-xl-8 .block-type-list .text-center {
    max-width: 75%;
    max-width: 75%;
    max-width: 75%;
  }

  .tp-col-xl-8 .block-type-headline .damo-hero .damo-box,
  .tp-col-xl-8 .block-type-text .damo-hero .damo-box,
  .tp-col-xl-8 .block-type-list .damo-hero .damo-box {
    padding-left: 12.5%;
  }

  .tp-col-xl-8 .block-type-headline .text-center,
  .tp-col-xl-8 .block-type-text .text-center,
  .tp-col-xl-8 .block-type-list .text-center {
    padding-left: 12.5%;
    padding-left: 12.5%;
  }
}

@media (min-width: 980px) {
  .tp-col-xl-12 .block-type-headline .damo-hero .damo-box,
  .tp-col-xl-12 .block-type-text .damo-hero .damo-box,
  .tp-col-xl-12 .block-type-list .damo-hero .damo-box {
    padding-left: 20%;
    padding-right: 20%;
  }

  .tp-col-xl-12 .block-type-headline .text-center,
  .tp-col-xl-12 .block-type-text .text-center,
  .tp-col-xl-12 .block-type-list .text-center {
    padding-left: 20%;
    padding-right: 20%;
    padding-left: 20%;
    padding-right: 20%;
  }
}

.damo-col-teaser .teaser-wrapper.damo-hero .damo-box .damo-flag {
  margin-left: auto;
  margin-right: auto;
  left: 50%;
  --tw-translate-x: 0;
  --tw-translate-y: 0;
  --tw-rotate: 0;
  --tw-skew-x: 0;
  --tw-skew-y: 0;
  --tw-scale-x: 1;
  --tw-scale-y: 1;
  transform: translateX(var(--tw-translate-x)) translateY(var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
  --tw-translate-x: -50%;
}

.damo-hero .damo-box {
  text-align: center;
}

@media (max-width: 668px) {
  .damo-row-hero {
    padding: 0;
  }

  .damo-row-hero .damo-nested-grid {
    width: 100%;
    margin-left: 0;
  }

  .damo-row-hero .tp-col-12 {
    padding: 0;
  }

  .damo-row-hero .damo-box {
    padding-right: 1.335%;
    padding-left: 1.335%;
  }
}

@media (min-width: 668px) {
  .damo-hero {
    padding-left: 0;
    padding-right: 0;
  }

  .damo-hero .damo-box {
    margin-left: 8.333333333%;
    margin-right: 8.333333333%;
  }
}

@media (min-width: 980px) {
  .damo-hero-img {
    margin-bottom: calc(((100%/1.8285)*0.2)*-1);
  }
}

/* BOX */

.damo-box-inner {
  padding-left: 2rem;
  padding-right: 2rem;
  padding-top: 2.5rem;
  padding-bottom: 2.5rem;
}

.damo-box-heading {
  padding-top: 0.625rem;
}

.damo-box-inner .damo-box-heading:first-child {
  padding-top: 0px;
}

.damo-box-text {
  padding-bottom: 1.25rem;
  padding-top: 0.625rem;
}

.damo-box-text ul {
  list-style-type: disc;
  margin-left: 1.25rem;
  margin-right: 1.25rem;
}

.damo-box-text ol {
  list-style-type: decimal;
  margin-left: 1.25rem;
  margin-right: 1.25rem;
}

.damo-box-text>p, .damo-box-text>ul, .damo-box-text>ol {
  padding-top: 0.625rem;
}

.steps-text ol, .ingredients-text ol {
  list-style-type: decimal;
  margin-left: 1.25rem;
  margin-right: 1.25rem;
}

.damo-box-footnote {
  padding-top: 2rem;
}

/* HEADLINE & TEXT */

.items-start .damo-headline {
  padding-top: 2rem;
}

.block-type-headline+.block-type-text .damo-text,
.block-type-headline+.block-type-list .damo-tp-list-wrapper {
  padding-top: 20px;
}

.block-type-text+.block-type-text .damo-text,
.block-type-text .damo-text p+p,
.block-type-text+.block-type-list .damo-tp-list-wrapper,
.block-type-text+.block-type-headline .damo-headline {
  padding-top: 10px;
}

@media (min-width: 668px) {
  .tp-col-xl-12 .block-type-headline .text-left,
  .tp-col-xl-12 .block-type-text .text-left,
  .tp-col-xl-12 .block-type-list .text-left {
    margin-left: 8.33333%;
    max-width: 58.3333333333333333333333333%;
  }

  .tp-col-xl-8 .block-type-headline .text-left,
  .tp-col-xl-8 .block-type-text .text-left,
  .tp-col-xl-8 .block-type-list .text-left,
  .tp-col-xl-8 .block-type-headline .text-center,
  .tp-col-xl-8 .block-type-text .text-center,
  .tp-col-xl-8 .block-type-list .text-center {
    max-width: 75%;
  }

  .tp-col-xl-8 .block-type-headline .text-center,
  .tp-col-xl-8 .block-type-text .text-center,
  .tp-col-xl-8 .block-type-list .text-center {
    padding-left: 12.5%;
  }

  .tp-col-xl-8 .block-type-headline .text-right,
  .tp-col-xl-8 .block-type-text .text-right,
  .tp-col-xl-8 .block-type-list .text-right {
    padding-left: 25%;
  }

  .tp-col-xl-12 .block-type-headline .text-right,
  .tp-col-xl-12 .block-type-text .text-right,
  .tp-col-xl-12 .block-type-list .text-right {
    padding-right: 8.33333%;
    padding-left: 33.3333333%;
  }
}

@media (min-width: 980px) {
  .block-type-headline+.block-type-text .damo-text,
  .block-type-headline+.block-type-list .damo-tp-list-wrapper {
    padding-top: 30px;
  }

  .tp-col-xl-12 .block-type-headline .text-center,
  .tp-col-xl-12 .block-type-text .text-center,
  .tp-col-xl-12 .block-type-list .text-center {
    padding-left: 20%;
    padding-right: 20%;
  }
}

/* FLAG */

.damo-flag {
  border-top-left-radius: 0.5rem;
  border-bottom-right-radius: 0.5rem;
  display: inline-block;
  margin-left: 0.25rem;
  margin-right: 0.25rem;
  padding-left: 0.75rem;
  padding-right: 0.75rem;
  padding-top: 0.25rem;
  padding-bottom: 0.25rem;
}

/* ICONS */

.damo-tp-icon {
  font-size: 56px;
  line-height: 100%;
  font-family: "tp-icon";
  font-feature-settings: "liga"1;
  overflow-wrap: normal;
  white-space: nowrap;
  font-weight: normal;
  font-style: normal;
  speak: none;
  text-decoration: none;
  text-transform: none;
  text-rendering: auto;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased
}

.damo-tp-icon.big-icon {
  font-size: 90px;
}

.damo-tp-icon.s-icon {
  font-size: 16px;
}

.damo-tp-icon.xs-icon {
  font-size: 13px;
}

/* TEASER */

.damo-col-teaser.tp-col-6,
.damo-col-teaser.tp-col-4,
.damo-col-teaser.tp-col-3 {
  flex-basis: 100%;
  max-width: 100%;
}

@media (min-width: 768px) {
  .damo-col-teaser.tp-col-4 {
    flex-basis: 50%;
    max-width: 50%;
  }

  .damo-col-teaser.tp-col-3 {
    flex-basis: 50%;
    max-width: 50%;
  }
}

@media (min-width: 980px) {
  .damo-col-teaser.tp-col-6 {
    flex-basis: 50%;
    max-width: 50%;
  }

  .damo-col-teaser.tp-col-4 {
    flex-basis: 33.3333333333%;
    max-width: 33.3333333333%;
  }

  .damo-col-teaser.tp-col-3 {
    flex-basis: 25%;
    max-width: 25%;
  }
}

.damo-col-teaser .teaser-wrapper .damo-flag {
  margin-top: -1.25rem;
  position: absolute;
}

.damo-col-teaser .teaser-wrapper.text-left .damo-flag {
  margin-left: -1rem;
}

.damo-col-teaser .teaser-wrapper.text-center .damo-flag {
  margin-left: auto;
  margin-right: auto;
  left: 50%;
  --tw-translate-x: 0;
  --tw-translate-y: 0;
  --tw-rotate: 0;
  --tw-skew-x: 0;
  --tw-skew-y: 0;
  --tw-scale-x: 1;
  --tw-scale-y: 1;
  transform: translateX(var(--tw-translate-x)) translateY(var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
  --tw-translate-x: -50%;
}

.damo-col-teaser .damo-box-heading {
  padding-top: 2rem;
}

.damo-col-teaser .damo-box-heading+.damo-box-text {
  display: inline-block;
  padding-top: 0.625rem;
}

.damo-col-teaser .damo-box-text {
  padding-bottom: 0px;
  padding-top: 2.5rem;
}

/* TEASERBOX */

.damo-teaserbox-full-left,
.damo-teaserbox-full-left .damo-col-teaserbox,
.damo-teaserbox-full-right,
.damo-teaserbox-full-right .damo-col-teaserbox {
  padding: 0;
}

.damo-teaserbox-full-left .tp-row, .damo-teaserbox-full-right .tp-row, .damo-teaserbox-short-left .tp-row, .damo-teaserbox-short-right .tp-row {
  position: relative;
  bottom: 0px;
  width: 100%;
}

.damo-teaserbox-full-left .tp-row,
.damo-teaserbox-full-right .tp-row,
.damo-teaserbox-short-left .tp-row,
.damo-teaserbox-short-right .tp-row {
  margin-bottom: calc(100vw - 20vw);
}

.damo-teaserbox-full-right .tp-row {
  justify-content: flex-end;
}

.damo-teaserbox-full-right .img-wrapper,
.damo-teaserbox-full-left .img-wrapper {
  margin-bottom: 20vw;
}

@media (min-width: 375px) {
  .damo-teaserbox-full-right .tp-row,
  .damo-teaserbox-full-left .tp-row,
  .damo-teaserbox-short-right .tp-row,
  .damo-teaserbox-short-left .tp-row {
    bottom: 90px;
    margin-bottom: -90px;
  }

  .damo-teaserbox-full-right .img-wrapper,
  .damo-teaserbox-full-left .img-wrapper,
  .damo-teaserbox-short-right .img-wrapper,
  .damo-teaserbox-short-left .img-wrapper {
    margin-bottom: 0;
  }
}

@media (min-width: 668px) {
  .damo-teaserbox-full-left .tp-row, .damo-teaserbox-full-right .tp-row, .damo-teaserbox-short-left .tp-row, .damo-teaserbox-short-right .tp-row {
    position: absolute;
    bottom: 0px;
  }

  .damo-teaserbox-full-right .tp-row,
  .damo-teaserbox-full-left .tp-row,
  .damo-teaserbox-short-right .tp-row,
  .damo-teaserbox-short-left .tp-row {
    margin-bottom: calc(100vw - 122vw);
  }

  .damo-teaserbox-full-right .img-wrapper,
  .damo-teaserbox-full-left .img-wrapper,
  .damo-teaserbox-short-right .img-wrapper,
  .damo-teaserbox-short-left .img-wrapper {
    margin-bottom: 22vw;
  }
}

@media (min-width: 768px) {
  .damo-teaserbox-full-right .tp-row,
  .damo-teaserbox-full-left .tp-row,
  .damo-teaserbox-short-right .tp-row,
  .damo-teaserbox-short-left .tp-row {
    margin-bottom: calc(100vw - 113vw);
  }

  .damo-teaserbox-full-right .img-wrapper,
  .damo-teaserbox-full-left .img-wrapper,
  .damo-teaserbox-short-right .img-wrapper,
  .damo-teaserbox-short-left .img-wrapper {
    margin-bottom: 13vw;
  }
}

@media (min-width: 980px) {
  .damo-teaserbox-full-right .tp-row,
  .damo-teaserbox-full-left .tp-row,
  .damo-teaserbox-short-right .tp-row,
  .damo-teaserbox-short-left .tp-row {
    margin-top: calc(100vw - 94vw);
  }

  .damo-teaserbox-full-right .tp-row, .damo-teaserbox-full-left .tp-row, .damo-teaserbox-short-right .tp-row, .damo-teaserbox-short-left .tp-row {
    top: 0px;
    bottom: auto;
  }

  .damo-teaserbox-full-right .img-wrapper,
  .damo-teaserbox-full-left .img-wrapper,
  .damo-teaserbox-short-right .img-wrapper,
  .damo-teaserbox-short-left .img-wrapper {
    margin-bottom: 0;
  }
}

@media (min-width: 1280px) {
  .damo-teaserbox-full-right .tp-row,
  .damo-teaserbox-full-left .tp-row,
  .damo-teaserbox-short-right .tp-row,
  .damo-teaserbox-short-left .tp-row {
    margin-top: calc(100vw - 92vw);
  }
}

@media (min-width: 1440px) {
  .damo-teaserbox-full-right .tp-row,
  .damo-teaserbox-full-left .tp-row,
  .damo-teaserbox-short-right .tp-row,
  .damo-teaserbox-short-left .tp-row {
    margin-top: calc(100vw - 90vw);
  }
}

.damo-teaserbox-short-left .damo-col-teaserbox.tp-col-12, .damo-teaserbox-short-right .damo-col-teaserbox.tp-col-12 {
  padding: 0px;
}

.damo-teaserbox-short-left .img-wrapper {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.damo-teaserbox-short-right .tp-row {
  justify-content: flex-end;
}

@media (max-width: 668px) {
  .damo-teaserbox-short-left,
  .damo-teaserbox-short-right,
  .damo-teaserbox-short-left .damo-teaserbox-img,
  .damo-teaserbox-short-right .damo-teaserbox-img {
    padding: 0;
  }
}

@media (min-width: 668px) {
  .damo-teaserbox-short-left .block-type-teaserbox .tp-row, .damo-teaserbox-short-left .damo-col-teaserbox.tp-col-12, .damo-teaserbox-short-right .block-type-teaserbox .tp-row, .damo-teaserbox-short-right .damo-col-teaserbox.tp-col-12 {
    padding: 0px;
  }
}

/* FEATURE */

@media (min-width: 668px) {
  .tp-col-xl-8 .block-type-headline .text-left,
  .tp-col-xl-8 .block-type-text .text-left,
  .tp-col-xl-8 .block-type-list .text-left,
  .tp-col-xl-8 .block-type-headline .text-center,
  .tp-col-xl-8 .block-type-text .text-center,
  .tp-col-xl-8 .block-type-list .text-center {
    max-width: 75%;
    max-width: 75%;
    max-width: 75%;
  }

  .tp-col-xl-8 .block-type-headline .feature-center,
  .tp-col-xl-8 .block-type-text .feature-center,
  .tp-col-xl-8 .block-type-list .feature-center {
    padding-left: 12.5%;
  }

  .tp-col-xl-8 .block-type-headline .text-center,
  .tp-col-xl-8 .block-type-text .text-center,
  .tp-col-xl-8 .block-type-list .text-center {
    padding-left: 12.5%;
    padding-left: 12.5%;
  }
}

@media (min-width: 980px) {
  .tp-col-xl-12 .block-type-headline .feature-center,
  .tp-col-xl-12 .block-type-text .feature-center,
  .tp-col-xl-12 .block-type-list .feature-center {
    padding-left: 20%;
    padding-right: 20%;
  }

  .tp-col-xl-12 .block-type-headline .text-center,
  .tp-col-xl-12 .block-type-text .text-center,
  .tp-col-xl-12 .block-type-list .text-center {
    padding-left: 20%;
    padding-right: 20%;
    padding-left: 20%;
    padding-right: 20%;
  }
}

.damo-col-teaser .teaser-wrapper.feature-center .damo-flag {
  margin-left: auto;
  margin-right: auto;
  left: 50%;
  --tw-translate-x: 0;
  --tw-translate-y: 0;
  --tw-rotate: 0;
  --tw-skew-x: 0;
  --tw-skew-y: 0;
  --tw-scale-x: 1;
  --tw-scale-y: 1;
  transform: translateX(var(--tw-translate-x)) translateY(var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
  --tw-translate-x: -50%;
}

.feature-center {
  text-align: center;
}

@media (min-width: 668px) {
  .tp-col-xl-12 .block-type-headline .feature-left-block,
  .tp-col-xl-12 .block-type-text .feature-left-block,
  .tp-col-xl-12 .block-type-list .feature-left-block {
    margin-left: 8.33333%;
    max-width: 58.3333333333333333333333333%;
  }

  .tp-col-xl-12 .block-type-headline .text-left,
  .tp-col-xl-12 .block-type-text .text-left,
  .tp-col-xl-12 .block-type-list .text-left {
    margin-left: 8.33333%;
    max-width: 58.3333333333333333333333333%;
    margin-left: 8.33333%;
    max-width: 58.3333333333333333333333333%;
  }

  .tp-col-xl-8 .block-type-headline .feature-left-block,
  .tp-col-xl-8 .block-type-text .feature-left-block,
  .tp-col-xl-8 .block-type-list .feature-left-block,
  .tp-col-xl-8 .block-type-headline .text-center,
  .tp-col-xl-8 .block-type-text .text-center,
  .tp-col-xl-8 .block-type-list .text-center {
    max-width: 75%;
  }

  .tp-col-xl-8 .block-type-headline .text-left,
  .tp-col-xl-8 .block-type-text .text-left,
  .tp-col-xl-8 .block-type-list .text-left,
  .tp-col-xl-8 .block-type-headline .text-center,
  .tp-col-xl-8 .block-type-text .text-center,
  .tp-col-xl-8 .block-type-list .text-center {
    max-width: 75%;
    max-width: 75%;
  }
}

.damo-col-teaser .teaser-wrapper.feature-left-block .damo-flag {
  margin-left: -1rem;
}

.feature-left-block {
  text-align: left;
}

.feature-left-icon, .feature-middle-icon {
  display: flex;
}

.feature-left-icon .damo-box-heading:first-child, .feature-middle-icon .damo-box-heading:first-child, .feature-left-icon .damo-box-text:first-child, .feature-middle-icon .damo-box-text:first-child {
  padding-top: 0px;
}

.feature-left-icon .content-wrapper, .feature-middle-icon .content-wrapper {
  padding-left: 1rem;
}

.feature-middle-icon {
  align-items: center;
}

.block-type-feature .damo-box-text {
  padding-bottom: 0px;
}

.block-type-feature+.block-type-feature .damo-box-inner {
  padding-top: 0px;
}

@media (min-width: 1440px) {
  .damo-col-feature.tp-col-12 .feature-center .damo-box-headline,
  .damo-col-feature.tp-col-12 .feature-center .damo-box-text {
    max-width: 50%;
  }

  .damo-col-feature.tp-col-12 .feature-center .damo-box-headline, .damo-col-feature.tp-col-12 .feature-center .damo-box-text {
    display: inline-block;
    margin-left: auto;
    margin-right: auto;
  }
}

/* LIST */

.damo-tp-list-wrapper ol {
  list-style-type: decimal;
  margin-left: 2rem;
  margin-right: 2rem;
}

.damo-tp-list-wrapper ul {
  list-style-type: disc;
  margin-left: 2rem;
  margin-right: 2rem;
}

.damo-tp-list-wrapper li {
  padding-bottom: 1rem;
}

.damo-tp-list-wrapper.foot-nl li, .damo-tp-list-wrapper.foot-al li {
  padding-bottom: 0.5rem;
}

.damo-tp-list-wrapper.foot-nl ol {
  list-style-type: none;
  counter-reset: item;
}

.damo-tp-list-wrapper.foot-nl ol li p:before {
  content: counter(item);
  counter-increment: item;
  font-size: 75%;
}

@media (min-width: 668px) {
  .tp-col-xl-8 .block-type-headline .damo-tp-list-wrapper.foot-nl ol li p:before,
  .tp-col-xl-8 .block-type-text .damo-tp-list-wrapper.foot-nl ol li p:before,
  .tp-col-xl-8 .block-type-list .damo-tp-list-wrapper.foot-nl ol li p:before {
    padding-left: 25%;
  }

  .tp-col-xl-8 .block-type-headline .text-right,
  .tp-col-xl-8 .block-type-text .text-right,
  .tp-col-xl-8 .block-type-list .text-right {
    padding-left: 25%;
    padding-left: 25%;
  }

  .tp-col-xl-12 .block-type-headline .damo-tp-list-wrapper.foot-nl ol li p:before,
  .tp-col-xl-12 .block-type-text .damo-tp-list-wrapper.foot-nl ol li p:before,
  .tp-col-xl-12 .block-type-list .damo-tp-list-wrapper.foot-nl ol li p:before {
    padding-right: 8.33333%;
    padding-left: 33.3333333%;
  }

  .tp-col-xl-12 .block-type-headline .text-right,
  .tp-col-xl-12 .block-type-text .text-right,
  .tp-col-xl-12 .block-type-list .text-right {
    padding-right: 8.33333%;
    padding-left: 33.3333333%;
    padding-right: 8.33333%;
    padding-left: 33.3333333%;
  }
}

.damo-tp-list-wrapper.foot-nl ol li p:before {
  margin-left: -1rem;
  padding-right: 0.5rem;
  text-align: right;
  vertical-align: top;
}

.damo-tp-list-wrapper.foot-al ol {
  list-style-type: none;
}

.damo-tp-list-wrapper.foot-al ol li p:before {
  margin-left: -1rem;
  padding-right: 0.5rem;
}

.damo-tp-list-wrapper.foot-al ol li:nth-child(1) p:before {
  content: "*";
}

.damo-tp-list-wrapper.foot-al ol li:nth-child(2) p:before {
  content: "**";
}

.damo-tp-list-wrapper.foot-al ol li:nth-child(3) p:before {
  content: "***";
}

.damo-tp-list-wrapper.foot-al ol li:nth-child(4) p:before {
  content: "****";
}

.damo-tp-list-wrapper.foot-al ol li:nth-child(5) p:before {
  content: "*****";
}

.damo-tp-list-wrapper.foot-al ol li:nth-child(6) p:before {
  content: "******";
}

.damo-tp-list-wrapper.foot-al ol li:nth-child(7) p:before {
  content: "*******";
}

.damo-tp-list-wrapper.foot-al ol li:nth-child(8) p:before {
  content: "********";
}

.damo-tp-list-wrapper.foot-al ol li:nth-child(9) p:before {
  content: "*********";
}

/* RECIPE */

.tp-row.damo-row-recipe {
  padding: 0px;
}

.damo-col-recipe {
  padding: 0px;
}

.damo-row-recipe .block-type-recipe .recipe-wrapper {
  display: flex;
  flex-direction: column;
}

.damo-row-recipe .block-type-recipe .recipe-wrapper .img-wrapper {
  padding: 0px;
}

.damo-recipe-wrapper {
  position: relative;
  /* margin-left: 8.333333%; */
  margin-top: -60px;
}

.damo-recipe-wrapper .damo-box {
  padding-right: 2.665%;
  padding-left: 2.665%;
}

.damo-recipe-wrapper .damo-box-inner {
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 2rem;
  padding-bottom: 2rem;
}

.damo-recipe-wrapper .damo-box-inner .damo-box-heading:first-child {
  padding-top: 0px;
}

.damo-recipe-wrapper .damo-box-inner h3 {
  padding-top: 1.75rem;
}

.sender-wrapper {
  display: flex;
  align-items: center;
  padding-top: 1.5rem;
}

.sender-img {
  border-radius: 50%;
  margin-right: 1.5rem;
}

.ingredients-text, .steps-text {
  display: inline-block;
  padding-top: 0.25rem;
}

.ingredients-text li, .steps-text li {
  padding-bottom: 0.5rem;
}

.steps-text ul, .ingredients-text ul {
  list-style-type: disc;
  margin-left: 1.25rem;
  margin-right: 1.25rem;
}

.steps-text ol, .ingredients-text ol {
  list-style-type: decimal;
  margin-left: 1.25rem;
  margin-right: 1.25rem;
}

.ingredients-text p+ul, .ingredients-text p+ol, .steps-text p+ol, .steps-text p+ul, .ingredients-text p+ul+p, .ingredients-text p+ol+p, .steps-text p+ol+p, .steps-text p+ul+p {
  padding-top: 0.5rem;
}

.steps-wrapper h3 {
  padding-top: 2.5rem;
}

@media (min-width: 668px) {
  .damo-recipe-wrapper .damo-box-inner {
    padding-left: 2rem;
    padding-right: 2rem;
    padding-top: 2.5rem;
    padding-bottom: 2.5rem;
  }

  .damo-recipe-wrapper .damo-box {
    padding: 0px;
  }

  .damo-recipe-wrapper {
    margin-left: 8.333333%;
  }

  .tp-row.damo-row-recipe {
    padding-right: 2.61%;
    padding-left: 2.61%
  }

  .damo-row-recipe .block-type-recipe .recipe-wrapper .img-wrapper {
    padding-right: 1.39%;
    padding-left: 1.39%;
  }
}

@media(min-width: 768px) {
  .tp-row.damo-row-recipe {
    padding-right: 4.17%;
    padding-left: 4.17%
  }
}

@media (min-width: 1024px) {
  .damo-row-recipe .block-type-recipe .recipe-wrapper.recipe-right {
    flex-direction: row;
  }

  .damo-recipe-wrapper {
    margin-left: -8.333333%;
    margin-top: 50px;
  }

  .damo-row-recipe .block-type-recipe .recipe-wrapper.recipe-left {
    flex-direction: row-reverse;
  }

  .damo-row-recipe .block-type-recipe .recipe-wrapper.recipe-left .damo-recipe-wrapper {
    margin-right: -8.333333%;
    margin-left: 0;
    margin-top: 50px;
  }
}

.steps-wrapper {
  display: none;
}

.stepsMore {
  display: inline-block;
}

@media (min-width: 668px) {
  .tp-col-xl-8 .block-type-headline .text-left,
  .tp-col-xl-8 .block-type-text .text-left,
  .tp-col-xl-8 .block-type-list .text-left,
  .tp-col-xl-8 .block-type-headline .text-center,
  .tp-col-xl-8 .block-type-text .text-center,
  .tp-col-xl-8 .block-type-list .text-center {
    max-width: 75%;
    max-width: 75%;
    max-width: 75%;
  }

  .tp-col-xl-8 .block-type-headline .stepsMore,
  .tp-col-xl-8 .block-type-text .stepsMore,
  .tp-col-xl-8 .block-type-list .stepsMore {
    padding-left: 12.5%;
  }

  .tp-col-xl-8 .block-type-headline .text-center,
  .tp-col-xl-8 .block-type-text .text-center,
  .tp-col-xl-8 .block-type-list .text-center {
    padding-left: 12.5%;
    padding-left: 12.5%;
  }
}

@media (min-width: 980px) {
  .tp-col-xl-12 .block-type-headline .stepsMore,
  .tp-col-xl-12 .block-type-text .stepsMore,
  .tp-col-xl-12 .block-type-list .stepsMore {
    padding-left: 20%;
    padding-right: 20%;
  }

  .tp-col-xl-12 .block-type-headline .text-center,
  .tp-col-xl-12 .block-type-text .text-center,
  .tp-col-xl-12 .block-type-list .text-center {
    padding-left: 20%;
    padding-right: 20%;
    padding-left: 20%;
    padding-right: 20%;
  }
}

.damo-col-teaser .teaser-wrapper.stepsMore .damo-flag {
  margin-left: auto;
  margin-right: auto;
  left: 50%;
  --tw-translate-x: 0;
  --tw-translate-y: 0;
  --tw-rotate: 0;
  --tw-skew-x: 0;
  --tw-skew-y: 0;
  --tw-scale-x: 1;
  --tw-scale-y: 1;
  transform: translateX(var(--tw-translate-x)) translateY(var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
  --tw-translate-x: -50%;
}

.stepsMore {
  text-align: center;
  width: 100%;
}

.steps-wrapper-open {
  display: block;
}

@media (min-width: 1280px) {
  .steps-wrapper {
    display: block;
  }

  .stepsMore {
    display: none;
  }
}

.link-icon {
  padding-top: 1.25rem;
}

.link-icon em {
  font-size: 18px;
  margin-right: 0.5rem;
}

/* PRODUCTPREVIEW */

@media (max-width: 768px) {
  .damo-col-product.tp-col-12 {
    flex-basis: 50%;
    max-width: 50%;
  }
}

@media (min-width: 668px) {
  .tp-col-xl-8 .block-type-headline .text-left,
  .tp-col-xl-8 .block-type-text .text-left,
  .tp-col-xl-8 .block-type-list .text-left,
  .tp-col-xl-8 .block-type-headline .text-center,
  .tp-col-xl-8 .block-type-text .text-center,
  .tp-col-xl-8 .block-type-list .text-center {
    max-width: 75%;
    max-width: 75%;
    max-width: 75%;
  }

  .tp-col-xl-8 .block-type-headline .damo-tp-product-box,
  .tp-col-xl-8 .block-type-text .damo-tp-product-box,
  .tp-col-xl-8 .block-type-list .damo-tp-product-box {
    padding-left: 12.5%;
  }

  .tp-col-xl-8 .block-type-headline .text-center,
  .tp-col-xl-8 .block-type-text .text-center,
  .tp-col-xl-8 .block-type-list .text-center {
    padding-left: 12.5%;
    padding-left: 12.5%;
  }
}

@media (min-width: 980px) {
  .tp-col-xl-12 .block-type-headline .damo-tp-product-box,
  .tp-col-xl-12 .block-type-text .damo-tp-product-box,
  .tp-col-xl-12 .block-type-list .damo-tp-product-box {
    padding-left: 20%;
    padding-right: 20%;
  }

  .tp-col-xl-12 .block-type-headline .text-center,
  .tp-col-xl-12 .block-type-text .text-center,
  .tp-col-xl-12 .block-type-list .text-center {
    padding-left: 20%;
    padding-right: 20%;
    padding-left: 20%;
    padding-right: 20%;
  }
}

.damo-col-teaser .teaser-wrapper.damo-tp-product-box .damo-flag {
  margin-left: auto;
  margin-right: auto;
  left: 50%;
  --tw-translate-x: 0;
  --tw-translate-y: 0;
  --tw-rotate: 0;
  --tw-skew-x: 0;
  --tw-skew-y: 0;
  --tw-scale-x: 1;
  --tw-scale-y: 1;
  transform: translateX(var(--tw-translate-x)) translateY(var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
  --tw-translate-x: -50%;
}

.damo-tp-product-box {
  text-align: center;
}

.damo-tp-intensity-box .damo-tp-icon {
  margin-left: 0.125rem;
  margin-right: 0.125rem;
}

.damo-tp-price sup {
  font-size: 58%;
}

.damo-tp-old-price {
  display: inline-block;
  position: relative;
}

.damo-tp-old-price:before {
  content: '';
  height: 1px;
  position: absolute;
  width: 95%;
  transform: rotate(-15deg);
  top: 45%;
  background: #423d39;
}

.damo-box-inner h3 {
  font-weight: 700;
}

/* VIDEO */

.video iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.youtube-container {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap
}

.youtube-container .embed-container {
  position: relative;
  padding-bottom: 56.25%;
  overflow: hidden;
  width: 100%;
  height: auto
}

.youtube-container .embed-container iframe {
  position: absolute;
  width: 100%;
  height: 100%
}

.youtube-container img {
  width: 100%
}

.youtube-container.disabled:after {
  position: absolute;
  content: '';
  width: 100%;
  height: 100%;
  background: #ffffff;
  opacity: 0.7;
  top: 0;
  left: 0;
}

.youtube-container .youtube-hint {
  display: none
}

.youtube-container.disabled .youtube-hint {
  display: inline-block;
  position: absolute;
  max-width: 400px;
  z-index: 1;
  font-size: 0.9rem;
  border: 2px solid #F2F2F2;
  left: 0;
  bottom: 0;
}

@media screen and (max-width: 767px) {
  .youtube-container.disabled .youtube-hint {
    position: relative;
    max-width: 100%
  }
}

.youtube-container.disabled .youtube-hint .youtube-hint-text {
  background: #ffffff;
  padding: 20px
}

.youtube-container.disabled .youtube-hint .youtube-hint-text p {
  margin-top: 0
}

.youtube-container.disabled .youtube-hint .youtube-hint-link-container {
  margin: 5px 0
}

.youtube-container.disabled .youtube-hint .youtube-id {
  font-size: 0.75rem;
  text-align: right;
  margin-top: 5px
}

.bg-brandcolor {
  --tw-bg-opacity: 1;
  background-color: rgba(113, 156, 111, var(--tw-bg-opacity));
}

.bg-grey {
  --tw-bg-opacity: 1;
  background-color: rgba(85, 85, 85, var(--tw-bg-opacity));
}

.rounded-tl-lg {
  border-top-left-radius: 0.5rem;
}

.border {
  border-width: 1px;
}

.block {
  display: block;
}

.inline-block {
  display: inline-block;
}

.inline {
  display: inline;
}

.flex {
  display: flex;
}

.inline-flex {
  display: inline-flex;
}

.table {
  display: table;
}

.hidden {
  display: none;
}

.flex-col-reverse {
  flex-direction: column-reverse;
}

.flex-wrap {
  flex-wrap: wrap;
}

.items-start {
  align-items: flex-start;
}

.items-center {
  align-items: center;
}

.flex-grow {
  flex-grow: 1;
}

.flex-shrink {
  flex-shrink: 1;
}

.list-disc {
  list-style-type: disc;
}

.list-decimal {
  list-style-type: decimal;
}

.mx-0 {
  margin-left: 0px;
  margin-right: 0px;
}

.mx-1 {
  margin-left: 0.25rem;
  margin-right: 0.25rem;
}

.mx-auto {
  margin-left: auto;
  margin-right: auto;
}

.-ml-4 {
  margin-left: -1rem;
}

.px-3 {
  padding-left: 0.75rem;
  padding-right: 0.75rem;
}

.px-4 {
  padding-left: 1rem;
  padding-right: 1rem;
}

.py-10 {
  padding-top: 2.5rem;
  padding-bottom: 2.5rem;
}

.pb-0 {
  padding-bottom: 0px;
}

.pt-1 {
  padding-top: 0.25rem;
}

.pb-1 {
  padding-bottom: 0.25rem;
}

.pt-2 {
  padding-top: 0.5rem;
}

.pr-2 {
  padding-right: 0.5rem;
}

.pb-10 {
  padding-bottom: 2.5rem;
}

.pb-20 {
  padding-bottom: 5rem;
}

.pt-2\.5 {
  padding-top: 0.625rem;
}

.static {
  position: static;
}

.absolute {
  position: absolute;
}

.relative {
  position: relative;
}

.top-0 {
  top: 0px;
}

.bottom-0 {
  bottom: 0px;
}

.left-1\/2 {
  left: 50%;
}

* {
  --tw-shadow: 0 0 #0000;
}

* {
  --tw-ring-inset: var(--tw-empty,/*!*/ /*!*/);
  --tw-ring-offset-width: 0px;
  --tw-ring-offset-color: #fff;
  --tw-ring-color: rgba(59, 130, 246, 0.5);
  --tw-ring-offset-shadow: 0 0 #0000;
  --tw-ring-shadow: 0 0 #0000;
}

.text-left {
  text-align: left;
}

.text-center {
  text-align: center;
}

.text-right {
  text-align: right;
}

.underline {
  text-decoration: underline;
}

.antialiased {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.visible {
  visibility: visible;
}

.w-full {
  width: 100%;
}

.transform {
  --tw-translate-x: 0;
  --tw-translate-y: 0;
  --tw-rotate: 0;
  --tw-skew-x: 0;
  --tw-skew-y: 0;
  --tw-scale-x: 1;
  --tw-scale-y: 1;
  transform: translateX(var(--tw-translate-x)) translateY(var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}

.transition {
  transition-property: background-color, border-color, color, fill, stroke, opacity, box-shadow, transform, filter, -webkit-backdrop-filter;
  transition-property: background-color, border-color, color, fill, stroke, opacity, box-shadow, transform, filter, backdrop-filter;
  transition-property: background-color, border-color, color, fill, stroke, opacity, box-shadow, transform, filter, backdrop-filter, -webkit-backdrop-filter;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 150ms;
}

.ease-in-out {
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
}

@-webkit-keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

@-webkit-keyframes ping {
  75%, 100% {
    transform: scale(2);
    opacity: 0;
  }
}

@keyframes ping {
  75%, 100% {
    transform: scale(2);
    opacity: 0;
  }
}

@-webkit-keyframes pulse {
  50% {
    opacity: .5;
  }
}

@keyframes pulse {
  50% {
    opacity: .5;
  }
}

@-webkit-keyframes bounce {
  0%, 100% {
    transform: translateY(-25%);
    -webkit-animation-timing-function: cubic-bezier(0.8,0,1,1);
            animation-timing-function: cubic-bezier(0.8,0,1,1);
  }

  50% {
    transform: none;
    -webkit-animation-timing-function: cubic-bezier(0,0,0.2,1);
            animation-timing-function: cubic-bezier(0,0,0.2,1);
  }
}

@keyframes bounce {
  0%, 100% {
    transform: translateY(-25%);
    -webkit-animation-timing-function: cubic-bezier(0.8,0,1,1);
            animation-timing-function: cubic-bezier(0.8,0,1,1);
  }

  50% {
    transform: none;
    -webkit-animation-timing-function: cubic-bezier(0,0,0.2,1);
            animation-timing-function: cubic-bezier(0,0,0.2,1);
  }
}

.filter {
  --tw-blur: var(--tw-empty,/*!*/ /*!*/);
  --tw-brightness: var(--tw-empty,/*!*/ /*!*/);
  --tw-contrast: var(--tw-empty,/*!*/ /*!*/);
  --tw-grayscale: var(--tw-empty,/*!*/ /*!*/);
  --tw-hue-rotate: var(--tw-empty,/*!*/ /*!*/);
  --tw-invert: var(--tw-empty,/*!*/ /*!*/);
  --tw-saturate: var(--tw-empty,/*!*/ /*!*/);
  --tw-sepia: var(--tw-empty,/*!*/ /*!*/);
  --tw-drop-shadow: var(--tw-empty,/*!*/ /*!*/);
  filter: var(--tw-blur) var(--tw-brightness) var(--tw-contrast) var(--tw-grayscale) var(--tw-hue-rotate) var(--tw-invert) var(--tw-saturate) var(--tw-sepia) var(--tw-drop-shadow);
}

.blur {
  --tw-blur: blur(8px);
}

.grayscale {
  --tw-grayscale: grayscale(100%);
}

@media (min-width: 640px) {
}

@media (min-width: 768px) {
}

@media (min-width: 1024px) {
}

@media (min-width: 1280px) {
}

@media (min-width: 1536px) {
}

.error-container {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 70vh;
  padding: 2rem;
}

.error-content {
  max-width: 600px;
  text-align: center;
  background-color: white;
  border-radius: 4px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  padding: 3rem;
  position: relative;
}

.error-title {
  font-size: 7rem;
  font-weight: 700;
  color: #c0a468;
  line-height: 1;
  margin: 0;
  letter-spacing: -0.05em;
}

.error-subtitle {
  font-size: 1.8rem;
  color: #333;
  margin-top: 0;
  margin-bottom: 1.5rem;
}

.error-message {
  font-size: 1.1rem;
  color: #555;
  line-height: 1.5;
  margin-bottom: 2rem;
}

.error-suggestions {
  text-align: left;
  margin-bottom: 2rem;
  background-color: #f8f8f8;
  padding: 1.5rem;
  border-radius: 4px;
  border-left: 4px solid #b38a49;
  /* Tchibo Gold */
}

.error-suggestions p {
  margin-top: 0;
  color: #333;
  font-weight: 600;
}

.error-suggestions ul {
  margin-bottom: 0;
  padding-left: 1.2rem;
  color: #555;
}

.error-suggestions li {
  margin-bottom: 0.5rem;
}

.error-suggestions li:last-child {
  margin-bottom: 0;
}

.error-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  margin-top: 2rem;
}

.error-button {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  background-color: #c0a468;
  color: white;
  text-decoration: none;
  border-radius: 3px;
  font-weight: 600;
  transition: background-color 0.2s, transform 0.2s;
  border: none;
}

.error-button:hover {
  background-color: #edd38e;
  transform: translateY(-1px);
}

.error-button-secondary {
  background-color: white;
  color: #003d7f;
  border: 1px solid #003d7f;
}

.error-button-secondary:hover {
  background-color: #f0f0f0;
  color: #002d5f;
}

@media (max-width: 640px) {
  .error-container {
    padding: 1rem;
  }

  .error-content {
    padding: 2rem;
  }

  .error-title {
    font-size: 5rem;
  }

  .error-subtitle {
    font-size: 1.5rem;
  }

  .error-actions {
    flex-direction: column;
  }

  .error-button {
    width: 100%;
  }
}



/**
  NUXT HEADER & FOOTER REBUILDS
 */
.header-container {
  background: #fff;
  position: sticky;
  padding: 0 64px;
  display: flex;
  justify-content: space-between;
  top: 0;
  z-index: 1000;
  font-family: ui-sans-serif, system-ui, sans-serif, Apple Color Emoji, Segoe UI Emoji, Segoe UI Symbol, Noto Color Emoji;
  font-feature-settings: normal;
  font-variation-settings: normal;
}

.header-items-container {
  display: flex;
  align-items: center;
  gap: 20px;
}
.header-icons-container {
  display: flex;
  align-items: center;
}
.header-icons-container svg {
  height: 16px;
  width: 16px;
}

.header-items-container .ds-nav-item,
.header-icons-container .ds-nav-item {
  align-items: center;
  cursor: pointer;
  display: flex;
  height: 52px;
  outline: none;
  flex-direction: column;
  justify-content: center;
  color: #545c63;
  fill: #C0A468;
}
.ds-nav-item:hover {
  color: #000;
  fill: #000;
}
.ds-nav-item .ds-nav-item-wrapper {
  display: grid;
  grid-template-rows: 1fr 2px;
  height: 40px;
  justify-content: center;
  align-items: center;
  min-width: 44px;
  padding: 2px 4px 0;
}
.ds-nav-item-wrapper .ds-nav-item-line {
  margin-top: -2px;
  height: 2px;
  width: 100%;
  background-color: #000;
  display: none;
}
.ds-nav-item-wrapper .ds-nav-item-content {
  font-weight: 600;
  line-height: 1.25rem;
  font-size: 0.875rem;
}
.ds-nav-item:hover > .ds-nav-item-wrapper .ds-nav-item-line {
  display: block;
}

.header-logo-link {
  padding-left: 1em;
  padding-right: 1em;
}

.header-item-link {
  padding-left: 1em;
  padding-right: 1em;
}

.header-item-link:hover {
  text-decoration: underline;
}

.nuxt-footer-container {
  max-width: 1920px;
  padding: 64px 96px;
  width: 100%;
  margin: 0 auto;
  background: #fff;
  border-top: 2px solid #f6f6f6;
  font-weight: 500;
  font-size: 14px;
}

.nuxt-footer-container a {
  color: #0a63bd;
  text-decoration: underline;
}

.nuxt-footer-container .nuxt-footer-tp-row {
  align-items: start;
  box-sizing: border-box;
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
}

.nuxt-footer-container .nuxt-footer-links {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  padding: 0;
}

.nuxt-footer-container .nuxt-footer-links li {
  margin-right: 1rem;
  position: relative;
}

.nuxt-footer-container .nuxt-footer-images {
  margin-top: 2rem;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.nuxt-footer-tp-row-height {
  height: 92px;
  display: flex;
  justify-content: center;
}
