/*
Theme Name: fwback-wp
Theme URI: http://underscores.me/
Author: brot & salz
Author URI: https://brotsalz.de/
Description: This is the custom theme for the Fitzek World Website.
Version: 1.0.0
Tested up to: 5.4
Requires PHP: 5.6
License: GNU General Public License v2 or later
License URI: LICENSE
Text Domain: fwback-wp
Tags: custom-background, custom-logo, custom-menu, featured-images, threaded-comments, translation-ready

This theme, like WordPress, is licensed under the GPL.
Use it to make something cool, have fun, and share what you've learned.

fwback-wp is based on Underscores https://underscores.me/, (C) 2012-2020 Automattic, Inc.
Underscores is distributed under the terms of the GNU GPL v2 or later.

Normalizing styles have been helped along thanks to the fine work of
Nicolas Gallagher and Jonathan Neal https://necolas.github.io/normalize.css/
*/

/* * Fonts
* --------------------------------------------- */
/* space-mono-regular - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Space Mono';
  font-style: normal;
  font-weight: 400;
  src: url('../fwback-wp/assets/fonts/space-mono/space-mono-v17-latin-regular.woff2')
    format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}

/* space-mono-700 - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Space Mono';
  font-style: normal;
  font-weight: 700;
  src: url('../fwback-wp/assets/fonts/space-mono/space-mono-v17-latin-700.woff2')
    format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}

@font-face {
  font-display: auto; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: Yoko;
  font-style: normal;
  font-weight: 500;
  src:
    url('../fwback-wp/assets/fonts/yoko/yoko.woff2') format('woff2'),
    /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
      url('../fwback-wp/assets/fonts/yoko.woff') format('woff'); /* Chrome 6+, Firefox 3.6+, IE 9+, Safari 5.1+ */
}

/* * Bootstrap container max-width overrides
* --------------------------------------------- */
/* Bootstrap 'xl' breakpoint starts at 1200px */
@media (min-width: 1200px) {
  .container-xl,
  .container {
    max-width: 1480px;
  }
}

/* If you also want to change 'xxl' (1400px+) */
@media (min-width: 1400px) {
  .container-xxl,
  .container {
    max-width: 1680px;
  }
}

/* * General
* --------------------------------------------- */
:root {
  --cWhite: #f7f2ea;
  /** Multi-line comments **/
  --cBlack: #000000;
  --cRed: #ef1111;
  --cGreyDark: #191818;
  --cGrey: #838383;

  --fw-400: 400;
  --fw-500: 500;
  --fw-700: 700;

  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 12px;
  --radius-xl: 16px;
}

html {
  font-size: 16px;
}

body {
  font-family: 'Space Mono';
  font-style: normal;
  font-weight: var(--fw-400);
  color: var(--cWhite);
  background-color: var(--cBlack);
  overflow-x: hidden;
}

body p {
  margin-bottom: 1.5rem;
}

.h-4xl,
.is-style-h-4xl,
.h-3xl,
.is-style-h-3xl,
.h-2xl,
.is-style-h-2xl,
.h-xl,
.is-style-h-xl,
.h-lg,
.is-style-h-lg {
  font-family: Yoko, almaq-rough, sans-serif;
  text-transform: uppercase;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  margin-bottom: 1.5rem;
  line-height: 1.05;
  hyphens: auto;
  hanging-punctuation: first;
}

.cRed {
  color: var(--cRed);
}
.cWhite {
  color: var(--cWhite);
}
.cGrey {
  color: var(--cGrey);
}

.f-headline {
  font-family: Yoko, almaq-rough, sans-serif;
  text-transform: uppercase;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  line-height: 1.05;
  hyphens: auto;
  hanging-punctuation: first;
}

.is-style-h-4xl,
.h-4xl,
.f-4xl {
  font-size: clamp(2rem, 5vw, 4rem);
}

.is-style-h-3xl,
.h-3xl,
.f-3xl {
  font-size: clamp(1.75rem, 4vw, 3rem);
}

.is-style-h-2xl,
.h-2xl,
.f-2xl {
  font-size: clamp(1.5rem, 3.25vw, 2.25rem);
  line-height: 1.1;
}

.is-style-h-xl,
.h-xl,
.f-xl {
  font-size: clamp(1.3rem, 2vw, 1.5rem);
  line-height: 1.25;
}

.is-style-h-lg,
.h-lg,
.f-lg {
  font-size: clamp(1.15rem, 1.5vw, 1.25rem);
  line-height: 1.25;
}

.is-style-section-indicator,
.section_indicator {
  background: var(--cRed);
  color: var(--cBlack);
  padding: 0.25rem 0.5rem;
  font-weight: var(--fw-700);
  width: fit-content;
  position: relative;
  margin-inline: 25px;
  white-space: nowrap;
}

.is-style-section-indicator::after,
.is-style-section-indicator::before,
.section_indicator::after,
.section_indicator::before {
  --sectionIndicatorOffset: -20px;
  content: '';
  display: block;
  width: 27px;
  height: 100%;
  position: absolute;
  top: 0;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}

.is-style-section-indicator::before,
.section_indicator::before {
  left: var(--sectionIndicatorOffset);
  background-image: url('../fwback-wp/assets/imgs/fitzek-section-indicator-end-left.svg');
}

.is-style-section-indicator::after,
.section_indicator::after {
  right: var(--sectionIndicatorOffset);
  background-image: url('../fwback-wp/assets/imgs/fitzek-section-indicator-end-right.svg');
}

@media (max-width: 576px) {
  .is-style-section-indicator,
  .section_indicator {
    font-size: 14px;
  }
}

.isolation {
  isolation: isolate;
}

.z-index-1 {
  z-index: 1;
}

.z-index-2 {
  z-index: 2;
}

.z-index-3 {
  z-index: 3;
}

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

a:hover,
a:visited {
  color: inherit;
}

body .entry-content {
  margin-block: 0;
}

@media (max-width: 992px) {
  .br-lg-none br {
    display: none;
  }
}

@media (max-width: 768px) {
  .br-md-none br {
    display: none;
  }
}

@media (max-width: 576px) {
  .br-sm-none br {
    display: none;
  }
}

/* * Site Header and Footer
* --------------------------------------------- */
.site-main {
  padding-top: 9rem;
}

@media (max-width: 576px) {
  .site-main {
    padding-top: 89px;
  }
}

#masthead {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 90;
  isolation: isolate;
  background: var(--cBlack);
}

#masthead .site-branding a img {
  transition: 0.3s all ease;
  height: 3.5rem;
  width: auto;
}

.single #masthead .site-branding a img {
  opacity: 0;
}

.single #masthead .site-branding a {
  position: relative;
}

#masthead .zimmer_logo {
  transition: 0.3s all ease;
  height: 2.5rem;
  width: auto;
}

#masthead .zimmer_logo__wrapper {
  position: relative;
}

.single #masthead .zimmer_logo__wrapper img {
  opacity: 0;
}

.single #masthead .zimmer_logo__wrapper::after {
  -webkit-mask-image: url(/wp-content/uploads/fw-das-zimmer-logo.svg);
  mask-image: url(/wp-content/uploads/fw-das-zimmer-logo.svg);
  background-color: var(--cAccent, var(--cRed));
  -webkit-mask-size: contain;
  mask-size: contain;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  background-image: none;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  content: '';
  display: block;
  width: 100.5%;
  height: 100.5%;
  position: absolute;
  top: 0;
}

.single #masthead .site-branding a::after {
  -webkit-mask-image: url(/wp-content/uploads/fw-logo-red.svg);
  mask-image: url(/wp-content/uploads/fw-logo-red.svg);
  background-color: var(--cAccent, var(--cRed));
  -webkit-mask-size: contain;
  mask-size: contain;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  background-image: none;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  content: '';
  display: block;
  width: 100.5%;
  height: 100.5%;
  position: absolute;
  top: 0;
}

#masthead.nav-down .site-branding a img {
  height: 2rem;
}

#masthead .container-fluid {
  position: relative;
  z-index: 2;
  background: var(--cBackground, var(--cBlack));
}

#site-navigation {
  position: absolute;
  /* 
       1. The 2rem covers the padding (1rem top + 1rem bottom).
       2. The clamp is multiplied by 1.25 to account for line-height.
       3. The whole thing is multiplied by -1 to make it negative.
    */
  bottom: calc((2rem + (clamp(1rem, 1.5vw, 1.25rem) * 1.25)) * -1);
  width: 100%;
  left: 0;
  background: var(--cBackground, var(--cBlack));
  padding: 1rem 0.5rem;
  transition: 0.3s all ease;
  transform: translateY(0%);
  z-index: 1;
}

#masthead.nav-down #site-navigation {
  transform: translateY(-100%);
}

.menu-stylings {
  padding: 0;
  margin: 0;
  list-style: none;
}

#header-menu {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2rem;
}

#footer-menu,
#law-menu {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  padding-left: 1rem;
}

.menu-stylings li a {
  text-decoration: none;
  color: var(--cFont, var(--cWhite));
  margin: 0;
  transition: 0.3s all ease;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  -webkit-text-stroke: 0.5px transparent;
}

.menu-stylings li a:hover {
  color: var(--cAccent, var(--cRed));
}

#masthead .socialmedia__item a svg {
  height: 1rem;
  width: auto;
}

#masthead .socialmedia__item a svg path {
  transition: 0.3s all ease;
}

#masthead .socialmedia__item a:hover svg path {
  fill: var(--cRed);
}

#masthead .socialmedia__list {
  gap: 1rem;
}

.theme_light .socialmedia__item a svg path {
  fill: var(--cBlack);
}

/* * Mobile Navigation
* --------------------------------------------- */
#site-navigation-mobile {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--cBackground, var(--cBlack));
  display: flex;
  justify-content: center;
  z-index: 9999;
  opacity: 0;
  visibility: hidden;
  transition:
    opacity 0.3s ease,
    visibility 0.3s ease;
  padding: 1.5rem;
  padding-top: 3rem;
}

#site-navigation-mobile.active {
  opacity: 1;
  visibility: visible;
}

.mobile_navigation__inner_wrapper {
  width: 100%;
  border-radius: var(--radius-lg);
}

.mobile_navigation__header {
  padding: 1.5rem;
  border: 2px solid var(--cGreyDark);
  border-bottom-width: 1px;
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}

.mobile_navigation__body {
  padding: 1.5rem;
  border: 2px solid var(--cGreyDark);
}

.mobile_navigation__footer {
  padding: 1.5rem;
  border: 2px solid var(--cGreyDark);
  border-top-width: 1px;
  border-radius: 0 0 var(--radius-lg) var(--radius-lg);
}

#site-navigation-mobile.active .mobile_navigation__header {
  animation: borderColor 0.5s ease 0.15s forwards;
}

#site-navigation-mobile.active .mobile_navigation__body {
  animation: borderColor 0.5s ease 0.35s forwards;
}

#site-navigation-mobile.active .mobile_navigation__footer {
  animation: borderColor 0.5s ease 0.75s forwards;
}

#header-menu-mobile a {
  opacity: 0;
  transform: translateX(-1rem);
  transition: 0.3s all ease;
  transition-delay: 0.3s;
}

#header-menu-mobile a.active {
  opacity: 1;
  transform: translateX(0);
}

#menu_progress_bar {
  border: 1px solid var(--cGreyDark);
  border-radius: var(--radius-lg);
  width: 100%;
  margin-right: 1rem;
}

#menu_progress_bar_fill {
  height: 100%;
  width: 0%;
  background: var(--cGreyDark);
  border-radius: var(--radius-lg);
}

@keyframes borderColor {
  0% {
    border-color: var(--cGreyDark);
  }
  10% {
    border-color: transparent;
  }
  30% {
    border-color: var(--cGreyDark);
  }
  35% {
    border-color: transparent;
  }
  50% {
    border-color: var(--cGreyDark);
  }
  70% {
    border-color: transparent;
  }
  90% {
    border-color: var(--cGreyDark);
  }
  95% {
    border-color: transparent;
  }
  100% {
    border-color: var(--cGreyDark);
  }
}

.mobile_navigation__body li ~ li {
  margin-top: 1rem;
}

.menu_progress__wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
  transition: 0.3s all ease;
  padding: 1.5rem;
  background: var(--cBlack);
}

.menu_progress__wrapper.animation-end {
  opacity: 0;
  pointer-events: none;
  transition-delay: 0.3s;
}

.mobile_navigation__footer .socialmedia__list {
  margin-block: 0;
}

.mobile_navigation__close_button {
  background: transparent;
  border: none;
  padding: 0;
  width: 2.5rem;
  height: auto;
}

.mobile_navigation__background {
  position: absolute;
  z-index: -1;
  transform: rotate(21deg);
  filter: brightness(0.25);
  height: 70%;
  width: auto;
  right: -120px;
  object-fit: cover;
  bottom: -100px;
}

.mobile_menu__nav_toggle {
  background: transparent;
  border: none;
  padding: 0;
  width: 2.5rem;
  height: auto;
}

.mobile_menu__nav_toggle span {
  display: block;
  width: 100%;
  height: 3px;
  background: var(--cRed);
  margin-bottom: 5px;
  border-radius: var(--radius-sm);
}

/* * Book Single
* --------------------------------------------- */
.accent_line {
  position: relative;
}

.accent_line::before,
.accent_line::after {
  content: '';
  position: absolute;
  top: 0;
  display: block;
  height: 100%;
  width: 25%;
}

.accent_line::before {
  left: 0;
  background: linear-gradient(
    90deg,
    rgba(var(--cBackgroundRGB, 0, 0, 0), 1) 0%,
    rgba(var(--cBackgroundRGB, 0, 0, 0), 0) 100%
  );
}

.accent_line::after {
  right: 0;
  background: linear-gradient(
    270deg,
    rgba(var(--cBackgroundRGB, 0, 0, 0), 1) 0%,
    rgba(var(--cBackgroundRGB, 0, 0, 0), 0) 100%
  );
}

.accent_line hr {
  opacity: 1;
  margin: 0;
  width: 100%;
  height: 1px;
  border: none;
  background: var(--cAccent, var(--cRed));
}

/* * SVG Draw Animation
* --------------------------------------------- */
.svg-draw-wrap {
  position: relative;
  display: inline-block;
  white-space: nowrap;
}

/* The SVG itself */
.custom-draw-svg {
  position: absolute;
  pointer-events: none;
  z-index: 2;
  left: 50%;
  height: auto;
  width: 120%;
}

.custom-draw-svg:is(.oval) {
  top: 40%;
  transform: translate(-50%, -50%);
}

.custom-draw-svg:is(.box) {
  width: 105%;
  top: 50%;
  transform: translate(-50%, -50%);
}

.custom-draw-svg.scribble {
  bottom: 5%;
  transform: translateX(-50%);
}

.custom-draw-svg.underline {
  bottom: -10%;
  transform: translateX(-50%);
}

/* Animation via CSS keyframes */
.svg-draw-wrap.is-visible .custom-draw-svg path {
  stroke-dasharray: 2000;
  stroke-dashoffset: 2000;
  animation: drawMe 5s ease-out forwards;
}

/* * Global Block Stylings
* --------------------------------------------- */
.block__decoration {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: -1;
  width: clamp(100px, 10vw, 8rem);
  height: auto;
  filter: brightness(0.5);
}

.block__decoration.left {
  left: 0;
  right: auto;
}

.block__decoration.right {
  right: 0;
  left: auto;
}

.block__text_image ul {
  margin-left: 0;
}

/* * Buttons and CTAs
* --------------------------------------------- */
.cta {
  width: fit-content;
}

/* * Default CTA ------------------ */
.cta.default .cta__inner_wrapper {
  padding: 0.5rem 1.5rem;
  background: transparent;
  color: var(--cFont, var(--cWhite));
  border: 2px solid var(--cFont, var(--cWhite));
  border-radius: var(--radius-md);
  display: flex;
  justify-content: center;
  align-items: center;
  line-height: 1.5;
  text-decoration: none;
  font-size: 1.125rem;
  transition: 0.3s all ease;
}

.cta.default .cta__inner_wrapper div {
  text-align: center;
  font-weight: var(--fw-700);
}

.cta.default:hover .cta__inner_wrapper,
.cta.default.active .cta__inner_wrapper {
  background: var(--cFont, var(--cWhite));
  color: var(--cBackground, var(--cBlack));
}

/* * Default CTA (filled) ------------------ */
.cta.default.filled .cta__inner_wrapper {
  background: var(--cFont, var(--cWhite));
  color: var(--cBackground, var(--cBlack));
  font-weight: var(--fw-700);
}

.cta.default.filled:hover .cta__inner_wrapper,
.cta.default.filled.active .cta__inner_wrapper {
  /* background: var(--cBackground, var(--cBlack));
  color: var(--cFont, var(--cWhite)); */
  filter: brightness(1.35);
}

/* Red */
.cta.red .cta__inner_wrapper {
  border-color: var(--cAccent, var(--cRed));
  color: var(--cAccent, var(--cRed));
}

.cta.red .cta__inner_wrapper:hover {
  background: var(--cAccent, var(--cRed));
  color: var(--cFont, var(--cBlack));
}

.cta.red.filled .cta__inner_wrapper {
  border-color: var(--cAccent, var(--cRed));
  background: var(--cAccent, var(--cRed));
  color: var(--cFont, var(--cBlack));
}

.cta.red.filled:not(.no-hover) .cta__inner_wrapper:hover {
  /* background: transparent;
  color: var(--cAccent, var(--cRed)); */
  filter: brightness(1.35);
}

/* Grey */
.cta.grey .cta__inner_wrapper {
  border-color: var(--cAccent, var(--cGrey));
  color: var(--cAccent, var(--cGrey));
}

.cta.grey .cta__inner_wrapper:hover {
  background: var(--cAccent, var(--cGrey));
  color: var(--cFont, var(--cBlack));
}

.cta.grey.filled .cta__inner_wrapper {
  border-color: var(--cAccent, var(--cGrey));
  background: var(--cAccent, var(--cGrey));
  color: var(--cFont, var(--cBlack));
}

.cta.grey.filled:not(.no-hover) .cta__inner_wrapper:hover {
  /* background: transparent;
  color: var(--cAccent, var(--cGrey)); */
  filter: brightness(1.35);
}

/* * Video Section Book
* --------------------------------------------- */
/* * Order Section
* --------------------------------------------- */
.order_promotional_image {
  position: relative;
}

.order_promotional_image::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 50%;
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0) 0%,
    rgba(0, 0, 0, 1) 85%
  );
}

.order_promotional_video__wrapper {
  max-width: 850px;
  position: relative;
  isolation: isolate;
  z-index: 1;
}

.order_promotional_video video {
  aspect-ratio: initial !important;
}

.order_promotional_video__wrapper::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 10%;
  height: 100%;
  z-index: 3;
  background: linear-gradient(-90deg, rgba(0, 0, 0, 0) 0%, #000000 85%);
}

.order_promotional_video__wrapper::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 10%;
  height: 100%;
  z-index: 3;
  background: linear-gradient(90deg, rgba(0, 0, 0, 0) 0%, #000000 85%);
}

.order_promotional_video {
  position: relative;
  width: 100%;
}

.order_promotional_video::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 50%;
  z-index: 3;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, #000000 85%);
}

.order_promotional_video::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 10%;
  z-index: 3;

  background: linear-gradient(0deg, rgba(0, 0, 0, 0) 0%, #000000 85%);
}

@media (max-width: 576px) {
  .order_headline_group {
    margin-top: -11rem !important;
  }

  .order_promotional_image {
    max-width: 300px;
  }
}

/* * Preloader
* --------------------------------------------- */
#preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--cBackground, var(--cBlack));
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1000;
  pointer-events: none;
}

#preloader:not(.home_preloader) {
  animation: fadeOut 1s ease-out 2s forwards;
}

#preloader.home_preloader video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

#preloader.home_preloader.loaded {
  animation: fadeOut 1s ease-out forwards;
}

.preloader_background {
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.preloader_background :is(video, img) {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: brightness(0.25);
}

.preloader_logo {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.preloader_logo img {
  width: 150px;
  height: auto;
}

/* * Slider Stylings General
* --------------------------------------------- */
.slider_nav__wrapper {
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  display: flex;
  justify-content: space-between;
  transform: translateY(-50%);
  z-index: 3;
  padding: 0 1rem;
  pointer-events: none;
}

.slider_nav__wrapper.underneath {
  position: relative;
  transform: translateY(0%);
  justify-content: center;
  margin-top: 1.5rem;
}

.slider_nav__wrapper.underneath .slider_nav__button.prev {
  margin-right: 1.5rem;
}

.slider_nav__wrapper.underneath .slider_nav__button.next {
  margin-left: 1.5rem;
}

.slider_nav__button {
  padding: 0;
  background: transparent;
  border: none;
  pointer-events: all;
  padding-inline: 0.5rem;
}

.slider_nav__button svg {
  width: 2rem;
  height: auto;
}

@media (max-width: 768px) {
  .slider_nav__button svg {
    width: 1rem;
  }
}

/* * Inputs
* --------------------------------------------- */
input[type='text'],
input[type='email'],
input[type='url'],
input[type='password'],
input[type='search'],
input[type='number'],
input[type='tel'],
input[type='range'],
input[type='date'],
input[type='month'],
input[type='week'],
input[type='time'],
input[type='datetime'],
input[type='datetime-local'],
input[type='color'],
textarea {
  color: var(--cAccent, var(--cWhite)) !important;
  background: transparent;
  border: 1px solid transparent;
  border-radius: var(--radius-lg);
  padding: 0.35rem 1.25rem;
  line-height: 1.5;
}

input[type='text'] {
  width: 350px;
}

input[type='search'] {
  width: 300px;
  padding: 0.25rem 1rem 0.5rem 0.25rem;
}

input[type='text']:focus-visible,
input[type='search']:focus-visible {
  outline: 2px solid transparent;
  outline-offset: 2px;
}

input[type='text']::placeholder,
input[type='search']::placeholder {
  color: var(--cAccent, var(--cWhite));
}

/* * Newsletter
* --------------------------------------------- */
#newsletter {
  max-width: 550px;
}

#newsletter label[for='dsgvo'] {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  position: relative;
}

#newsletter input[type='checkbox'] {
  margin-top: 0.3rem;
  max-width: 1.45rem;
  max-height: 1.45rem;
  min-width: 1.45rem;
  min-height: 1.45rem;
}

#newsletter label[for='dsgvo']::before {
  content: '';
  display: block;
  max-width: 1.5rem;
  max-height: 1.5rem;
  min-width: 1.5rem;
  min-height: 1.5rem;
  border: 2px solid var(--cAccent, var(--cWhite));
  border-radius: var(--b-radius-sm);
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  left: 0;
  top: 0.25rem;
  background: var(--cBackground, var(--cBlack));
}

.checkBoxWrap {
  display: flex;
  justify-content: center;
  align-items: center;
}

#dsgvoCheck {
  opacity: 0;
}

.checker {
  position: absolute;
  top: 0;
  left: 0;
  width: 25px;
  height: 25px;
  cursor: pointer;
  border: 1px solid var(--cAccent, var(--cWhite));
  border-radius: 5px;
  pointer-events: none;
  display: flex;
  justify-content: center;
  align-items: center;
}

.checker svg {
  opacity: 0;
  width: 16px;
  height: 16px;
  transition: 0.3s all ease;
}

.checkBoxWrap.checked .checker svg {
  opacity: 1;
}

/* * Social Media
* --------------------------------------------- */
.socialmedia__list {
  display: flex;
  padding: 0;
  margin: 1rem 0rem;
  list-style: none;
  gap: 1.5rem;
}

.socialmedia__link {
  display: flex;
  justify-content: center;
  align-items: center;
}

.socialmedia__icon svg {
  height: 1.5rem;
  width: auto;
}

/* * Keyframe Animations
* --------------------------------------------- */
.animate-on-scroll.fade-in_left {
  opacity: 0;
  transform: translateX(-50px);
}

.animate-on-scroll.fade-in_left.animated {
  animation: fadeInFromLeft 1s ease forwards;
}

@keyframes fadeInFromLeft {
  0% {
    opacity: 0;
    transform: translateX(-50px);
  }

  100% {
    opacity: 1;
    transform: translateX(0);
  }
}

.animate-on-scroll.fade-in_right {
  opacity: 0;
  transform: translateX(50px);
}

.animate-on-scroll.fade-in_right.animated {
  animation: fadeInFromRight 1s ease forwards;
}

@keyframes fadeInFromRight {
  0% {
    opacity: 0;
    transform: translateX(50px);
  }

  100% {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes drawMe {
  to {
    stroke-dashoffset: 0;
  }
}

@keyframes carDrive {
  0% {
    transform: translate(-50%, -50%) scaleX(1);
  }
  50% {
    transform: translate(calc(-50% - 30px), -50%) scaleX(1);
  }
  100% {
    transform: translate(-50%, -50%) scaleX(1);
  }
}

@keyframes fadeOut {
  to {
    opacity: 0;
    visibility: hidden;
  }
}

@keyframes fadeIn {
  to {
    opacity: 1;
    visibility: visible;
  }
}

/* * Utility Classes
* --------------------------------------------- */
/* Max widths */
.mw-lg {
  max-width: 992px;
}

.mw-md {
  max-width: 768px;
}

.mw-sm {
  max-width: 576px;
}

/* FW Preview Card */
.gx-7 {
  --bs-gutter-x: 5rem;
}
.g-7 {
  --bs-gutter-x: 5rem;
  --bs-gutter-y: 5rem;
}
/* BASIS (für beide Styles) */
.fwPrevCard {
  position: relative;
  transition: transform 0.3s ease;
}

.fwPrevCard__link {
  text-decoration: none !important;
  color: var(--cWhite) !important;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.fwPrevCardThumb {
  border-radius: var(--radius-lg);
  overflow: hidden;
  line-height: 0;
}

.fwPrevCardThumb img {
  width: 100%;
  height: auto;
  aspect-ratio: 1/1;
  object-fit: cover;
  object-position: center;
  transition: transform 0.5s ease;
}

.fwPrevCard:hover .fwPrevCardThumb img {
  transform: scale(1.05);
}

.newsTagsInCardWrapper {
  position: absolute;
  top: 0.75rem;
  left: 0.5rem;
  display: flex;
  z-index: 2;
  gap: 0;
}

/* STYLE: DEFAULT (Grafik 1) */
.fwPrevCard--default .fwCardBody {
  padding: 1.5rem 0;
}

.fwPrevCard--default .fwCardTitle {
  padding-top: 1rem;
}

.fwPrevCard--default .cardActions {
  margin-top: 1.5rem;
}

/* STYLE: BOXED (Grafik 2) */
.fwPrevCard--boxed {
  background-color: #1a1a1a; /* Dunkler Hintergrund */
  border-radius: var(--radius-lg);
  overflow: hidden;
  height: 100%;
}

.fwPrevCard--boxed .fwPrevCardThumb {
  border-radius: 0; /* Bild schließt oben bündig ab */
}

.fwPrevCard--boxed .fwPrevCardThumb--placeholder {
  width: 100%;
  aspect-ratio: 16/9;
  background-color: #333; /* Fallback Farbe */
}

.fwPrevCard--boxed .fwCardBody {
  padding: 1.25rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.fwPrevCard--boxed .fwCardTitle {
  margin-top: 0.9rem;
  flex-grow: 1; /* Schiebt CTA nach unten */
}

.fwPrevCard--boxed .cardActions {
  margin-top: 2rem;
}

/* Hover Effekt für die Box */
.fwPrevCard--boxed:hover {
  background-color: #252525;
}
.newsTagWrapper {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}
.newsTagsInCardWrapper .section_indicator__wrapper,
.newsTagWrapper .section_indicator__wrapper {
  margin-bottom: 1.5rem !important;
}
.newsTagsInCardWrapper .section_indicator,
.newsTagWrapper .section_indicator {
  padding: 0.15rem 0.25rem;
  font-size: 0.85rem;
}

.fwImageWrapper,
.newsCont .wp-block-image {
  border: 1px solid rgba(247, 242, 234, 0.45);
  border-radius: var(--radius-xl);
}

.singlePost__socMedWrapper a {
  display: inline-block;
  margin-right: 0.75rem;
}

.stickyNewsHeader {
  align-items: flex-start;
}
.stickyNewsHeader.row .stickyLeft,
.stickyNewsHeader.row .stickyRight {
  position: sticky;
  top: 160px;
  /* UNBEDINGT NÖTIG: */
  align-self: flex-start;
}
.nav-down .stickyNewsHeader.row .stickyLeft,
.nav-down .stickyNewsHeader.row .stickyRight {
  top: 120px;
}
.arrow_next_img {
  height: 1.5rem;
  width: auto;
}
.iconCta .icon_next_circle,
.iconCta .arrow_next_img {
  transition: transform 0.3s ease;
}
.iconCta .iconNextCirclePath {
  transition: fill 0.3s ease;
}
.iconCta:hover .icon_next_circle,
.iconCta:hover .arrow_next_img {
  transform: translateX(9px);
}
.iconCta:hover .iconNextCirclePath {
  fill: var(--cRed);
}

/* Der Container, der den Content hält */
.swup-transition-fade {
  transition: 0.2s cubic-bezier(0.4, 0, 0.2, 1); /* Typische "Material/Vue" Kurve */
  opacity: 1;
  transform: translateY(0);
  will-change: opacity, transform;
}

/* Zustand: Während die Seite ausgeblendet wird (is-leaving) */
html.is-animating .swup-transition-fade {
  opacity: 0;
  transform: translateY(10px); /* Leichter Slide-Down Effekt */
}

/* Zustand: Bevor die neue Seite eingeblendet wird */
html.is-rendering .swup-transition-fade {
  opacity: 0;
  transform: translateY(-10px); /* Kommt von oben rein für Dynamik */
}

/* Verhindert das "Springen" des Scrollbalkens während der Animation */
html.is-animating {
  cursor: wait;
  scroll-behavior: auto; /* Deaktiviert sanftes Scrollen während der Animation */
}

.has-hero-bg {
  min-height: 400px;
  background: url('https://fwback-wp.devbs.de/wp-content/uploads/hero_news_bg_archive.webp')
    no-repeat center center/cover;
}

/* * Movies
* --------------------------------------------- */
.tv_display__wrapper {
  position: relative;
  width: 100%;
  max-width: initial;
  height: auto;
}

.tv_display__background_image {
  width: 70%;
  height: 75%;
  position: absolute;
  top: 10%;
  left: 6%;
  object-fit: cover;
  opacity: 0;
  animation: fadeIn 1s ease-out 0s forwards;
}

.tv_display {
  position: relative;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  isolation: isolate;
}

.tv_display__video {
  width: 70%;
  height: 75%;
  position: absolute;
  top: 10%;
  left: 6%;
  object-fit: cover;
  z-index: -1;
  animation: fadeOut 1s ease-out 0s forwards;
}

.tv_display__image {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 3;
}

/* Slider/Archive Variant */
.archive_item__thumbnail_wrapper {
  position: relative;
  display: flex;
  justify-content: center;
}

.book .archive_item__thumbnail {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(1);
  width: auto;
  height: 100%;
  max-height: 80%;
  object-fit: cover;
  transition: 0.3s all ease;
}

.book .archive_item:hover .archive_item__thumbnail {
  transform: translate(-50%, -50%) scale(1.05);
}

.book .archive_item .archive_item__thumbnail_background {
  transition: 0.3s all ease;
  filter: brightness(1);
}

.book .archive_item:hover .archive_item__thumbnail_background {
  filter: brightness(1.25);
}

.archive_item .archive_item__icon {
  transition: 0.3s all ease;
  opacity: 1;
}

.archive_item:hover .archive_item__icon {
  opacity: 0;
}

.archive_item .archive_item__icon_wrapper {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.archive_item .archive_item__icon_wrapper::before {
  -webkit-mask-image: url('/wp-content/uploads/button-arrow-right-light.svg');
  mask-image: url('/wp-content/uploads/button-arrow-right-light.svg');
  background-color: var(--cAccent, var(--cRed));
  -webkit-mask-size: contain;
  mask-size: contain;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  background-image: none;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  content: '';
  display: block;
  width: 100.5%;
  height: 100.5%;
  position: absolute;
  top: 0;
  opacity: 0;
  left: 50%;
  transform: translateX(-50%);
  transition: 0.3s all ease;
  mask-position: center;
}

.archive_item:hover .archive_item__icon_wrapper::before {
  opacity: 1;
}

.tv_display__static_img_wrapper {
  width: 70%;
  height: 75%;
  position: absolute;
  top: 10%;
  left: 6%;
  opacity: 0;
  transition: 0.3s all ease;
}

.tv_display__static_img {
  position: absolute;
  width: 100%;
  object-fit: cover;
  height: 2rem;
  top: 0;
  left: 0;
  opacity: 0;
}

.tv_display__static_img.one {
  animation: staticBuzz 4s linear infinite;
}

.tv_display__static_img.two {
  animation: staticBuzz 3s linear 0.5s infinite;
}

@keyframes staticBuzz {
  0% {
    top: 0%;
    opacity: 0;
  }
  10% {
    opacity: 1;
  }
  90% {
    opacity: 1;
  }
  100% {
    top: calc(100% - 2rem);
    opacity: 0;
  }
}

.tv_display::after {
  content: '';
  position: absolute;
  bottom: -1rem;
  left: -20%;
  width: 140%;
  height: 15%;
  background: radial-gradient(
    circle at center,
    rgba(255, 255, 255, 0.15) 0%,
    rgba(255, 255, 255, 0) 100%
  );
  opacity: 0;
  z-index: 2;
}

@keyframes flicker {
  0% {
    opacity: 0;
  }
  10% {
    opacity: 1;
  }
  15% {
    opacity: 1;
  }
  42% {
    opacity: 1;
  }
  70% {
    opacity: 1;
  }
  71% {
    opacity: 0;
  }
  72% {
    opacity: 1;
  }
  90% {
    opacity: 1;
  }
  91% {
    opacity: 0;
  }
  92% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}

:is(.slider_item__thumbnail_wrapper, .archive_item__thumbnail_wrapper):hover
  .tv_display__static_img_wrapper,
.tv_display__wrapper.active .tv_display__static_img_wrapper {
  opacity: 1;
}

:is(.slider_item__thumbnail_wrapper, .archive_item__thumbnail_wrapper)
  .tv_display__wrapper {
  position: absolute;
  top: 17%;
  width: 80%;
  left: 10%;
  transition: 0.3s all ease;
  transform: scale(1);
}

:is(.slider_item__thumbnail_wrapper, .archive_item__thumbnail_wrapper):hover
  .tv_display__wrapper,
.tv_display__wrapper.active {
  transform: scale(1.05);
}

:is(.slider_item__thumbnail_wrapper, .archive_item__thumbnail_wrapper):hover
  .tv_display::after,
.tv_display__wrapper.active .tv_display::after {
  animation: flicker 2s ease infinite;
}

.archive_item__title_wrapper {
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

/* * Archives
* --------------------------------------------- */
.archive_items {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

@media (max-width: 576px) {
  .archive_items {
    grid-template-columns: repeat(auto-fit, minmax(150px, 2fr));
  }
}

/* * Global Hero Stylings
* --------------------------------------------- */
@media (max-width: 768px) {
  :is(.book_hero, .movie_hero, .game_hero) .section_indicator__wrapper {
    justify-content: center;
  }
}

/* * Global CPT Stylings
* --------------------------------------------- */
/* Hero */
@keyframes kenBurns {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(1.1);
  }
}

.book_hero__background_inner_wrapper {
  overflow: hidden;
  max-width: 100%;
}

.book_hero__background_img {
  max-width: 100%;
}

.book_hero__background_img img {
  animation: kenBurns 8s ease-in-out forwards;
  transform-origin: center;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Merch */
.block__image_link_slider .slider_title {
  text-align: center;
}

/* * CPT specific block stylings
* --------------------------------------------- */
.single-movie .block__text_image .block__image {
  max-width: 300px;
}

/* * Home Blob Layer
* --------------------------------------------- */
.home_blob_layer__wrapper {
  position: relative;
  isolation: isolate;
}

.home_blob_layer__wrapper .block__current_bestseller {
  position: relative;
  z-index: 1;
}

.home_blob_layer__wrapper .block__blob_animation {
  position: absolute;
  top: 15%;
  height: 100%;
  z-index: -1;
}

.home_blob_layer__wrapper .block__blob_animation > div {
  aspect-ratio: auto !important;
  height: 100%;
}

.home_blob_layer__wrapper .block__blob_animation img {
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.home_blob_layer__wrapper .block__image_link_slider {
  position: relative;
  z-index: 1;
}

/* * Home Shop Section
* --------------------------------------------- */
.shop_intro__wrapper.home {
  gap: 3rem;
  align-items: flex-end;
}

.home .shop_intro__left_col {
  max-width: 40%;
  flex-basis: 40%;
  position: relative;
  padding-bottom: 6rem;
}

.home .shop_intro__left_graphic {
  position: absolute;
  top: -7rem;
  right: -8rem;
  max-width: 40%;
  transition: 0.5s all ease;
  opacity: 0;
}

.shop_intro__wrapper.home.visible .shop_intro__left_graphic {
  opacity: 1;
}

.home .shop_intro__right_col {
  max-width: 60%;
  flex-basis: 60%;
  position: relative;
}

.home .shop_intro__right_graphic_1 {
  transform: translateY(3rem);
  transition: 0.5s all ease;
  opacity: 0;
  transition-delay: 0.1s;
}

.shop_intro__wrapper.home.visible .shop_intro__right_graphic_1 {
  opacity: 1;
  transform: translateY(0rem);
}

.home .shop_intro__right_graphic_2 {
  transform: translateY(0rem);
  opacity: 0;
  transition: 0.5s all ease;
  transition-delay: 0.2s;
}

.shop_intro__wrapper.home.visible .shop_intro__right_graphic_2 {
  opacity: 1;
  transform: translateY(-5rem);
}

.home_merch_slider > .container-fluid,
.home_merch_slider > .container-fluid > div {
  padding-top: 0rem !important;
}

@media (max-width: 1400px) {
  .home .shop_intro__left_col,
  .home .shop_intro__right_col {
    max-width: 50%;
    flex-basis: 50%;
  }
}

@media (max-width: 992px) {
  .shop_intro__wrapper.home {
    flex-wrap: wrap;
    flex-direction: column-reverse;
  }

  .home .shop_intro__left_col,
  .home .shop_intro__right_col {
    max-width: 100%;
    flex-basis: 100%;
  }

  .home .shop_intro__left_col {
    padding-bottom: 3rem;
  }

  .home .shop_intro__left_graphic {
    right: 0rem;
  }
}

/* * Footer
* --------------------------------------------- */
/* * Pre Footer Home ------------------ */
.pre_footer.home {
  margin-top: 3rem;
}

/* Background */
.pre_footer__background_wrapper {
  position: relative;
  width: 100%;
  height: auto;
  aspect-ratio: 1920/1281;
  overflow: hidden;
}

.pre_footer__background_wrapper img {
  filter: brightness(0.5);
  width: 100%;
  height: auto;
  object-fit: cover;
  opacity: 0;
  transform: scale(1.2);
}

.pre_footer__background_wrapper.visible img {
  animation: footerMoodFadeIn 5s ease forwards;
}

.pre_footer__gradient {
  position: absolute;
  top: 0;
}

.pre_footer__gradient.left {
  left: 0;
  width: 50%;
  height: 100%;
  background: linear-gradient(
    -90deg,
    rgba(0, 0, 0, 0) 0%,
    rgba(0, 0, 0, 0) 50%,
    rgba(0, 0, 0, 1) 100%
  );
}

.pre_footer__gradient.right {
  right: 0;
  width: 50%;
  height: 100%;
  background: linear-gradient(
    90deg,
    rgba(0, 0, 0, 0) 0%,
    rgba(0, 0, 0, 0) 50%,
    rgba(0, 0, 0, 1) 100%
  );
}

.pre_footer__gradient.top {
  width: 100%;
  top: 0;
  height: 50%;
  background: linear-gradient(
    0deg,
    rgba(0, 0, 0, 0) 0%,
    rgba(0, 0, 0, 0) 50%,
    rgba(0, 0, 0, 1) 100%
  );
}

/* Foreground */
.pre_footer__animation_wrapper {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}

.pre_footer__mood {
  position: absolute;
  height: auto;
  opacity: 0;
  transform: scale(1.2);
}

.pre_footer__mood.visible {
  animation: footerMoodFadeIn 2s ease forwards;
}

@keyframes footerMoodFadeIn {
  0% {
    opacity: 0;
    transform: scale(1.2);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}

.pre_footer__mood.one {
  top: 13%;
  left: 9%;
  width: 30%;
}

.pre_footer__mood.two {
  bottom: 11%;
  right: 18%;
  width: 32%;
  animation-delay: 0.5s;
}

.pre_footer__mood.three {
  left: 15%;
  bottom: 3%;
  width: 24%;
  animation-delay: 0.75s;
}

.pre_footer__mood.four {
  right: 17%;
  top: 7%;
  width: 25%;
  animation-delay: 0.5s;
}

.pre_footer__mood.five {
  right: 21%;
  top: 45%;
  width: 28%;
  animation-delay: 0.75s;
}

.pre_footer__mood.six {
  left: 5%;
  top: 29%;
  width: 43%;
  animation-delay: 0.25s;
}

#colophon .site-branding a img {
  max-width: 200px;
}

/* * Custom Lists
* --------------------------------------------- */
:is(.block__text_image, .law, .custom_list) ul {
  list-style: none;
}

:is(.block__text_image, .law, .custom_list) ul li {
  position: relative;
}

:is(.block__text_image, .law, .custom_list) ul li::before {
  content: '';
  position: absolute;
  top: 0.75rem;
  left: -2rem;
  width: 1rem;
  height: 2px;
  background: var(--cRed);
}

/* * Law
* --------------------------------------------- */
.law a {
  color: var(--cAccent, var(--cRed)) !important;
  word-break: break-all;
}

/* * Contact
* --------------------------------------------- */
.wpcf7-form
  :is(
    label,
    label > span,
    input[type='text'],
    input[type='email'],
    textarea,
    select
  ) {
  width: 100%;
}

.wpcf7-form label {
  margin-bottom: 0.5rem;
}

.wpcf7-form textarea {
  height: 150px;
}

.wpcf7-form :is(input[type='text'], input[type='email'], textarea, select) {
  color: var(--cWhite);
  background: transparent;
  border: 1px solid var(--cWhite);
  border-radius: var(--radius-md);
  padding: 0.5rem 1.25rem;
  line-height: 1.5;
}

.wpcf7-form select {
  color: var(--cBlack) !important;
  background: var(--cGrey) !important;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
}

.wpcf7-form span:has(select) {
  position: relative;
}

.wpcf7-form span:has(select)::after {
  content: '';
  position: absolute;
  right: 1.25rem;
  top: 0.5rem;
  width: 1rem;
  height: 0.75rem;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='21.098' height='11.963' viewBox='0 0 21.098 11.963'%3E%3Cpath id='Pfad_104632' data-name='Pfad 104632' d='M17565.723-19775.334l9.842-9.842,9.842,9.842' transform='translate(17586.113 -19774.627) rotate(180)' fill='none' stroke='%231f1e1e' stroke-width='2'/%3E%3C/svg%3E%0A");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}

.wpcf7-form ::placeholder {
  color: var(--cWhite) !important;
}

.wpcf7-form span:has(.dsgvo) .wpcf7-list-item {
  margin-left: 0;
  margin-block: 1rem;
}

.wpcf7-form span:has(.dsgvo) label {
  position: relative;
}

.wpcf7-form span:has(.dsgvo) label {
  position: relative;
  display: flex;
}

.wpcf7-form span:has(.dsgvo) label input {
  opacity: 0;
  margin-top: 0.3rem;
  max-width: 1.45rem;
  max-height: 1.45rem;
  min-width: 1.45rem;
  min-height: 1.45rem;
}

.wpcf7-form span:has(.dsgvo) label span {
  padding-left: 1rem;
}

.wpcf7-form span:has(.dsgvo) label::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 25px;
  height: 25px;
  cursor: pointer;
  border: 1px solid var(--cAccent, var(--cWhite));
  border-radius: 5px;
  pointer-events: none;
  display: flex;
  justify-content: center;
  align-items: center;
}

.wpcf7-form label:has(input[type='checkbox']:checked)::after {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke-width='1.5' stroke='%23ffffff' class='w-6 h-6 hidden'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' d='M4.5 12.75l6 6 9-13.5'%3E%3C/path%3E%3C/svg%3E");
  background-position: center;
  background-size: contain;
}

/* * Author Page
* --------------------------------------------- */
.newspaper__section_wrapper {
  height: 800px;
  position: relative;
  overflow: hidden;
}

.newspaper__item {
  position: absolute;
}

@keyframes eratic {
  0% {
    transform: translate(0, 0);
  }
  10% {
    transform: translate(-5px, 5px);
  }
  20% {
    transform: translate(5px, -5px);
  }
  30% {
    transform: translate(-5px, -5px);
  }
  70% {
    transform: translate(-5px, -5px);
  }
  80% {
    transform: translate(5px, 5px);
  }
  90% {
    transform: translate(-5px, -5px);
  }
  100% {
    transform: translate(0, 0);
  }
}

.newspaper__item.one {
  width: 60%;
  right: 20%;
  top: 0%;
  animation: eratic 8s steps(1) infinite;
  animation-delay: 0s;
}

.newspaper__item.two {
  width: 60%;
  left: 5%;
  bottom: 10%;
  animation: eratic 10s steps(1) infinite;
  animation-delay: 0.4s;
}

.newspaper__item.three {
  width: 40%;
  right: 5%;
  bottom: 20%;
  animation: eratic 5s steps(1) infinite;
  animation-delay: 0.8s;
}

@media (max-width: 768px) {
  .newspaper__section_wrapper {
    height: 225px;
  }
}

/* * Wipe Animation
* --------------------------------------------- */
.wipe_animation {
  position: absolute;
  z-index: 3;
  top: -10%;
  left: 0;
  width: 100%;
  height: 150%;
  pointer-events: none;
  overflow: hidden;
  transform: rotate(20deg);
}

.wipe {
  position: absolute;
  width: auto;
  height: 70%;
  left: 0;
}

.wipe img {
  width: auto;
  height: 100%;
  object-fit: cover;
}

.wipe__1 {
  top: -10%;
  clip-path: polygon(0 0, 100% 0, 100% 100%, 0% 100%);
}

.wipe__container.animated .wipe__1 {
  animation: wipe1 0.33s ease-out forwards;
  animation-delay: 0.33s;
}

.wipe__2 {
  top: 30%;
  clip-path: polygon(0 0, 100% 0, 100% 100%, 0% 100%);
}

.wipe__container.animated .wipe__2 {
  animation: wipe2 0.33s ease-out forwards;
  animation-delay: 0.66s;
}

.wipe__3 {
  bottom: -10%;
  clip-path: polygon(0 0, 100% 0, 100% 100%, 0% 100%);
}

.wipe__container.animated .wipe__3 {
  animation: wipe1 0.33s ease-out forwards;
  animation-delay: 0.99s;
}

@keyframes wipe1 {
  0% {
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0% 100%);
  }

  100% {
    clip-path: polygon(0 0, 0 0, 0 100%, 0% 100%);
  }
}

@keyframes wipe2 {
  0% {
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0% 100%);
  }

  100% {
    clip-path: polygon(100% 0, 100% 0, 100% 100%, 100% 100%);
  }
}

/* * Paginations
* --------------------------------------------- */
.slider_pagination__wrapper {
  display: flex;
  justify-content: center;
  gap: 0.25rem;
  margin-top: 1.5rem;
}

.swiper-pagination-bullet {
  width: 15px;
  height: 15px;
  border-radius: 50%;
  background: var(--cFont, var(--cGrey));
  border: none;
  padding: 0;
  cursor: pointer;
  transition: 0.3s all ease;
  opacity: 1;
}

.swiper-pagination-bullet.swiper-pagination-bullet-active {
  background: var(--cAccent, var(--cRed));
}

/* * Text Selection
* --------------------------------------------- */
/* Modern browsers */
::selection {
  background-color: var(
    --cAccent,
    var(--cRed)
  ); /* The highlight background color */
  color: var(--cFont, var(--cBlack)); /* The text color inside the highlight */
}

/* For older Safari versions (Optional but good for compatibility) */
::-moz-selection {
  background-color: var(--cAccent, var(--cRed));
  color: var(--cFont, var(--cBlack));
}

.theme_light .partner_wrapper {
  padding: 1rem;
  background: var(--cBlack);
  border-radius: var(--radius-lg);
  color: var(--cWhite);
}

/* * Waldbühne Teaser
* --------------------------------------------- */
.waldbuehne_teaser {
  display: grid;
  grid-template-columns: repeat(20, 1fr);
  align-items: start;
}

.wb_item_1 {
  grid-column: 1 / 11;
  grid-row: 1;
  z-index: 1;
  align-self: start;
}
.wb_item_2 {
  grid-column: 8 / 21;
  grid-row: 1;
  z-index: 2;
  margin-top: 15%;
}

@media (max-width: 1200px) {
  .wb_item_2 {
    margin-top: 30%;
  }
}

@media (max-width: 992px) {
  .waldbuehne_teaser {
    display: flex;
    flex-direction: column-reverse;
  }

  .wb_item_2 {
    margin-top: 0%;
    margin-bottom: -3rem;
    z-index: -1;
  }
}

/* * Zimmer Teaser
* --------------------------------------------- */
.zimmer_item_1 {
  transform: scale(1.15);
}

.zimmer_item_3 {
  position: absolute;
  z-index: -1;
  top: -3rem;
  left: -3rem;
  width: 100%;
}

@media (max-width: 992px) {
  .zimmer_item_1 {
    transform: scale(1);
  }

  .zimmer_item_3 {
    top: 0rem;
    left: 0;
    height: 100%;
    width: 100%;
  }

  .zimmer_item_3 img {
    height: 100%;
    width: 100%;
    object-fit: contain;
  }
}

/* * Thank You Modal
* --------------------------------------------- */
.thank_you__modal .modal-content {
  background-color: var(--cBackground, var(--cGreyDark));
  color: var(--cFont, var(--cWhite));
  border: 1px solid var(--cAccent, var(--cRed));
}

.thank_you__modal .modal-header {
  border: none;
}

.thank_you__modal .modal_logo {
  width: clamp(150px, 40vw, 250px);
  height: auto;
  margin: 0 auto;
}

.thank_you__modal .btn-close {
  filter: invert(100%);
}

/* * Lang
* --------------------------------------------- */
:is(#masthead, #site-navigation-mobile)
  :is(.trp-shortcode-switcher, .trp-language-switcher) {
  padding: 0;
  transform: translateY(0.2rem);
}

:is(#masthead, #site-navigation-mobile) .trp-language-item {
  padding: 0;
}

:is(#masthead, #site-navigation-mobile) .trp-language-item-name {
  font-family: 'Space Mono';
  font-style: normal;
  font-weight: var(--fw-700);
  font-size: 16px;
}

.theme_light :is(#masthead, #site-navigation-mobile) .trp-language-item-name {
  color: var(--cFont, var(--cBlack)) !important;
}

:is(#masthead, #site-navigation-mobile)
  .trp-language-item:hover
  .trp-language-item-name {
  color: var(--cAccent, var(--cRed)) !important;
}

.mobile_navigation .zimmer_logo__wrapper {
  transform: scale(1);
  opacity: 0;
}

.mobile_navigation.active .zimmer_logo__wrapper {
  transition: 1s all 0.6s ease;
  transform: scale(1.1);
  opacity: 1;
}

/* * Low Power Mode
* --------------------------------------------- */
.lower-power-notice__inner_wrapper {
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
