@charset "UTF-8";
/* Config */
.overflow-x-hidden {
  overflow-x: hidden;
}

.bg-mint {
  background-color: #c8f2e0;
}

/* Modules */
:root {
  --starColor: #a9936f;
}

.star-rating {
  display: flex;
  align-items: center;
  column-gap: 4px;
  color: var(--starColor);
}
.star-rating svg {
  width: 12px;
  height: 11px;
}

:root {
  --buttonBgColor: #a9936f;
  --buttonFgColor: white;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  column-gap: 8px;
  padding: 14px 32px;
  background-color: var(--buttonBgColor);
  border-radius: 30px;
  color: var(--buttonFgColor);
  font-size: 16px;
  line-height: 20px;
  transition: box-shadow 0.25s ease, transform 0.25s ease;
}
.button::after {
  content: "→";
  transition: transform 0.25s ease;
}
.button:hover {
  box-shadow: 0 8px 11px rgba(0, 0, 0, 0.2);
}
.button:active {
  transform: translateY(2px);
}
.button:focus, .button:focus-within {
  outline-color: #5eb1ff;
  outline-offset: 2px;
}
.button.disabled, .button:disabled, .button[disabled] {
  opacity: 0.4;
}
.button--white {
  --buttonBgColor: white;
  --buttonFgColor: #001f23;
}
.button--leading-icon::after {
  display: none;
}
.button--icon-only {
  width: 60px;
  height: 60px;
  padding: 0;
  border-radius: 100%;
}
.button--icon-only::after {
  display: none;
}
.button--med {
  padding-block: 10px;
}
.button--lime {
  --buttonBgColor: #bbfd00;
  --buttonFgColor: #004941;
}

/* Layout */
body:not(.intro-video-complete) {
  overflow: hidden;
}

body:not(.intro-video-complete) [data-arrow] {
  z-index: 1;
}

:root {
  --hospitalityPanelHeight: 27px;
  --headerHeight: 70px;
}

@media (max-width: 680px) {
  header {
    position: relative;
  }
  header::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--color-green);
    z-index: -1;
  }
}
body:not(.intro-video-complete) header {
  z-index: 1;
}
body.intro-video-complete header {
  opacity: 1 !important;
}

@media (max-width: 680px) {
  div[data-hospitality-panel] {
    position: relative;
    z-index: 51;
  }
  body:not(.intro-video-complete) div[data-hospitality-panel] {
    z-index: 1;
  }
}
@media (min-width: 769px) {
  div[data-hospitality-panel] .hidden.sm\:block {
    display: block;
  }
}
body.intro-video-complete div[data-hospitality-panel] > div {
  opacity: 1 !important;
}

.site-header-main-nav {
  display: flex;
  align-items: center;
  column-gap: 30px;
}
@media (max-width: 680px) {
  .site-header-main-nav {
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: calc(100vh - var(--hospitalityPanelHeight) - var(--headerHeight));
    height: calc(100dvh - var(--hospitalityPanelHeight) - var(--headerHeight));
    transform: translateY(-100%);
    flex-direction: column;
    align-items: flex-start;
    row-gap: 12px;
    padding: 16px;
    background-color: #f6f6f7;
    color: #000;
    z-index: -2;
    overflow: auto;
    transition: transform 0.25s ease;
  }
  .site-header-main-nav.active {
    transform: translateY(0) translateY(var(--headerHeight)) translateY(var(--hospitalityPanelHeight));
  }
}
.site-header-main-nav li {
  position: static;
  font-size: 14px;
  text-transform: uppercase;
}
@media (max-width: 680px) {
  .site-header-main-nav li {
    width: 100%;
  }
}
.site-header-main-nav li:hover .site-header-main-nav-dropdown {
  opacity: 1;
  visibility: visible;
}

.site-header-main-nav-dropdown {
  width: 100%;
  position: absolute;
  bottom: 0;
  left: 0;
  transform: translateY(100%);
  padding-block: 32px;
  background-color: #f6f6f7;
  color: #000;
  border-top: 1px solid #c8f2e0;
  border-bottom: 1px solid #c8f2e0;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.25s ease, visibility 0.25s ease;
}
.site-header-main-nav-dropdown::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 32px;
  top: 0;
  transform: translateY(-100%) translateY(-2px);
}
@media (max-width: 680px) {
  .site-header-main-nav-dropdown::before {
    display: none;
  }
}
@media (max-width: 680px) {
  .site-header-main-nav-dropdown {
    position: relative;
    width: 100%;
    bottom: unset;
    left: unset;
    transform: translateY(0);
    padding-block: 16px;
    border: none;
    opacity: 1;
    visibility: visible;
  }
}

.site-header-main-nav-dropdown-inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  column-gap: 32px;
}
@media (max-width: 680px) {
  .site-header-main-nav-dropdown-inner {
    grid-template-columns: auto;
    row-gap: 16px;
  }
}

.site-header-main-nav-dropdown-column {
  display: flex;
  flex-direction: column;
  row-gap: 16px;
}
@media (max-width: 680px) {
  .site-header-main-nav-dropdown-column {
    padding-bottom: 8px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.2);
  }
}
.site-header-main-nav-dropdown-column p {
  font-size: 12px;
  text-transform: uppercase;
}
.site-header-main-nav-dropdown-column ul {
  display: flex;
  flex-direction: column;
  row-gap: 16px;
}
.site-header-main-nav-dropdown-column ul li {
  font-size: 16px;
  line-height: 28px;
  text-transform: none;
}
.site-header-main-nav-dropdown-column ul li a {
  text-decoration: underline transparent;
  text-decoration-thickness: 1px;
  text-underline-offset: 2px;
  transition: text-decoration-color 0.25s ease;
}
.site-header-main-nav-dropdown-column ul li a:hover {
  text-decoration-color: inherit;
}

/* Hamburger */
.mobile-hamburger {
  position: relative;
  display: none;
  margin: 0;
  box-sizing: content-box;
  width: 24px;
  height: 24px;
  border: none;
  background: none;
  outline: none;
  border: none;
  cursor: pointer;
}
@media (max-width: 680px) {
  .mobile-hamburger {
    display: block;
  }
}
.mobile-hamburger > .mobile-hamburger--inner {
  position: absolute;
  width: 24px;
  height: 2px;
  margin-top: -2px;
  transition-property: transform;
  transition-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  transition-duration: 0.1s;
  background: white;
  top: 50%;
  left: 0;
}
.mobile-hamburger > .mobile-hamburger--inner:before, .mobile-hamburger > .mobile-hamburger--inner:after {
  content: "";
  display: block;
  position: absolute;
  width: 24px;
  height: 2px;
  transition-timing-function: ease;
  transition-duration: 0.15s;
  transition-property: transform;
  background: white;
  transform-origin: 50% 50%;
}
.mobile-hamburger > .mobile-hamburger--inner:before {
  transition: top 0.1s ease 0.14s, opacity 0.1s ease;
  top: -9px;
}
.mobile-hamburger > .mobile-hamburger--inner:after {
  transition: bottom 0.1s ease 0.14s, transform 0.1s cubic-bezier(0.55, 0.055, 0.675, 0.19);
  bottom: -9px;
}
.mobile-hamburger.active > .mobile-hamburger--inner {
  transition-delay: 0.14s;
  transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  transform: rotate(45deg);
}
.mobile-hamburger.active > .mobile-hamburger--inner:before {
  top: 0;
  transition: top 0.1s ease, opacity 0.1s ease 0.14s;
  opacity: 0;
}
.mobile-hamburger.active > .mobile-hamburger--inner:after {
  bottom: 0;
  transition: bottom 0.1s ease, transform 0.1s cubic-bezier(0.215, 0.61, 0.355, 1) 0.14s;
  transform: rotate(-90deg);
}

/* Blocks */
.seat-type-accordion {
  --iconColor: #a9936f;
  display: block;
  width: 100%;
  overflow: hidden;
}
.seat-type-accordion--off-white {
  background-color: #f6f6f7;
}
.seat-type-accordion--black {
  background-color: #000;
  color: white;
}
.seat-type-accordion--gold {
  --iconColor: #000;
  --starColor: white;
  background-color: #a9936f;
}
.seat-type-accordion--light-grey {
  --iconColor: #000;
  background-color: #e7e8ea;
}
.seat-type-accordion--accent-green {
  --iconColor: #008b48;
  --starColor: #008b48;
  --buttonBgColor: #008b48;
}
.seat-type-accordion--green {
  --iconColor: white;
  --starColor: white;
  --buttonBgColor: white;
  --buttonFgColor: #008b48;
  background-color: #008b48;
  color: white;
}
.seat-type-accordion--mint {
  background-color: #d7ece6;
}

.seat-type-accordion-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  column-gap: 24px;
  padding: clamp(1.25rem, 0.9314rem + 1.3072vw, 2.5rem) clamp(1rem, -1.9314rem + 12.0261vw, 12.5rem); /* (20, 40) (16, 200) */
  cursor: pointer;
}

.seat-type-accordion-heading__content h2 {
  margin: 16px 0 8px;
  font-size: clamp(1.5rem, 1.1176rem + 1.5686vw, 3rem);
  line-height: clamp(1.625rem, 1.2108rem + 1.6993vw, 3.25rem);
  font-weight: bold;
}

.seat-type-accordion-heading__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border: 1px solid var(--iconColor);
  border-radius: 100%;
  font-size: 0;
  transition: transform 0.25s ease;
}
.seat-type-accordion-heading__icon::before {
  content: "→";
  color: var(--iconColor);
  transform: rotate(90deg) translateY(1px);
  font-size: 16px;
}
.seat-type-accordion.active .seat-type-accordion-heading__icon {
  transform: rotate(180deg);
}

.seat-type-accordion-content {
  position: relative;
  display: none;
  flex-direction: column;
  row-gap: clamp(4rem, 3.4265rem + 2.3529vw, 6.25rem); /* (64, 100) */
  padding-bottom: clamp(4rem, 3.4265rem + 2.3529vw, 6.25rem); /* (64, 100) */
  background-image: url(/media/uhad4qqr/german-flag-colours-graphic-short.png);
  background-position: left 40vw;
  background-size: 25% auto;
  background-repeat: no-repeat;
}
@media (max-width: 568px) {
  .seat-type-accordion-content {
    background: none;
  }
}
.seat-type-accordion.seat-type-accordion--accent-green .seat-type-accordion-content, .seat-type-accordion.seat-type-accordion--green .seat-type-accordion-content {
  background: none;
  isolation: isolate;
}
.seat-type-accordion.seat-type-accordion--accent-green .seat-type-accordion-content::before, .seat-type-accordion.seat-type-accordion--green .seat-type-accordion-content::before {
  content: "";
  position: absolute;
  top: 0;
  right: 50px;
  width: 1139px;
  height: 100%;
  transform: translateX(50%);
  background-image: url(/media/f2ndikhy/centre-circle-graphic-pokal.png);
  background-position: center;
  background-size: 100% auto;
  opacity: 0.1;
  z-index: -1;
}
@media (max-width: 568px) {
  .seat-type-accordion.seat-type-accordion--accent-green .seat-type-accordion-content::before, .seat-type-accordion.seat-type-accordion--green .seat-type-accordion-content::before {
    display: none;
  }
}

.fifty-fifty-block {
  --accentColor: #a9936f;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  align-items: center;
}
@media (max-width: 768px) {
  .fifty-fifty-block {
    grid-template-columns: auto;
  }
}
.seat-type-accordion.seat-type-accordion--accent-green .fifty-fifty-block {
  --accentColor: #008b48;
}
.seat-type-accordion.seat-type-accordion--green .fifty-fifty-block {
  --accentColor: white;
}
.fifty-fifty-block--bg-dark-green {
  --accentColor: #c8f2e0;
  background-color: #001f23;
  color: #c8f2e0;
}
.fifty-fifty-block--py {
  padding-block: clamp(3rem, 2.2353rem + 3.1373vw, 6rem) clamp(2rem, 1.4902rem + 2.0915vw, 4rem);
}
@media (max-width: 768px) {
  .fifty-fifty-block--py {
    padding-top: 0;
  }
}
@media (min-width: 769px) and (max-width: 1440px) {
  .fifty-fifty-block .match-info-block-detail__details {
    column-gap: 4px;
  }
}

.fifty-fifty-block__image {
  aspect-ratio: 16/11;
  border-radius: 0 20px 20px 0;
  overflow: hidden;
}
@media (max-width: 768px) {
  .fifty-fifty-block__image {
    border-radius: 0 0 20px 20px;
  }
}
@media (min-width: 769px) {
  .fifty-fifty-block.fifty-fifty-block--alt .fifty-fifty-block__image {
    grid-area: 1/2/1/2;
    border-radius: 20px 0 0 20px;
    aspect-ratio: 700/525;
  }
}
.fifty-fifty-block__image img,
.fifty-fifty-block__image video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.fifty-fifty-block__content {
  display: flex;
  flex-direction: column;
  row-gap: 16px;
  padding-left: clamp(1rem, -0.3382rem + 5.4902vw, 6.25rem);
  padding-right: clamp(1rem, -1.9314rem + 12.0261vw, 12.5rem);
}
.fifty-fifty-block.fifty-fifty-block--alt .fifty-fifty-block__content {
  padding-right: clamp(1rem, -0.3382rem + 5.4902vw, 6.25rem);
  padding-left: clamp(1rem, -1.9314rem + 12.0261vw, 12.5rem);
}
@media (max-width: 768px) {
  .fifty-fifty-block__content {
    padding-top: 32px;
  }
}
.fifty-fifty-block__content h3 {
  margin-block: 0;
  font-size: clamp(1.25rem, 0.9951rem + 1.0458vw, 2.25rem);
  line-height: clamp(1.25rem, 0.9951rem + 1.0458vw, 2.25rem);
  font-weight: bold;
}
div.featured-matches-block .fifty-fifty-block__content h3 {
  font-size: clamp(2.375rem, 2.2157rem + 0.6536vw, 3rem);
  line-height: clamp(3rem, 2.8407rem + 0.6536vw, 3.625rem);
}
@media (max-width: 640px) {
  div.featured-matches-block .fifty-fifty-block__content h3 {
    text-align: center;
  }
}
.fifty-fifty-block__content ul li {
  display: flex;
  align-items: center;
  column-gap: 10px;
  padding-block: 10px;
  font-size: clamp(1.125rem, 1.0294rem + 0.3922vw, 1.5rem);
  line-height: clamp(1.75rem, 1.6544rem + 0.3922vw, 2.125rem);
  font-weight: bold;
}
.fifty-fifty-block__content ul li::before {
  content: "→";
  flex-shrink: 0;
  font-size: 18px;
  color: var(--accentColor);
  font-weight: normal;
}
.seat-type-accordion.seat-type-accordion--gold .fifty-fifty-block__content ul li::before {
  --accentColor: white;
}
.fifty-fifty-block__content ul li:not(:last-child) {
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}
.seat-type-accordion.seat-type-accordion--black .fifty-fifty-block__content ul li:not(:last-child) {
  border-bottom-color: rgba(255, 255, 255, 0.1);
}
.fifty-fifty-block__content .button {
  margin: clamp(1.5rem, 1.3725rem + 0.5229vw, 2rem) auto 0 0;
}

.fifty-fifty-block__content-type {
  display: block;
  font-size: 12px;
  line-height: 16px;
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}
@media (max-width: 640px) {
  div.featured-matches-block .fifty-fifty-block__content-type {
    text-align: center;
  }
}

.fifty-fifty-block__price > span {
  font-size: 12px;
  line-height: 18px;
}
.fifty-fifty-block__price > span.number {
  margin-right: 4px;
  font-size: clamp(1.125rem, 1.0294rem + 0.3922vw, 1.5rem);
  line-height: clamp(1.75rem, 1.6544rem + 0.3922vw, 2.125rem);
  color: var(--accentColor);
  font-weight: bold;
}
.seat-type-accordion.seat-type-accordion--gold .fifty-fifty-block__price > span.number {
  --accentColor: white;
}
.seat-type-accordion.seat-type-accordion--light-grey .fifty-fifty-block__price > span.number {
  --accentColor: #000;
}

/* Amenities Block */
.amenities-block {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(0.5rem, 0.1286rem + 1.5238vw, 1.5rem);
  padding-inline: clamp(1rem, -1.9314rem + 12.0261vw, 12.5rem); /* (16, 200) */
}
@media (max-width: 1336px) {
  .amenities-block {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 980px) {
  .amenities-block {
    grid-template-columns: repeat(2, 1fr);
  }
}

.amenities-block-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: clamp(1rem, 0.7451rem + 1.0458vw, 2rem);
  border-radius: 20px;
  row-gap: 24px;
  background-color: white;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
  text-align: center;
}
@media (min-width: 480px) {
  .amenities-block-item {
    aspect-ratio: 1;
  }
}

.amenities-block-item__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 60px;
  color: darkslategrey;
}

.amenities-block-item__name {
  color: #000;
  font-size: clamp(0.875rem, 0.7357rem + 0.5714vw, 1.25rem);
  line-height: clamp(1.25rem, 1.1107rem + 0.5714vw, 1.625rem);
  font-weight: bold;
}

/* Simple CTA Block */
.simple-cta-block {
  display: block;
  text-align: center;
}
.seat-type-accordion.seat-type-accordion--gold .simple-cta-block .button {
  --buttonBgColor: white;
  --buttonFgColor: #a9936f;
}

/* Scrollable gallery */
.scrollable-gallery {
  overflow: hidden;
}

.scrollable-gallery-scroller {
  display: block;
  white-space: nowrap;
  padding-left: clamp(1rem, -1.9314rem + 12.0261vw, 12.5rem); /* (16, 200) */
  padding-bottom: 12px;
  font-size: 0;
  overflow-y: hidden;
  overflow-x: auto;
  container-type: inline-size;
  container-name: gallery-scroller;
}
.scrollable-gallery-scroller::-webkit-scrollbar-track {
  background-color: var(--color-green);
}
.scrollable-gallery-scroller::-webkit-scrollbar {
  background-color: var(--color-green);
  height: 6px;
  width: 6px;
}
.scrollable-gallery-scroller::-webkit-scrollbar-thumb {
  background-color: rgba(255, 255, 255, 0.5);
  border-radius: 5px;
  cursor: pointer;
}

.scrollable-gallery-item {
  display: inline-block;
  border-radius: 20px;
  height: 400px;
  overflow: hidden;
}
.scrollable-gallery-item:not(:last-child) {
  margin-right: 12px;
}
.scrollable-gallery-item img,
.scrollable-gallery-item video {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@container gallery-scroller (width < 706px) {
  .scrollable-gallery-item {
    max-width: 100%;
  }
}
/*** ORIGINAL ***/
/*

@use '../config/brand';
@use '../config/mixins';

.tabs {
  width: 100%;
  overflow: hidden;

  &--colour-alt {
    background-color: brand.$brand-mint;
  }

  &--pt-6 {
    padding-top: 24px;
  }
}

.tab-list {
  display: flex;
  align-items: center;
  justify-content: center;
  column-gap: 4px;
  overflow-y: hidden;
  overflow-x: auto;
  scrollbar-width: none;

  &::-webkit-scrollbar {
    display: none;
  }

  @media (max-width: 568px) {
    justify-content: flex-start;
  }
}

.tab {
  height: 50px;
  min-width: fit-content;
  padding: 16px 24px;
  border-radius: 10px 10px 0 0;
  border: 1px solid brand.$brand-mint-2;
  border-bottom: none;
  font-size: 12px;
  line-height: 16px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  background-color: brand.$brand-dark-green;
  color: white;
  cursor: pointer;

  .tabs.tabs--colour-alt & {
    background-color: brand.$brand-mint;
    color: brand.$brand-dark-green;
  }

  &--active {
    background-color: brand.$brand-mint-2;
    color: brand.$brand-dark-green;

    .tabs.tabs--colour-alt & {
      background-color: brand.$brand-dark-green;
      color: brand.$brand-mint;
    }
  }
}

.tab-content {
  position: relative;
  display: none;
  padding: 20px 100px;
  background-color: brand.$brand-dark-green;
  color: white;
  border: 1px solid brand.$brand-mint-2;

  &::before,
  &::after {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100px;
    height: calc(100% - 40px);
    display: flex;
    align-items: center;
    justify-content: center;
    color: brand.$brand-mint-2;
    font-size: 22px;
    font-weight: bold;
    z-index: 1;

    @media (max-width: 568px) {
      width: 40px;
    }
  }

  &::before {
    content: '→';
    left: 0;
    border-left: 1px solid brand.$brand-mint-2;
    transform: translateY(-50%) scaleX(-1);
  }

  &::after {
    content: '→';
    right: 0;
    border-left: 1px solid brand.$brand-mint-2;
  }

  @media (max-width: 568px) {
    padding-inline: 40px;
  }

  &--active {
    display: block;
  }
}

.tab-match-info-scroller {
  display: flex;
  column-gap: 24px;
  padding-inline: 20px;
  overflow-y: hidden;
  overflow-x: auto;

  @include mixins.scrollbars;

  @supports (hover: none) {
    scrollbar-width: none;
    -ms-overflow-style: none;

    &::-webkit-scrollbar {
      display: none;
    }
  }

  @media (max-width: 568px) {
    column-gap: 12px;
  }
}

.tab-match-info {
  position: relative;
  width: 335px;
  min-width: 335px;
  display: flex;
  flex-direction: column;
  padding: 16px 24px;
  border-radius: 12px;
  text-decoration: none;
  color: inherit;
  overflow: hidden;
  isolation: isolate;

  @media (max-width: 568px) {
    width: 250px;
    min-width: 250px;
    padding: 12px 20px;
  }

  &::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(brand.$brand-dark-green-2, 0.65);
    transition: background-color 0.25s ease;
  }

  &:hover {
    &::before {
      background-color: rgba(brand.$brand-dark-green-2, 0.85);
    }
  }
}

.tab-match-info__image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1;
}

.tab-match-info__type {
  position: relative;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.tab-match-info__match {
  position: relative;
  margin: 10px 0;
  font-size: 20px;
  line-height: 1.2;
  font-weight: bold;

  @media (max-width: 568px) {
    font-size: 18px;
  }
}

.tab-match-info__meta {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: auto;
  font-size: 14px;

  > span {
    &:first-child {
      display: flex;
      align-items: center;
      column-gap: 8px;

      svg {
        width: 14px;
        height: 14px;
        margin-top: -2px;
      }
    }
  }
}

.tab-match-info__meta-link-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border: 1px solid brand.$brand-lime;
  border-radius: 100%;

  &::before {
    content: '→';
    color: brand.$brand-lime;
    font-size: 16px;
    transition: transform 0.25s ease;

    .tab-match-info:hover & {
      transform: translateX(4px);
    }
  }

  @media (max-width: 568px) {
    width: 24px;
    height: 24px;
  }
}
*/
/*** UPDATED FOR CAROUSEL FEATURES ***/
.tabs {
  position: relative;
  width: 100%;
  overflow: hidden;
  z-index: 1;
}
.tabs--colour-alt {
  background-color: #c8f2e0;
}
.tabs--pt-6 {
  padding-top: 24px;
}
.tabs--home {
  margin-top: -50px;
}
@media (max-width: 568px) {
  .tabs--home {
    margin-top: -42px;
  }
}

.tab-list {
  display: flex;
  align-items: center;
  justify-content: center;
  column-gap: 4px;
  overflow-y: hidden;
  overflow-x: auto;
  scrollbar-width: none;
}
.tab-list::-webkit-scrollbar {
  display: none;
}
@media (max-width: 568px) {
  .tab-list {
    justify-content: flex-start;
  }
}

.tab {
  height: 50px;
  min-width: fit-content;
  padding: 16px 24px;
  border-radius: 10px 10px 0 0;
  border: 1px solid #a6caba;
  border-bottom: none;
  font-size: 12px;
  line-height: 16px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  background-color: #001f23;
  color: white;
  cursor: pointer;
}
@media (max-width: 568px) {
  .tab {
    height: 42px;
    padding: 10px 14px;
  }
}
.tabs.tabs--colour-alt .tab {
  background-color: #c8f2e0;
  color: #001f23;
}
.tab--active {
  background-color: #a6caba;
  color: #001f23;
}
.tabs.tabs--colour-alt .tab--active {
  background-color: #001f23;
  color: #c8f2e0;
}

.tab-content {
  position: relative;
  display: none;
  justify-content: center;
  padding: 20px clamp(2rem, 0.4214rem + 6.4762vw, 6.25rem);
  background-color: #001f23;
  color: white;
  border: 1px solid #a6caba;
}
.tab-content--active {
  display: flex;
}
@media (max-width: 568px) {
  .tab-content {
    justify-content: flex-start;
    gap: 12px;
    overflow: auto;
  }
  .tab-content::-webkit-scrollbar-track {
    background-color: var(--color-green);
  }
  .tab-content::-webkit-scrollbar {
    background-color: var(--color-green);
    height: 6px;
    width: 6px;
  }
  .tab-content::-webkit-scrollbar-thumb {
    background-color: rgba(255, 255, 255, 0.5);
    border-radius: 5px;
    cursor: pointer;
  }
  .tab-content > .tab-match-info {
    width: 335px;
    min-width: 335px;
  }
}

.carousel-wrapper {
  position: relative;
  overflow: hidden;
  width: 100%;
  flex-shrink: 0;
}

.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 1;
  width: clamp(2rem, 0.4214rem + 6.4762vw, 6.25rem);
  display: flex;
  align-items: center;
  justify-content: center;
  height: calc(100% - 40px);
  border: none;
  background-color: transparent;
  color: #a6caba;
  font-size: 22px;
  font-weight: bold;
  cursor: pointer;
  transition: color 0.2s ease;
}
.carousel-btn::after {
  content: "";
  position: absolute;
  top: 0;
  height: 100%;
  width: 1px;
  background-color: #a6caba;
}
.carousel-btn:hover {
  color: #bbfd00;
}
.carousel-btn:hover::after {
  background-color: #bbfd00;
}
.carousel-btn:hover svg {
  transform: translateX(0);
}
.carousel-btn svg {
  width: 22px;
  height: 22px;
  transition: transform 0.2s ease;
  flex-shrink: 0;
}
@media (max-width: 568px) {
  .carousel-btn svg {
    width: 16px;
    height: 16px;
  }
}
.carousel-btn--prev {
  left: 0;
}
.carousel-btn--prev > span {
  transform: scale(-1);
}
.carousel-btn--prev::after {
  right: 0;
}
.carousel-btn--prev:hover svg {
  transform: translateX(-3px);
}
.carousel-btn--next {
  right: 0;
}
.carousel-btn--next::after {
  left: 0;
}
.carousel-btn--next:hover svg {
  transform: translateX(3px);
}
.tabs--colour-alt .carousel-btn {
  color: #a6caba;
}
.tabs--colour-alt .carousel-btn::after {
  background-color: #a6caba;
}
.tabs--colour-alt .carousel-btn:hover {
  color: #bbfd00;
}
.tabs--colour-alt .carousel-btn:hover::after {
  background-color: #bbfd00;
}

.tab-match-info-scroller {
  display: flex;
  column-gap: 24px;
  padding-inline: 0;
  overflow: visible;
}
@media (max-width: 568px) {
  .tab-match-info-scroller {
    column-gap: 12px;
  }
}

.tab-match-info {
  position: relative;
  width: 335px;
  min-width: 335px;
  display: flex;
  flex-direction: column;
  padding: 16px 24px;
  border-radius: 12px;
  text-decoration: none;
  color: inherit;
  overflow: hidden;
  isolation: isolate;
  cursor: pointer;
}
@media (max-width: 568px) {
  .tab-match-info {
    width: 90%;
    min-width: 90%;
    padding: 12px 20px;
  }
}
.tab-match-info::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 73, 65, 0.65);
  transition: background-color 0.25s ease;
}
.tab-match-info:hover::before {
  background-color: rgba(0, 73, 65, 0.85);
}
.tab-match-info.is-grabbing, .tab-match-info-scroller.is-grabbing .tab-match-info {
  user-select: none;
  -webkit-user-drag: none;
}

.tab-match-info__image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1;
}

.tab-match-info__type {
  position: relative;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.tab-match-info__match {
  position: relative;
  margin: 10px 0;
  font-size: 20px;
  line-height: 1.2;
  font-weight: bold;
}
@media (max-width: 568px) {
  .tab-match-info__match {
    font-size: 18px;
  }
}

.tab-match-info__meta {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: auto;
  font-size: 14px;
}
.tab-match-info__meta > span:first-child {
  display: flex;
  align-items: center;
  column-gap: 8px;
}
.tab-match-info__meta > span:first-child svg {
  width: 14px;
  height: 14px;
  margin-top: -2px;
}

.tab-match-info__meta-link-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border: 1px solid #bbfd00;
  border-radius: 100%;
}
.tab-match-info__meta-link-icon::before {
  content: "→";
  color: #bbfd00;
  font-size: 16px;
  transition: transform 0.25s ease;
}
.tab-match-info:hover .tab-match-info__meta-link-icon::before {
  transform: translateX(4px);
}
@media (max-width: 568px) {
  .tab-match-info__meta-link-icon {
    width: 24px;
    height: 24px;
  }
}

.seat-type-accordion + .tabs {
  background: #c8f2e0;
  padding-top: 24px;
}
.seat-type-accordion + .tabs .tab {
  background-color: #c8f2e0;
  color: #001f23;
}
.seat-type-accordion + .tabs .tab--active {
  background-color: #001f23;
  color: #c8f2e0;
}

.sign-up-form-wrapper {
  position: fixed;
  left: 50%;
  bottom: clamp(1rem, 0.7451rem + 1.0458vw, 2rem);
  transform: translateX(-50%);
  z-index: 1;
}
body:not(.intro-video-complete) .sign-up-form-wrapper {
  z-index: 0;
}
.sign-up-form-wrapper .button {
  height: 60px;
  cursor: pointer;
}

.sign-up-form-toggle {
  position: relative;
  padding-inline: 16px;
  font-weight: bold;
  z-index: 0;
  transition: box-shadow 0.25s ease, transform 0.25s ease, width 0.25s ease 0s, color 0.1s ease 0.25s;
  width: 265px;
  box-shadow: 0 8px 11px rgba(0, 0, 0, 0.2);
  z-index: 10;
}
.sign-up-form-toggle img {
  transition: opacity 0.1s ease 0.25s;
}
.sign-up-form-toggle img.icon-close {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  opacity: 0;
  transition-delay: 0s;
}
.sign-up-form-toggle[aria-expanded=true] {
  overflow: hidden;
  --buttonFgColor: transparent;
  width: 60px;
  transition-delay: 0.1s, 0s;
}
.sign-up-form-toggle[aria-expanded=true] img {
  opacity: 0;
  transition-delay: 0s;
}
.sign-up-form-toggle[aria-expanded=true] img.icon-close {
  opacity: 1;
  transition-delay: 0.25s;
}

#sign-up-form {
  position: fixed;
  top: 8vh;
  top: 8dvh;
  left: 0;
  width: 100%;
  max-height: 80vh;
  max-height: 80dvh;
  pointer-events: none;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.25s ease, visibility 0.25s ease;
  z-index: 100;
  overflow: auto;
}
body:not(.intro-video-complete) #sign-up-form {
  z-index: 0;
}
@media (max-width: 568px) {
  #sign-up-form {
    top: 0;
    max-height: 89vh;
    max-height: 89dvh;
    box-shadow: 0px 8px 20px rgba(0, 0, 0, 0.2);
  }
  #sign-up-form .-mt-4 {
    margin-top: 0;
  }
}
#sign-up-form[aria-hidden=false] {
  pointer-events: auto;
  opacity: 1;
  visibility: visible;
}
#sign-up-form > div > div {
  box-shadow: 0px 8px 20px rgba(0, 0, 0, 0.2);
}
@media (max-width: 768px) {
  #sign-up-form input[type=checkbox] {
    margin-right: 6px;
  }
}

/* To be updated to use tailwind classes */
.generic-footer .bg-blue > .container {
  padding-bottom: clamp(6.5rem, 6.0539rem + 1.8301vw, 8.25rem);
}

.simple-info-block {
  padding: clamp(2rem, 1.4902rem + 2.0915vw, 4rem) clamp(1rem, 0.7451rem + 1.0458vw, 2rem);
  background-color: white;
}
.simple-info-block--accent-green {
  --buttonBgColor: #008b48;
}

.simple-info-block__inner {
  display: flex;
  flex-direction: column;
  row-gap: 16px;
  max-width: 620px;
  margin-inline: auto;
  text-align: center;
}
.simple-info-block__inner h2 {
  font-size: 24px;
  line-height: 34px;
  font-weight: bold;
}
.simple-info-block__inner p {
  font-size: 18px;
  line-height: 28px;
}
.simple-info-block__inner .button {
  margin-inline: auto;
}

:root {
  --matchInfoBlockHeight: clamp(6.875rem, 6.3971rem + 1.9608vw, 8.75rem);
}

.match-info-block {
  --accentColor: #a9936f;
  --textColor: #000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: clamp(1.25rem, 0.9314rem + 1.3072vw, 2.5rem) clamp(1rem, -1.9314rem + 12.0261vw, 12.5rem); /* (20, 40) (16, 200) */
  background-color: white;
}
@media (max-width: 640px) {
  .match-info-block {
    flex-direction: column;
    justify-content: center;
  }
}
.match-info-block--accent-green {
  --accentColor: #008b48;
  --textColor: #008b48;
  --buttonBgColor: var(--accentColor);
}
.match-info-block .button {
  flex-shrink: 0;
}
@media (min-width: 641px) and (max-width: 1024px) {
  .match-info-block .button {
    align-self: flex-end;
  }
}

.match-info-block-detail {
  display: flex;
  align-items: center;
  column-gap: 40px;
  row-gap: 24px;
  flex-wrap: wrap;
}
@media (max-width: 640px) {
  .match-info-block-detail {
    justify-content: center;
  }
}

.match-info-block-detail__match,
.match-info-block-detail__details,
.match-info-block-detail__details-item {
  display: flex;
  align-items: center;
  column-gap: 10px;
}
@media (max-width: 640px) {
  .match-info-block-detail__match,
  .match-info-block-detail__details,
  .match-info-block-detail__details-item {
    justify-content: center;
  }
}

.match-info-block-detail__match {
  font-size: 24px;
  color: var(--accentColor);
  font-weight: bold;
}
.match-info-block-detail__match > img {
  width: auto;
  height: clamp(2.5rem, 2.1814rem + 1.3072vw, 3.75rem);
}

.match-info-block-detail__details {
  flex-wrap: wrap;
  row-gap: 10px;
}

.match-info-block-detail__details-item {
  padding: 12px 16px;
  border: 1px solid var(--accentColor);
  border-radius: 12px;
  color: var(--textColor);
  font-size: 18px;
  line-height: 17px;
  letter-spacing: -0.1em;
}
.match-info-block-detail__details-item svg {
  color: var(--accentColor);
  max-height: 18px;
}

:root {
  --imageWrapperHeight: 300%;
}

/* NON-Experimental */
@media (max-width: 768px) {
  .featured-matches-block .fifty-fifty-block__image {
    aspect-ratio: unset;
  }
}

/* Experimental */
.featured-matches-block__item {
  position: relative;
  background-color: #001f23;
  isolation: isolate;
}
@media (max-width: 768px) {
  .featured-matches-block__item {
    display: flex;
    flex-direction: column-reverse;
  }
}
@media (min-width: 769px) {
  .featured-matches-block__item {
    overflow: clip;
  }
  .featured-matches-block__item:nth-child(2) .fifty-fifty-block__image-wrapper {
    top: calc(-100% * 1);
  }
  .featured-matches-block__item:nth-child(3) .fifty-fifty-block__image-wrapper {
    top: calc(-100% * 2);
  }
  .featured-matches-block__item:nth-child(4) .fifty-fifty-block__image-wrapper {
    top: calc(-100% * 3);
  }
  .featured-matches-block__item:nth-child(5) .fifty-fifty-block__image-wrapper {
    top: calc(-100% * 4);
  }
  .featured-matches-block__item:nth-child(6) .fifty-fifty-block__image-wrapper {
    top: calc(-100% * 5);
  }
  .featured-matches-block__item:nth-child(7) .fifty-fifty-block__image-wrapper {
    top: calc(-100% * 6);
  }
  .featured-matches-block__item:nth-child(8) .fifty-fifty-block__image-wrapper {
    top: calc(-100% * 7);
  }
  .featured-matches-block__item:nth-child(9) .fifty-fifty-block__image-wrapper {
    top: calc(-100% * 8);
  }
  .featured-matches-block__item:nth-child(10) .fifty-fifty-block__image-wrapper {
    top: calc(-100% * 9);
  }
  .featured-matches-block__item:nth-child(11) .fifty-fifty-block__image-wrapper {
    top: calc(-100% * 10);
  }
  .featured-matches-block__item:nth-child(12) .fifty-fifty-block__image-wrapper {
    top: calc(-100% * 11);
  }
  .featured-matches-block__item:nth-child(13) .fifty-fifty-block__image-wrapper {
    top: calc(-100% * 12);
  }
  .featured-matches-block__item:nth-child(14) .fifty-fifty-block__image-wrapper {
    top: calc(-100% * 13);
  }
  .featured-matches-block__item:nth-child(15) .fifty-fifty-block__image-wrapper {
    top: calc(-100% * 14);
  }
  .featured-matches-block__item:nth-child(16) .fifty-fifty-block__image-wrapper {
    top: calc(-100% * 15);
  }
  .featured-matches-block__item:nth-child(17) .fifty-fifty-block__image-wrapper {
    top: calc(-100% * 16);
  }
  .featured-matches-block__item:nth-child(18) .fifty-fifty-block__image-wrapper {
    top: calc(-100% * 17);
  }
  .featured-matches-block__item:nth-child(19) .fifty-fifty-block__image-wrapper {
    top: calc(-100% * 18);
  }
  .featured-matches-block__item:nth-child(20) .fifty-fifty-block__image-wrapper {
    top: calc(-100% * 19);
  }
}
@media (min-width: 769px) {
  .featured-matches-block__item .fifty-fifty-block {
    min-height: 100vh;
    min-height: 100dvh;
  }
}
@media (min-width: 769px) {
  .featured-matches-block__item .fifty-fifty-block__image-wrapper {
    position: absolute;
    top: 0;
    right: 0;
    height: var(--imageWrapperHeight);
    max-width: 50vw;
  }
}
@media (max-width: 768px) {
  .featured-matches-block__item .fifty-fifty-block__image-wrapper {
    position: sticky;
    top: 0;
    z-index: -1;
  }
}
@media (min-width: 769px) {
  .featured-matches-block__item .fifty-fifty-block__image-inner {
    position: sticky;
    top: 0;
    height: 100vh;
    height: 100dvh;
    display: flex;
    align-items: center;
  }
}
.featured-matches-block__item .fifty-fifty-block__image {
  aspect-ratio: 700/525;
}
@media (max-width: 768px) {
  .featured-matches-block__item .fifty-fifty-block__image {
    aspect-ratio: unset;
  }
}
@media (min-width: 769px) {
  .featured-matches-block__item .fifty-fifty-block__image {
    position: relative;
    overflow: hidden;
    border-radius: 20px 0 0 20px;
    max-width: 700px;
  }
}

@media (max-width: 768px) {
  body > div > header > div > div > div:first-child {
    grid-area: 1/3/1/3;
    display: flex;
    justify-content: flex-end;
  }
  body > div > header > div > div > div:last-child {
    grid-area: 1/1/1/1;
    justify-content: flex-start;
  }
}
body > div > header svg {
  width: 68px;
  height: 68px;
}

.why-register-interest {
  background-color: #c8f2e0;
  padding-block: clamp(6.25rem, 3.4643rem + 11.4286vw, 13.75rem);
}
.why-register-interest::before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background-image: url(/media/vp3b4v45/supersign_solid_primary_dark-green.svg);
  background-position: center;
  background-size: auto 85%;
  background-repeat: no-repeat;
  opacity: 0.1;
}
@media (max-width: 568px) {
  .why-register-interest ul {
    grid-template-columns: repeat(2, 1fr);
  }
  .why-register-interest ul li p {
    display: none;
  }
}

.large-image-title-block {
  position: relative;
}
.large-image-title-block::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #004941;
  opacity: 0.6;
  z-index: 1;
}

@media (max-width: 568px) {
  .generic-footer-inner nav ul {
    flex-direction: row;
    justify-content: center;
    flex-wrap: wrap;
  }
}

/* Hero */
.homepage-hero {
  padding-bottom: 50px;
  overflow: hidden;
}
@media (max-width: 568px) {
  .homepage-hero {
    padding-bottom: 42px;
  }
}
body:not(.intro-video-complete) .homepage-hero {
  overflow: visible;
}

.homepage-hero__supersign {
  position: absolute;
  top: 20vh;
  left: 0;
  width: 50%;
  transform: translateX(-35%) rotate(-275deg);
}

.homepage-hero__image-grid {
  display: flex;
  justify-content: center;
  max-width: 1376px;
  gap: 20px;
  margin-inline: auto;
  margin-bottom: 60px;
  padding-inline: clamp(1rem, 0.7451rem + 1.0458vw, 2rem);
}

.homepage-hero__image-grid-column {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 20px;
  flex-shrink: 0;
  width: 260px;
  border-radius: 10px;
  overflow: hidden;
}
.homepage-hero__image-grid-column:nth-child(2) {
  width: 246px;
}
.homepage-hero__image-grid-column:nth-child(3), .homepage-hero__image-grid-column--video {
  width: 275px;
  aspect-ratio: 275/443;
  overflow: visible;
}
@media (max-width: 768px) {
  .homepage-hero__image-grid-column:nth-child(1), .homepage-hero__image-grid-column:nth-child(2), .homepage-hero__image-grid-column:nth-child(4), .homepage-hero__image-grid-column:nth-child(5) {
    display: none;
  }
}
.homepage-hero__image-grid-column img, .homepage-hero__image-grid-column video {
  border-radius: 10px;
}
.homepage-hero__image-grid-column video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
body:not(.intro-video-complete) .homepage-hero__image-grid-column--video {
  z-index: 100;
}

.homepage-hero__image-grid-column-video-wrapper {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 110vw;
  width: 110dvw;
  height: 110vh;
  height: 110dvh;
  min-height: 900px;
  transform: translate(-50%, -75%);
  transform-origin: 50% 50%;
  z-index: 1;
  transition: all 1s cubic-bezier(0.33, 1, 0.68, 1) 2s;
  will-change: width, height, transform;
}
@media (min-height: 900px) {
  .homepage-hero__image-grid-column-video-wrapper {
    transform: translate(-50%, -60%);
    height: 125vh;
    height: 125dvh;
  }
}
.homepage-hero__image-grid-column-video-wrapper.animate {
  width: 100%;
  height: 100%;
  min-height: 0;
  transform: translate(-50%, -50%);
}

.homepage-hero__bottom-content {
  max-width: 592px;
  margin-inline: auto;
  padding: clamp(2.5rem, 1.5714rem + 3.8095vw, 5rem) 16px clamp(2rem, 1.2571rem + 3.0476vw, 4rem);
  text-align: center;
  color: white;
}
.homepage-hero__bottom-content p {
  font-size: 18px;
  line-height: 28px;
}
.homepage-hero__bottom-content .button {
  margin-top: clamp(2rem, 1.5357rem + 1.9048vw, 3.25rem);
}

.event-hero {
  position: relative;
  height: 75vh;
  height: 75dvh;
  min-height: 520px;
  display: flex;
  align-items: center;
  padding-inline: clamp(1rem, -1.9314rem + 12.0261vw, 12.5rem); /* (16, 200) */
  overflow: hidden;
}
.event-hero--tall {
  /*
  height: calc(100vh - (var(--matchInfoBlockHeight, clamp(6.875rem, 6.3971rem + 1.9608vw, 8.75rem)))); // 110, 140
  height: calc(100dvh - (var(--matchInfoBlockHeight, clamp(6.875rem, 6.3971rem + 1.9608vw, 8.75rem)))); // 110, 140
  min-height: 720px;

  @media (max-width: 568px) {
    height: 95vh;
    height: 95dvh;
  }
  */
}
.event-hero--tall::before, .event-hero--tall::after {
  display: none;
}
@media (max-width: 568px) {
  .event-hero {
    min-height: 0;
    height: auto;
    padding-block: 52px;
  }
}
.event-hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 635px;
  height: 100%;
  background-image: url(/media/xxhjxfkm/german-flag-colours-graphic-2.png);
  background-position: right center;
  background-size: auto;
  background-repeat: no-repeat;
  z-index: 1;
  transition: transform 0.4s ease;
  transform: translateY(-100%);
}
.event-hero::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, black 0%, rgba(0, 0, 0, 0) 100%);
  z-index: 0;
}
.event-hero.animate::before {
  transform: translateY(0);
}

.event-hero__bg-video,
.event-hero__bg-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}
.event-hero__bg-video video,
.event-hero__bg-video img,
.event-hero__bg-image video,
.event-hero__bg-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media (max-width: 568px) {
  .event-hero__bg-video {
    display: none;
  }
}

.event-hero__bg-image::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #004941;
  opacity: 0.3;
}

.event-hero__inner {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  row-gap: 32px;
  color: white;
  z-index: 1;
}
.event-hero__inner img,
.event-hero__inner p,
.event-hero__inner h1 {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.35s ease, transform 0.35s ease;
}
.event-hero.animate .event-hero__inner img,
.event-hero.animate .event-hero__inner p,
.event-hero.animate .event-hero__inner h1 {
  opacity: 1;
  transform: translateY(0);
}
.event-hero__inner img {
  transition-delay: 0.3s;
}
.event-hero__inner p {
  font-size: clamp(1.125rem, 1.0294rem + 0.3922vw, 1.5rem);
  line-height: clamp(1.75rem, 1.6544rem + 0.3922vw, 2.125rem);
  font-weight: bold;
  transition-delay: 0.4s;
}
.event-hero__inner h1 {
  font-size: clamp(2.375rem, 2.2157rem + 0.6536vw, 3rem);
  line-height: clamp(3rem, 2.8407rem + 0.6536vw, 3.625rem);
  transition-delay: 0.5s;
}

.event-hero__graphic {
  position: absolute;
  top: -45%;
  right: 0;
  width: 632px;
  opacity: 0;
  transform: translateY(10%);
  transition: opacity 0.25s ease, transform 0.25s ease;
  transition-delay: 0.4s;
}
.event-hero.animate .event-hero__graphic {
  opacity: 1;
  transform: translate(0);
}
@media (max-width: 1280px) {
  .event-hero__graphic {
    display: none;
  }
}

.dfbsubscriptionconsent.dataconsent label {
    font-size: var(--text-xs);
    line-height: var(--tw-leading, var(--text-xs--line-height));
}

@media (min-width: 64rem) {
.umbraco-forms-field.dfbsubscriptionconsent.dataconsent {
    grid-column: span 2 / span 2;
}
}


.umbraco-forms-field.dfbsubscriptionconsent.dataconsent .umbraco-forms-field-wrapper {
    gap: calc(0.25rem * 2);
    display: flex;
    align-items: flex-start;
}

/*# sourceMappingURL=dfb_ps.css.map */
