/* @font-face {
  font-family: "Lumios Marker";
  src: url("/wp-content/themes/flair/fonts/Lumios-Marker.woff2") format("woff2"),
    url("/wp-content/themes/flair/fonts/Lumios-Marker.woff") format("woff"),
    url("/wp-content/themes/flair/fonts/Lumios-Marker.ttf") format("truetype");
  font-weight: normal;
  font-style: italic;
  font-display: block;
} */

@font-face {
  font-family: "DIN Pro Bold";
  src: url("/wp-content/themes/flair/fonts/DINPro-Bold.woff2") format("woff2"),
    url("/wp-content/themes/flair/fonts/DINPro-Bold.woff") format("woff");
  font-weight: bold;
  font-style: normal;
  font-display: block;
}

@font-face {
  font-family: "DIN Pro Medium";
  src: url("/wp-content/themes/flair/fonts/DINPro-Medium.woff2") format("woff2"),
    url("/wp-content/themes/flair/fonts/DINPro-Medium.woff") format("woff");
  font-weight: 500;
  font-style: normal;
  font-display: block;
}

@font-face {
  font-family: "DIN Pro Regular";
  src: url("/wp-content/themes/flair/fonts/DINPro.woff2") format("woff2"),
    url("/wp-content/themes/flair/fonts/DINPro.woff") format("woff");
  font-weight: normal;
  font-style: normal;
  font-display: block;
}

:root {
  --color-primary: #fff !important;
  --color-secondary: #484b47 !important;
  --color-accent: #6cc247 !important;
  --color-accent-secondary: #33c2ba !important;

  --text-sm: 16px;
  --text-base: 18px;
  --text-md: 20px;
  --text-lg: 28px;
  --text-xl: 30px;
  --text-2xl: 40px;
  --text-3xl: 50px;
  --text-4xl: 60px;
  --text-5xl: 110px;
  --text-6xl: 150px;
  --text-7xl: 239px;
}

@media (width < 1920px) {
  :root {
    --text-sm: 16px;
    --text-base: 18px;
    --text-md: 20px;
    --text-lg: 20px;
    --text-xl: 25px;
    --text-2xl: 35px;
    --text-3xl: 45px;
    --text-4xl: 60px;
    --text-5xl: 90px;
    --text-6xl: 125px;
    --text-7xl: 175px;
  }
}
@media (width < 1024px) {
  :root {
    --text-base: 16px;
    --text-md: 16px;
    --text-lg: 20px;
    --text-xl: 20px;
    --text-2xl: 30px;
    --text-3xl: 40px;
    --text-5xl: 60px;
    --text-6xl: 50px;
    --text-7xl: 80px;
  }
}

.text-sm {
  font-size: var(--text-sm) !important;
}
.text-base {
  font-size: var(--text-base) !important;
}
.text-md {
  font-size: var(--text-md) !important;
}
.text-lg {
  font-size: var(--text-lg) !important;
}
.text-xl {
  font-size: var(--text-xl) !important;
}
.text-2xl {
  font-size: var(--text-2xl) !important;
}
.text-3xl {
  font-size: var(--text-3xl) !important;
}
.text-4xl {
  font-size: var(--text-4xl) !important;
}
.text-5xl {
  font-size: var(--text-5xl) !important;
}
.text-6xl {
  font-size: var(--text-6xl) !important;
}
.text-7xl {
  font-size: var(--text-7xl) !important;
}

.text-white {
  color: var(--color-primary) !important;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  scroll-behavior: smooth;
  transition: all 0.35s ease;
  color: var(--color-secondary) !important;
}

html,
body {
  font-size: 18px !important;
  margin-top: 0 !important;
  font-family: "DIN Pro Regular";
  position: relative;
}

.lumios {
  font-family: "lumios-marker", sans-serif;
  font-weight: 400;
  font-style: normal;
}
/* .lumios {
  font-family: "Lumios Marker" !important;
} */

.container {
  padding: 1rem;
}

.boxed {
  max-width: 1640px;
  margin: 0 auto;
}

.fade-in-up {
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.5s ease-in-out;
}

.fade-in-up.delay,
.fade-in.delay {
  transition-delay: 750ms;
}

.fade-in-up.visible {
  opacity: 1;
  transform: translateY(0);
}

.fade-in {
  opacity: 0;
  transition: all 0.5s ease-in-out;
}

.fade-in.visible {
  opacity: 1;
}

/* TYPOGRAPHY */
h1,
h2,
h3,
h4,
h5 {
  text-transform: none;
}

h3 {
  line-height: var(--text-4xl) !important;
}

.bold {
  font-family: "DIN Pro Bold" !important;
}

.medium {
  font-family: "DIN Pro Medium" !important;
}

i[class*="fa-light"] {
  font-family: "Font Awesome 7 Pro";
  font-weight: 300;
}

i[class*="fa-brands"] {
  font-family: "Font Awesome 7 Brands";
  font-weight: 400;
}

a:hover {
  opacity: 1 !important;
}

/* GENERAL ELEMENTS */
button.regular {
  margin-top: 2rem !important;
  padding-top: 0.5rem !important;
  padding-bottom: 0.5rem !important;
  padding-left: 2rem !important;
  padding-right: 2rem !important;
  background-image: linear-gradient(
    to bottom right,
    var(--color-accent-secondary),
    var(--color-accent)
  ) !important;
  border-radius: 9999px !important;
  border: none !important;
  outline: none !important;
  color: var(--color-primary) !important;
  font-weight: 700 !important;
  cursor: pointer !important;
}

button:hover {
  background-image: linear-gradient(
    to bottom right,
    var(--color-accent-secondary),
    var(--color-accent)
  );
  color: var(--color-primary);
  box-shadow: none;
  filter: none;
  opacity: 1;
}

button::before,
button::after {
  content: none !important;
  display: none !important;
}

button.white {
  margin-top: 2rem !important;
  padding-top: 0.5rem !important;
  padding-bottom: 0.5rem !important;
  padding-left: 2rem !important;
  padding-right: 2rem !important;
  background: var(--color-primary) !important;
  color: var(--color-secondary) !important;
  box-shadow: 0 0 6px #e2ffd6;
  background-image: none !important;
  border-radius: 9999px !important;
  border: none !important;
  outline: none !important;
  font-weight: 700 !important;
  cursor: pointer !important;
}

button.white:hover {
  background: var(--color-primary) !important;
  color: var(--color-secondary) !important;
  box-shadow: 0 0 6px #e2ffd6 !important;
}

#events .swiper-slide,
#all-shops .swiper-slide {
  transition: all 0.5s ease;
}

/* HEADER */
#teaser-heart {
  transform: scale(150%);
}
#mobile-nav {
  width: 100px;
  background: #e3e3e39a;
  position: fixed;
  bottom: 25%;
  right: 2rem;
  z-index: 9999;
  backdrop-filter: blur(1rem);
}

/* TEASER  */
#teaser {
  overflow-x: clip;
  height: 75vh;
}

#teaser article h2 {
  font-family: "lumios-marker", sans-serif !important;
  font-size: var(--text-5xl);
}

#teaser article p {
  font-size: var(--text-xl);
  font-weight: 500;
  margin-top: 0 !important;
  margin-bottom: 0.5rem !important;
}

#teaser .liveticker {
  background: var(--color-accent) !important;
}

#teaser .liveticker,
#teaser #statusText {
  color: var(--color-primary) !important;
}

/* @media (width > 3000px) {
  #teaser #teaser-heart {
    transform: scale(125%);
  }
} */

/* EVENTS */
#events .swiper {
  height: 55vh !important;
}

#events .swiper .swiper-wrapper {
  height: 85%;
}

#events .swiper .swiper-slide,
#events .no-post {
  background: var(--color-primary);
  border: 1px solid var(--color-secondary);
  height: 90%;
  z-index: 10;
}

#events .swiper .swiper-slide img {
  width: 100%;
  object-fit: cover;
}

#events .swiper .swiper-pagination {
  display: flex;
  justify-content: start;
}

#events .swiper .swiper-pagination {
  height: 15%;
}

#events .swiper .swiper-pagination .swiper-pagination-bullet {
  background: var(--color-secondary);
}

#events .event-text i {
  color: var(--color-primary) !important;
}

/* ALL SHOPS */
#all-shops .frame {
  background: linear-gradient(
    to right,
    var(--color-accent-secondary),
    var(--color-accent)
  );
  margin: 0;
  padding: 1rem;
  transform: translateX(-7.5%);
}

#all-shops .inner-container {
  background: var(--color-primary);
}

#all-shops .swiper {
  height: 35vh !important;
}

#all-shops .swiper .swiper-wrapper {
  height: 85%;
}

#all-shops .swiper .swiper-slide,
#all-shops .no-post {
  background: var(--color-primary);
  border: 1px solid var(--color-secondary);
  z-index: 10;
}

#all-shops .swiper .swiper-slide img {
  height: 80px;
  object-fit: contain;
}

#all-shops .swiper .swiper-pagination {
  display: flex;
  justify-content: start;
  align-items: flex-end;
  height: 15%;
}

.swiper-horizontal > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic,
.swiper-pagination-horizontal.swiper-pagination-bullets.swiper-pagination-bullets-dynamic {
  left: 0 !important;
  transform: translateX(0) !important;
}

#all-shops .swiper .swiper-pagination .swiper-pagination-bullet {
  background: var(--color-secondary);
  aspect-ratio: 1 / 1;
}

/* FOODCORNER */
#foodcorner .article-box {
  height: 70vh;
  border-top: 5px solid var(--color-accent);
  border-left: 5px solid var(--color-accent);
  border-bottom: 5px solid var(--color-accent);
}

#foodcorner img {
  height: 65vh;
  width: 55vw;
  transform: translateY(-25%);
}

#foodcorner h2 {
  color: var(--color-accent) !important;
}

/* AKTIONEN */
#aktionen {
  background: linear-gradient(
    to right,
    var(--color-accent-secondary),
    var(--color-accent)
  );
}

#aktionen .swiper {
  height: 90vh;
}

#aktionen .swiper .swiper-slide {
  background: var(--color-primary);
  border: 1px solid var(--color-secondary);
}

#aktionen .swiper-slide img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}

@keyframes wink {
  0% {
    transform: rotate(0deg) translateY(0px);
  }
  20% {
    transform: rotate(-12deg) translateY(-2px);
  }
  40% {
    transform: rotate(0deg) translateY(0px);
  }
  60% {
    transform: rotate(-12deg) translateY(-2px);
  }
  80% {
    transform: rotate(0deg) translateY(0px);
  }
  100% {
    transform: rotate(0deg) translateY(0px);
  }
}

#aktionen .flairy-arm {
  transform-origin: bottom left;
}

#aktionen .flairy-arm.wink {
  animation: wink 1s ease-in-out forwards;
}

/* HIGHLIGHTS */
#highlights span h2 {
  color: var(--color-accent) !important;
}

#highlights .grid-item {
  background: #e3e3e328;
  border: 1px solid #e3e3e3;
}

#highlights i:not(i.fa-plus) {
  color: var(--color-accent) !important;
}

/* MEET FLAIRY */
#meet-flairy .speech-bubble-text * {
  z-index: 99;
  position: relative;
}

#meet-flairy .speech-bubble-text h3 {
  color: var(--color-accent) !important;
}

#meet-flairy .speech-bubble-text p {
  color: var(--color-accent) !important;
}

/* SOCIAL MEDIA */
#social-media .store-img {
  max-height: 100vh;
  width: 40vw;
  border-radius: var(--text-3xl);
  z-index: 99;
}

#social-media article::before {
  content: "";
  position: absolute;
  top: -10%;
  left: -10%;
  height: 115%;
  width: 150%;
  border: 5px solid var(--color-accent);
  border-radius: 50px;
  z-index: -1;
}

#social-media #social-media-box {
  background: linear-gradient(
    to bottom right,
    var(--color-accent-secondary),
    var(--color-accent)
  );
  border-radius: 50px;
}

#social-media #social-media-box i {
  font-size: 88px;
}

#social-media #social-media-box * {
  color: var(--color-primary) !important;
}

/* FOOTER */
footer {
  padding: 0 !important;
}

footer .footer-box {
  border: 1px solid #707070;
  background: var(--color-primary);
  border-radius: 0.75rem;
}

footer .footer-follow {
  border-top: 1px solid #e3e3e3;
  border-bottom: 0;
  border-left: 0;
  border-right: 0;
}

footer .footer-box a {
  margin: 0.5rem 0;
}

footer .footer-bottom {
  background: linear-gradient(
    to bottom right,
    var(--color-accent-secondary),
    var(--color-accent)
  );
  color: var(--color-primary) !important;
}

footer .footer-bottom .line {
  background: var(--color-primary);
  height: 1px;
  width: 100px;
  margin: 0 1rem;
}

footer .footer-bottom * {
  color: var(--color-primary) !important;
}

/* SHOP OVERVIEW */
#shop-overview #teaser-image {
  height: 65vh !important;
  width: 100%;
}

#shop-overview .thumbnail.placeholder-thumb {
  width: 100%;
  aspect-ratio: 4 / 3;
  background: rgb(235, 235, 235);
  display: block;
}

#shop-overview #shop-overview-intro {
  background: linear-gradient(
    to right,
    var(--color-accent-secondary),
    var(--color-accent)
  );
}

#shop-overview #shop-overview-intro * {
  color: var(--color-primary) !important;
}

.filter-btn.active {
  font-weight: bold;
}

.filter-btn::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -0.25rem;
  height: 2px;
  background: var(--color-primary);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.25s ease-in-out;
  border-radius: 1rem;
}

.filter-btn.active::after {
  transform: scaleX(1);
}

#shop-overview .fluid-grid {
  grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
}

#shop-overview .fluid-grid .grid-item {
  background: var(--color-primary);
  border: 1px solid #707070;
}

#shop-overview .fluid-grid .grid-item .thumbnail {
  width: 100%;
  height: 25vh;
  object-fit: cover;
}

#shop-overview .fluid-grid .grid-item .logo {
  max-height: 65px;
  max-width: 100px;
}

.shop-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.75);
  z-index: 9999;
  padding: 40px;
  backdrop-filter: blur(0.5rem);
}

.shop-popup {
  background: #fff;
  width: 90%;
  max-width: 65vw;
  max-height: 90vh;
  overflow-y: auto;
  border-radius: 16px;
  position: relative;
  padding: 2rem;
  margin: 0 auto;
}

.popup-image {
  max-height: 50vh !important;
  width: 100%;
  object-fit: cover;
}

.popup-sidebar {
  background: linear-gradient(
    to bottom right,
    var(--color-accent-secondary),
    var(--color-accent)
  );
}

.popup-sidebar * {
  color: var(--color-primary) !important;
}

.popup-sidebar a {
  text-decoration: none;
}

.popup-close {
  cursor: pointer;
  background: var(--color-primary);
}

/* PAGE OPENING HOURS */
#opening-hours #opening-hours-intro {
  background: linear-gradient(
    to right,
    var(--color-accent-secondary),
    var(--color-accent)
  );
}

#opening-hours #opening-hours-intro * {
  color: var(--color-primary) !important;
}

#opening-hours #opening-hours-intro .liveticker {
  font-size: var(--text-lg) !important;
  text-align: center;
}

#opening-hours .fluid-grid {
  grid-template-columns: repeat(auto-fill, minmax(450px, 1fr));
}

#opening-hours .fluid-grid .grid-item {
  background: var(--color-primary);
  border: 1px solid #707070;
}

/* PAGE LAGEPLAN */
#shop-map-page .shop-maps__floor-navigation {
  position: static !important;
}

#shop-map-page .shop-maps__floor-navigation span a {
  flex: 1 1 0;
  color: var(--color-secondary) !important;
  border: 1px solid var(--color-secondary);
  border-radius: 10px;
  background: var(--color-primary);
}

#shop-map-page .shop-maps__floor-navigation span a.is--active {
  color: var(--color-primary) !important;
  border: 1px solid var(--color-accent) !important;
  background: linear-gradient(
    to right,
    var(--color-accent-secondary),
    var(--color-accent)
  );
}

#shop-map-page .shop-maps__item svg .is--active {
  fill: rgba(108, 194, 71, 0.35);
}

#shop-map-page .category-wrapper {
  background: linear-gradient(
    to right,
    var(--color-accent-secondary),
    var(--color-accent)
  );
}

#shop-map-page .inner-category-wrapper {
  background: var(--color-primary);
}

#shop-map-page .inner-category-wrapper .map-trigger__item.is--link:hover *,
#shop-map-page .map-trigger__item.is--active * {
  color: var(--color-accent) !important;
}

/* PRESS PAGE */
#shop-overview .accordion-item {
  background: var(--color-primary);
  border: 1px solid #707070;
}

#shop-overview .accordion-item h2 {
  font-size: var(--text-xl);
  font-family: "DIN Pro Bold";
}

#shop-overview .accordion-item ul {
  list-style: circle;
  padding-inline-start: 1rem;
}

#shop-overview .accordion-item img {
  border-radius: 10px;
  max-width: 50%;
  object-fit: contain;
}

/******************
*******************
NEW MODULES STUFF
*******************
******************/
.page-template-page-modules-dev main a.button {
  margin-bottom: 2rem;
}

.page-template-page-modules-dev main b {
  font-family: "DIN Pro Bold";
  font-weight: unset;
}

.page-template-page-modules-dev main img,
.page-template-page-kontakt-dev main img {
  border-radius: var(--text-xl);
}

.page-template-page-modules-dev a.button {
  margin-top: 1.5rem !important;
  padding-top: 0.5rem !important;
  padding-bottom: 0.5rem !important;
  padding-left: 2rem !important;
  padding-right: 2rem !important;
  background-image: linear-gradient(
    to bottom right,
    var(--color-accent-secondary),
    var(--color-accent)
  ) !important;
  border-radius: 9999px !important;
  border: none !important;
  outline: none !important;
  color: var(--color-primary) !important;
  font-weight: 700 !important;
  cursor: pointer !important;
}

.page-template-page-modules-dev a.button:hover {
  background-image: linear-gradient(
    to bottom right,
    var(--color-accent-secondary),
    var(--color-accent)
  );
  color: var(--color-primary);
  box-shadow: none;
  filter: none;
  opacity: 1;
}

.page-template-page-modules-dev a.button::before,
.page-template-page-modules-dev a.button::after {
  content: none !important;
  display: none !important;
}

/* key facts */
.page-template-page-modules-dev .module__key-facts .key-fact__number {
  color: var(--color-accent) !important;
  font-family: "DIN Pro Bold";
}

.page-template-page-modules-dev .module__key-facts .key-fact__title {
  font-size: var(--text-sm);
}

/* 1 col */
.page-template-page-modules-dev .module__one-column .content-container {
  width: 85%;
  margin: 0 auto;
}

.page-template-page-modules-dev .module__one-column h2 {
  font-size: var(--text-4xl);
}

/* 2 cols */
.page-template-page-modules-dev .module__two-columns h2 {
  font-size: var(--text-2xl);
  text-transform: inherit !important;
  font-family: "DIN Pro Bold";
}

.page-template-page-modules-dev .module__two-columns h3.subline b {
  color: var(--color-accent) !important;
}

.page-template-page-modules-dev .module__two-columns .col-12.col-md-6 p img {
  margin-bottom: 2rem;
}

/* contactform */
.module--contactform .wrapper {
  background: linear-gradient(
    to right,
    var(--color-accent-secondary),
    var(--color-accent)
  );
  padding: 0.5rem;
}
.module--contactform .wrapper .inner-container {
  background: var(--color-primary);
  padding: 3rem 2rem;
}

.module--contactform .wrapper .inner-container textarea {
  padding: 1rem;
}

.module--contactform .wrapper .inner-container select {
  padding: 0 1rem;
}

.module--contactform .wrapper .inner-container input[type="submit"] {
  padding-top: 0.5rem !important;
  padding-bottom: 0.5rem !important;
  padding-left: 1rem !important;
  padding-right: 1rem !important;
  background-image: linear-gradient(
    to bottom right,
    var(--color-accent-secondary),
    var(--color-accent)
  ) !important;
  border-radius: 9999px !important;
  border: none !important;
  outline: none !important;
  color: var(--color-primary) !important;
  font-weight: 700 !important;
  cursor: pointer !important;
}

/* RESPONSIVENESS */
@media (width < 1024px) {
  body,
  html {
    overflow-x: clip !important;
  }

  /* HEADER */
  #mobile-nav {
    width: max-content;
    gap: 1rem;
    position: fixed;
    bottom: 3.5%;
    right: 50%;
    transform: translateX(50%);
  }

  /* TEASER */
  #teaser {
    height: 110vh;
  }
  /* EVENTS */
  #events .swiper {
    height: 40vh !important;
  }

  #events .swiper .swiper-wrapper {
    height: 95%;
  }

  #events .swiper .swiper-pagination {
    height: 5%;
  }

  #events .swiper .swiper-slide img {
    object-fit: contain;
  }

  #events .swiper .swiper-pagination {
    justify-content: center;
  }

  #events .swiper .swiper-pagination .swiper-pagination-bullet {
    background: var(--color-primary);
    opacity: 1;
  }

  #events .swiper .swiper-pagination .swiper-pagination-bullet-active {
    background: var(--color-secondary);
  }

  #events .event-text i {
    display: none;
  }

  /* ALL SHOPS */
  #all-shops .frame {
    padding: 1rem 0;
    transform: translateX(0%);
  }

  #all-shops .swiper {
    height: 35vh !important;
  }

  #all-shops .swiper .swiper-wrapper {
    height: 85%;
  }

  #all-shops .swiper .swiper-slide img {
    height: 80px;
    object-fit: contain;
  }

  .swiper-horizontal > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic,
  .swiper-pagination-horizontal.swiper-pagination-bullets.swiper-pagination-bullets-dynamic {
    left: 50% !important;
    transform: translateX(-50%) !important;
  }

  /* FOODCORNER */
  #foodcorner .article-box {
    height: 85vh;
    padding-top: 1%;
  }

  #foodcorner img {
    height: 40vh;
    width: 95vw;
    transform: translateY(-15%);
  }

  #foodcorner .article-box p {
    font-size: var(--text-xl);
  }

  #foodcorner h2 {
    color: var(--color-accent) !important;
  }

  /* AKTIONEN */
  #aktionen .swiper {
    height: 45vh;
  }

  #aktionen .swiper .swiper-wrapper {
    height: 90%;
  }

  #aktionen
    .swiper
    .swiper-pagination
    .swiper-pagination-bullet.swiper-pagination-bullet-active {
    background: var(--color-secondary);
  }

  #aktionen .swiper .swiper-pagination .swiper-pagination-bullet {
    background: var(--color-primary);
    opacity: 1;
  }

  /* HIGHLIGHTS */
  #highlights #service-accordion .accordion-content {
    max-height: 0vh;
    overflow: hidden;
  }

  #highlights #service-accordion .accordion-content.open {
    max-height: 50vh;
  }

  #highlights #service-accordion .plus-icon.rotate {
    transform: rotate(45deg) !important;
  }

  /* SOCIAL MEDIA */
  #social-media .store-img {
    max-height: 100vh;
    width: 100vw;
    border-radius: var(--text-3xl);
    z-index: 99;
  }

  #social-media img {
    height: 65vh;
    width: 100vw;
    border-radius: var(--text-3xl);
  }

  #social-media article::before {
    height: 125%;
    width: 100%;
    top: -15%;
    left: 0%;
  }

  #social-media #social-media-box i {
    font-size: 55px;
  }

  /* SHOP OVERVIEW */
  .shop-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.75);
    z-index: 9999;
    padding: 1rem;
  }

  .shop-popup {
    width: 100%;
    max-width: 100vw;
    padding: 1rem;
  }

  .popup-image {
    height: 35vh !important;
  }

  /* FOOTER */
  footer .footer-box a {
    text-align: left !important;
    margin: 0.5rem 0;
  }

  /* SHOP MAPS PAGE */
  #shop-map-page .shop-maps__item.is--active {
    padding-top: 0;
  }

  /* OPENING HOURS PAGE */
  #opening-hours .fluid-grid {
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  }

  /******************
  *******************
  NEW MODULES STUFF
  *******************
  ******************/
  .page-template-page-modules-dev .module__one-column .content-container {
    width: 100%;
  }

  /* key facts */
  .page-template-page-modules-dev .module__key-facts .key-fact {
    margin: 1rem 0;
  }

  /* 2 cols */
  .page-template-page-modules-dev .module__two-columns .content-container {
    gap: 2rem;
  }

  .page-template-page-modules-dev
    .module__two-columns
    .content-container:nth-child(even) {
    flex-direction: column-reverse !important;
  }

  /* contactperson */
  .page-template-page-modules-dev .module--contactpersons .row.vertical-align {
    gap: 2rem;
  }
}
