@charset "UTF-8";
.border-radius-s {
  border-radius: 1px;
}

.border-radius-m {
  border-radius: 3px;
}

.border-radius-l {
  border-radius: 4px;
}

.border-radius-2xl {
  border-radius: 128px;
}

@media (320px <= width) {
  .flex-xxs-min-column-reverse {
    flex-direction: column-reverse;
  }
}

@media (width <= 320px) {
  .flex-xxs-max-column-reverse {
    flex-direction: column-reverse;
  }
}

@media (480px <= width) {
  .flex-xs-min-column-reverse {
    flex-direction: column-reverse;
  }
}

@media (width <= 480px) {
  .flex-xs-max-column-reverse {
    flex-direction: column-reverse;
  }
}

@media (600px <= width) {
  .flex-s-min-column-reverse {
    flex-direction: column-reverse;
  }
}

@media (width <= 600px) {
  .flex-s-max-column-reverse {
    flex-direction: column-reverse;
  }
}

@media (767px <= width) {
  .flex-md-min-column-reverse {
    flex-direction: column-reverse;
  }
}

@media (width <= 767px) {
  .flex-md-max-column-reverse {
    flex-direction: column-reverse;
  }
}

@media (992px <= width) {
  .flex-l-min-column-reverse {
    flex-direction: column-reverse;
  }
}

@media (width <= 992px) {
  .flex-l-max-column-reverse {
    flex-direction: column-reverse;
  }
}

/*
  Basic:
  .card { @include flex(); @include flex-column(); }

  Responsive direction:
  .layout { @include flex(); @include flex-column(); @include flex-row(md); }

  Center content from small breakpoint:
  .centered { @include flex(); @include flex-align-center(s); @include flex-justify-center(s); }

  Column reverse only below medium:
  .reverse { @include flex-column(); @include flex-column-reverse(md, max); }

  Legacy wrapper (to migrate later):
  .old { @include flex-md-row; }
*/
/* Usage Examples
    .my-level-1-heading-class {
        @include text-crop; // Will use default line height of 1.3
        font-size: 48px;
        margin: 0 0 0 16px;
    }

    .my-level-2-heading-class {
        @include text-crop; // Will use default line height of 1.3
        font-size: 32px; // Don't need to change any settings, will work with any font size automatically
        margin: 0 0 0 16px;
    }

    .my-body-copy-class {
        @include text-crop($line-height: 2); // Larger line height desired, set the line height via the mixin
        font-size: 16px;
    }

    // Sometimes depending on the font-size, the rendering, the browser, etc. you may need to tweak the output. 
    // You can adjust the top and bottom cropping when invoking the component using the $top-adjustment and $bottom-adjustment settings 

    .slight-adjustment-needed {
        @include text-crop($top-adjustment: -0.5px, $bottom-adjustment: 2px);
        font-size: 17px;
    }

    .dont-do-this {
        @include text-crop;
        font-size: 16px;
        line-height: 3; // DO NOT set line height outside of the mixin, the mixin needs the line height value to calculate the crop correctly
    }
*/
.label-input {
  color: #525252;
  display: inline-block;
  font-family: "UniversLTW01-55Roman";
}

.label-input--required {
  position: relative;
}
.label-input--required:after {
  margin-left: 0.25rem;
  content: "*";
}

.label__input {
  font-family: "UniversLTW01-55Roman";
  color: #525252;
  display: inline-block;
  font-family: "UniversLTW01-55Roman";
}

.label-input--required {
  position: relative;
}
.label-input--required:after {
  margin-left: 0.25rem;
  content: "*";
}

.input__label {
  display: inline-block;
  color: #525252;
  font-family: "UniversLTW01-55Roman";
  font-size: 0.75rem;
}

html {
  box-sizing: border-box;
}

h1,
h2,
h3,
h4,
h5,
h6,
p,
a {
  margin: 0;
  padding: 0;
}

.uppercase {
  text-transform: uppercase;
}

.grid {
  display: grid;
}

.grid--fill {
  grid-template-columns: repeat(auto-fill, minmax(16rem, 1fr));
  gap: 1rem;
}

.grid--fit {
  grid-template-columns: repeat(auto-fit, minmax(16rem, 1fr));
  gap: 1rem;
}

.grid__item {
  height: 100%;
}

.card__thumb,
.card__body {
  grid-area: 1/-1;
}

.card__tag {
  align-self: start;
  justify-self: start;
}

.layout--centered {
  width: 90%;
  max-width: 1180px;
  margin: 0 auto;
}

.layout--left-aligned {
  max-width: 1024px;
  width: calc(100% - 2rem);
}
@media (600px <= width) {
  .layout--left-aligned {
    width: 90%;
  }
}

.flex {
  display: flex !important;
}

.flex-row {
  flex-direction: row !important;
}

.flex-column {
  flex-direction: column !important;
}

.flex-column-reverse {
  flex-direction: column-reverse !important;
}

.flex-justify-start {
  justify-content: flex-start !important;
}

.flex-justify-center {
  justify-content: center !important;
}

.flex-justify-end {
  justify-content: flex-end !important;
}

.flex-space-between {
  justify-content: space-between !important;
}

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

.flex-align-center {
  align-items: center !important;
}

.flex-align-end {
  align-items: flex-end !important;
}

.align-self-stretch {
  align-self: stretch !important;
}

.align-self-start {
  align-self: start !important;
}

.align-self-center {
  align-self: center !important;
}

.layout--nowrap {
  flex-wrap: nowrap !important;
}

.layout-wrap {
  flex-wrap: wrap !important;
}

.flex-grow {
  flex: 1 0 0 !important;
}

@media (320px <= width) {
  .flex-xxs-justify-center {
    justify-content: center !important;
  }
}

@media (480px <= width) {
  .flex-xs-justify-center {
    justify-content: center !important;
  }
}

@media (600px <= width) {
  .flex-s-justify-center {
    justify-content: center !important;
  }
}

@media (767px <= width) {
  .flex-md-justify-center {
    justify-content: center !important;
  }
}

@media (992px <= width) {
  .flex-l-justify-center {
    justify-content: center !important;
  }
}

@media (1024px <= width) {
  .flex-xl-justify-center {
    justify-content: center !important;
  }
}

@media (1600px <= width) {
  .flex-xxl-justify-center {
    justify-content: center !important;
  }
}

@media (320px <= width) {
  .flex-xxs-align-center {
    align-items: center !important;
  }
}

@media (480px <= width) {
  .flex-xs-align-center {
    align-items: center !important;
  }
}

@media (600px <= width) {
  .flex-s-align-center {
    align-items: center !important;
  }
}

@media (767px <= width) {
  .flex-md-align-center {
    align-items: center !important;
  }
}

@media (992px <= width) {
  .flex-l-align-center {
    align-items: center !important;
  }
}

@media (1024px <= width) {
  .flex-xl-align-center {
    align-items: center !important;
  }
}

@media (1600px <= width) {
  .flex-xxl-align-center {
    align-items: center !important;
  }
}

@media (320px <= width) {
  .flex-xxs-row {
    flex-direction: row !important;
  }
}

@media (480px <= width) {
  .flex-xs-row {
    flex-direction: row !important;
  }
}

@media (600px <= width) {
  .flex-s-row {
    flex-direction: row !important;
  }
}

@media (767px <= width) {
  .flex-md-row {
    flex-direction: row !important;
  }
}

@media (992px <= width) {
  .flex-l-row {
    flex-direction: row !important;
  }
}

@media (1024px <= width) {
  .flex-xl-row {
    flex-direction: row !important;
  }
}

@media (1600px <= width) {
  .flex-xxl-row {
    flex-direction: row !important;
  }
}

@media (320px <= width) {
  .flex-xxs-column {
    flex-direction: column !important;
  }
}

@media (480px <= width) {
  .flex-xs-column {
    flex-direction: column !important;
  }
}

@media (600px <= width) {
  .flex-s-column {
    flex-direction: column !important;
  }
}

@media (767px <= width) {
  .flex-md-column {
    flex-direction: column !important;
  }
}

@media (992px <= width) {
  .flex-l-column {
    flex-direction: column !important;
  }
}

@media (1024px <= width) {
  .flex-xl-column {
    flex-direction: column !important;
  }
}

@media (1600px <= width) {
  .flex-xxl-column {
    flex-direction: column !important;
  }
}

@media (320px <= width) {
  .flex-xxs-column-reverse, .flex-min-xxs-column-reverse {
    flex-direction: column-reverse !important;
  }
}

@media (480px <= width) {
  .flex-xs-column-reverse, .flex-min-xs-column-reverse {
    flex-direction: column-reverse !important;
  }
}

@media (600px <= width) {
  .flex-s-column-reverse, .flex-min-s-column-reverse {
    flex-direction: column-reverse !important;
  }
}

@media (767px <= width) {
  .flex-md-column-reverse, .flex-min-md-column-reverse {
    flex-direction: column-reverse !important;
  }
}

@media (992px <= width) {
  .flex-l-column-reverse, .flex-min-l-column-reverse {
    flex-direction: column-reverse !important;
  }
}

@media (1024px <= width) {
  .flex-xl-column-reverse, .flex-min-xl-column-reverse {
    flex-direction: column-reverse !important;
  }
}

@media (1600px <= width) {
  .flex-xxl-column-reverse, .flex-min-xxl-column-reverse {
    flex-direction: column-reverse !important;
  }
}

@media (width <= 320px) {
  .flex-max-xxs-column-reverse {
    flex-direction: column-reverse !important;
  }
}

@media (width <= 480px) {
  .flex-max-xs-column-reverse {
    flex-direction: column-reverse !important;
  }
}

@media (width <= 600px) {
  .flex-max-s-column-reverse {
    flex-direction: column-reverse !important;
  }
}

@media (width <= 767px) {
  .flex-max-md-column-reverse {
    flex-direction: column-reverse !important;
  }
}

@media (width <= 992px) {
  .flex-max-l-column-reverse {
    flex-direction: column-reverse !important;
  }
}

@media (width <= 1024px) {
  .flex-max-xl-column-reverse {
    flex-direction: column-reverse !important;
  }
}

@media (width <= 1600px) {
  .flex-max-xxl-column-reverse {
    flex-direction: column-reverse !important;
  }
}

/*
  Example usage:
  <div class="flex flex-column flex-md-row flex-justify-center flex-md-justify-start flex-s-align-center flex-xl-align-start gap-100">
    ...
  </div>

  Column reverse only on small viewports:
  <div class="flex flex-column-reverse flex-md-column">...</div>
*/
.elevation--level-1 {
  box-shadow: #e3e3e3 0px 1px 2px 0px;
}

.elevation--level-2 {
  box-shadow: #e3e3e3 0px 1px 3px 0px, #e3e3e3 0px 1px 2px 0px;
}

.elevation--level-3 {
  box-shadow: #e3e3e3 0px 4px 6px -1px, #e3e3e3 0px 2px 4px -1px;
}

.elevation--level-4 {
  box-shadow: #e3e3e3 0px 10px 15px -3px, #e3e3e3 0px 4px 6px -2px;
}

.elevation--level-5 {
  box-shadow: #e3e3e3 0px 20px 25px -5px, #e3e3e3 0px 10px 10px -5px;
}

.elevation--level-6 {
  box-shadow: #cbcbcb 0px 25px 50px -12px;
}

.border-radius-s {
  border-radius: 1px;
}

.border-radius-m {
  border-radius: 3px;
}

.border-radius-l {
  border-radius: 4px;
}

.border-radius-2xl {
  border-radius: 128px;
}

.line-break {
  margin-top: 0.5rem;
  display: block;
}

.truncate {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.truncate {
  display: block;
  width: 100%;
  max-width: 100%;
  flex: 1 1 0;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.requires-no-scroll {
  height: 100%;
  overflow: hidden;
}

.divided-dark {
  border-bottom: 1px solid #cbcbcb;
}

.divided-light {
  border-bottom: 1px solid #f0f0f0;
}

.position-relative {
  position: relative;
}

.position-absolute {
  position: absolute;
}

.position-sticky {
  position: sticky !important;
  top: 0;
  z-index: 3;
}

.top {
  top: 0;
}

.right {
  right: 0;
}

.bottom {
  bottom: 0;
}

.left {
  left: 0;
}

.visually-hidden {
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  height: 1px;
  overflow: hidden;
  position: absolute;
  white-space: nowrap;
  width: 1px;
}

.display-none {
  display: none !important;
}

@media (320px <= width) {
  .display-xxs {
    display: block !important;
  }
}

@media (width <= 320px) {
  .hide-xxs {
    display: none !important;
  }
}

.display-xs {
  display: none;
}
@media (480px <= width) {
  .display-xs {
    display: block !important;
  }
}

.display-s {
  display: none;
}
@media (600px <= width) {
  .display-s {
    display: block !important;
  }
}

.display-md {
  display: none;
}
@media (767px <= width) {
  .display-md {
    display: block !important;
  }
}

.display-l {
  display: none;
}
@media (992px <= width) {
  .display-l {
    display: block !important;
  }
}

.display-xl {
  display: none;
}
@media (1024px <= width) {
  .display-xl {
    display: block !important;
  }
}

.display-xxl {
  display: none;
}
@media (1600px <= width) {
  .display-xxl {
    display: block !important;
  }
}

.full-width {
  width: 100%;
}

.w-100 {
  width: 100%;
}

.bg-basic-white {
  background-color: #ffffff !important;
}

.bg-light-grey {
  background-color: #f7f7f7 !important;
}

.bg-dark {
  background-color: #151515 !important;
}

.fs-xxl {
  font-size: clamp(2rem, 0.5vw + 1.9rem, 2.4rem);
  line-height: 125%;
}

.fs-xl {
  font-size: clamp(1.5rem, 0.5vw + 1.4rem, 1.9rem);
  line-height: 125%;
}

.fs-l {
  font-size: clamp(1.25rem, 0.25vw + 1.2rem, 1.45rem);
  line-height: 150%;
}

.fs-m {
  font-size: clamp(1.05rem, 0.1625vw + 1.0175rem, 1.18rem);
  line-height: 150%;
}

.fs-s {
  font-size: clamp(0.9rem, 0.15vw + 0.87rem, 1.02rem);
  line-height: 150%;
}

.fs-xs {
  font-size: clamp(0.8rem, 0.1vw + 0.78rem, 0.88rem);
  line-height: 150%;
}

.fs-xxs {
  font-size: clamp(0.7rem, 0.0875vw + 0.6825rem, 0.77rem);
  line-height: 150%;
}

.ff-light {
  font-family: "UniversLTW01-45Light" !important;
}

.ff-light-oblique {
  font-family: "UniversLTW01-45LightOblique" !important;
}

.ff-roman {
  font-family: "UniversLTW01-55Roman" !important;
}

.ff-roman-oblique {
  font-family: "UniversLTW01-55Oblique" !important;
}

.ff-bold {
  font-family: "UniversLTW01-65Bold" !important;
}

.ff-bold-oblique {
  font-family: "UniversLTW01-65BoldOblique" !important;
}

.ff-black {
  font-family: "UniversLTW01-75Black" !important;
}

.ff-black-oblique {
  font-family: "UniversLTW01-75BlackOblique" !important;
}

.ff-extra-black {
  font-family: "UniversLTW01-85ExtraBlack" !important;
}

.ff-extra-black-oblique {
  font-family: "UniversLTW01-85XtraBlackObl" !important;
}

.ff-condensed {
  font-family: "UniversLTW01-BoldCondensed" !important;
}

.m-0 {
  margin: 0 !important;
}

.mt-0 {
  margin-top: 0 !important;
}

.mr-0 {
  margin-right: 0 !important;
}

.mb-0 {
  margin-bottom: 0 !important;
}

.ml-0 {
  margin-left: 0 !important;
}

.mx-0 {
  margin-left: 0 !important;
  margin-right: 0 !important;
}

.my-0 {
  margin-top: 0 !important;
  margin-bottom: 0 !important;
}

.mtn-0 {
  margin-top: -0 !important;
}

.mrn-0 {
  margin-right: -0 !important;
}

.mbn-0 {
  margin-bottom: -0 !important;
}

.mln-0 {
  margin-left: -0 !important;
}

.mxn-0 {
  margin-left: -0 !important;
  margin-right: -0 !important;
}

.myn-0 {
  margin-top: -0 !important;
  margin-bottom: -0 !important;
}

.p-0 {
  padding: 0 !important;
}

.pt-0 {
  padding-top: 0 !important;
}

.pr-0 {
  padding-right: 0 !important;
}

.pb-0 {
  padding-bottom: 0 !important;
}

.pl-0 {
  padding-left: 0 !important;
}

.px-0 {
  padding-left: 0 !important;
  padding-right: 0 !important;
}

.py-0 {
  padding-top: 0 !important;
  padding-bottom: 0 !important;
}

.m-25 {
  margin: 0.25rem !important;
}

.mt-25 {
  margin-top: 0.25rem !important;
}

.mr-25 {
  margin-right: 0.25rem !important;
}

.mb-25 {
  margin-bottom: 0.25rem !important;
}

.ml-25 {
  margin-left: 0.25rem !important;
}

.mx-25 {
  margin-left: 0.25rem !important;
  margin-right: 0.25rem !important;
}

.my-25 {
  margin-top: 0.25rem !important;
  margin-bottom: 0.25rem !important;
}

.mtn-25 {
  margin-top: -0.25rem !important;
}

.mrn-25 {
  margin-right: -0.25rem !important;
}

.mbn-25 {
  margin-bottom: -0.25rem !important;
}

.mln-25 {
  margin-left: -0.25rem !important;
}

.mxn-25 {
  margin-left: -0.25rem !important;
  margin-right: -0.25rem !important;
}

.myn-25 {
  margin-top: -0.25rem !important;
  margin-bottom: -0.25rem !important;
}

.p-25 {
  padding: 0.25rem !important;
}

.pt-25 {
  padding-top: 0.25rem !important;
}

.pr-25 {
  padding-right: 0.25rem !important;
}

.pb-25 {
  padding-bottom: 0.25rem !important;
}

.pl-25 {
  padding-left: 0.25rem !important;
}

.px-25 {
  padding-left: 0.25rem !important;
  padding-right: 0.25rem !important;
}

.py-25 {
  padding-top: 0.25rem !important;
  padding-bottom: 0.25rem !important;
}

.m-50 {
  margin: 0.5rem !important;
}

.mt-50 {
  margin-top: 0.5rem !important;
}

.mr-50 {
  margin-right: 0.5rem !important;
}

.mb-50 {
  margin-bottom: 0.5rem !important;
}

.ml-50 {
  margin-left: 0.5rem !important;
}

.mx-50 {
  margin-left: 0.5rem !important;
  margin-right: 0.5rem !important;
}

.my-50 {
  margin-top: 0.5rem !important;
  margin-bottom: 0.5rem !important;
}

.mtn-50 {
  margin-top: -0.5rem !important;
}

.mrn-50 {
  margin-right: -0.5rem !important;
}

.mbn-50 {
  margin-bottom: -0.5rem !important;
}

.mln-50 {
  margin-left: -0.5rem !important;
}

.mxn-50 {
  margin-left: -0.5rem !important;
  margin-right: -0.5rem !important;
}

.myn-50 {
  margin-top: -0.5rem !important;
  margin-bottom: -0.5rem !important;
}

.p-50 {
  padding: 0.5rem !important;
}

.pt-50 {
  padding-top: 0.5rem !important;
}

.pr-50 {
  padding-right: 0.5rem !important;
}

.pb-50 {
  padding-bottom: 0.5rem !important;
}

.pl-50 {
  padding-left: 0.5rem !important;
}

.px-50 {
  padding-left: 0.5rem !important;
  padding-right: 0.5rem !important;
}

.py-50 {
  padding-top: 0.5rem !important;
  padding-bottom: 0.5rem !important;
}

.m-75 {
  margin: 0.75rem !important;
}

.mt-75 {
  margin-top: 0.75rem !important;
}

.mr-75 {
  margin-right: 0.75rem !important;
}

.mb-75 {
  margin-bottom: 0.75rem !important;
}

.ml-75 {
  margin-left: 0.75rem !important;
}

.mx-75 {
  margin-left: 0.75rem !important;
  margin-right: 0.75rem !important;
}

.my-75 {
  margin-top: 0.75rem !important;
  margin-bottom: 0.75rem !important;
}

.mtn-75 {
  margin-top: -0.75rem !important;
}

.mrn-75 {
  margin-right: -0.75rem !important;
}

.mbn-75 {
  margin-bottom: -0.75rem !important;
}

.mln-75 {
  margin-left: -0.75rem !important;
}

.mxn-75 {
  margin-left: -0.75rem !important;
  margin-right: -0.75rem !important;
}

.myn-75 {
  margin-top: -0.75rem !important;
  margin-bottom: -0.75rem !important;
}

.p-75 {
  padding: 0.75rem !important;
}

.pt-75 {
  padding-top: 0.75rem !important;
}

.pr-75 {
  padding-right: 0.75rem !important;
}

.pb-75 {
  padding-bottom: 0.75rem !important;
}

.pl-75 {
  padding-left: 0.75rem !important;
}

.px-75 {
  padding-left: 0.75rem !important;
  padding-right: 0.75rem !important;
}

.py-75 {
  padding-top: 0.75rem !important;
  padding-bottom: 0.75rem !important;
}

.m-100 {
  margin: 1rem !important;
}

.mt-100 {
  margin-top: 1rem !important;
}

.mr-100 {
  margin-right: 1rem !important;
}

.mb-100 {
  margin-bottom: 1rem !important;
}

.ml-100 {
  margin-left: 1rem !important;
}

.mx-100 {
  margin-left: 1rem !important;
  margin-right: 1rem !important;
}

.my-100 {
  margin-top: 1rem !important;
  margin-bottom: 1rem !important;
}

.mtn-100 {
  margin-top: -1rem !important;
}

.mrn-100 {
  margin-right: -1rem !important;
}

.mbn-100 {
  margin-bottom: -1rem !important;
}

.mln-100 {
  margin-left: -1rem !important;
}

.mxn-100 {
  margin-left: -1rem !important;
  margin-right: -1rem !important;
}

.myn-100 {
  margin-top: -1rem !important;
  margin-bottom: -1rem !important;
}

.p-100 {
  padding: 1rem !important;
}

.pt-100 {
  padding-top: 1rem !important;
}

.pr-100 {
  padding-right: 1rem !important;
}

.pb-100 {
  padding-bottom: 1rem !important;
}

.pl-100 {
  padding-left: 1rem !important;
}

.px-100 {
  padding-left: 1rem !important;
  padding-right: 1rem !important;
}

.py-100 {
  padding-top: 1rem !important;
  padding-bottom: 1rem !important;
}

.m-150 {
  margin: 1.5rem !important;
}

.mt-150 {
  margin-top: 1.5rem !important;
}

.mr-150 {
  margin-right: 1.5rem !important;
}

.mb-150 {
  margin-bottom: 1.5rem !important;
}

.ml-150 {
  margin-left: 1.5rem !important;
}

.mx-150 {
  margin-left: 1.5rem !important;
  margin-right: 1.5rem !important;
}

.my-150 {
  margin-top: 1.5rem !important;
  margin-bottom: 1.5rem !important;
}

.mtn-150 {
  margin-top: -1.5rem !important;
}

.mrn-150 {
  margin-right: -1.5rem !important;
}

.mbn-150 {
  margin-bottom: -1.5rem !important;
}

.mln-150 {
  margin-left: -1.5rem !important;
}

.mxn-150 {
  margin-left: -1.5rem !important;
  margin-right: -1.5rem !important;
}

.myn-150 {
  margin-top: -1.5rem !important;
  margin-bottom: -1.5rem !important;
}

.p-150 {
  padding: 1.5rem !important;
}

.pt-150 {
  padding-top: 1.5rem !important;
}

.pr-150 {
  padding-right: 1.5rem !important;
}

.pb-150 {
  padding-bottom: 1.5rem !important;
}

.pl-150 {
  padding-left: 1.5rem !important;
}

.px-150 {
  padding-left: 1.5rem !important;
  padding-right: 1.5rem !important;
}

.py-150 {
  padding-top: 1.5rem !important;
  padding-bottom: 1.5rem !important;
}

.m-200 {
  margin: 2rem !important;
}

.mt-200 {
  margin-top: 2rem !important;
}

.mr-200 {
  margin-right: 2rem !important;
}

.mb-200 {
  margin-bottom: 2rem !important;
}

.ml-200 {
  margin-left: 2rem !important;
}

.mx-200 {
  margin-left: 2rem !important;
  margin-right: 2rem !important;
}

.my-200 {
  margin-top: 2rem !important;
  margin-bottom: 2rem !important;
}

.mtn-200 {
  margin-top: -2rem !important;
}

.mrn-200 {
  margin-right: -2rem !important;
}

.mbn-200 {
  margin-bottom: -2rem !important;
}

.mln-200 {
  margin-left: -2rem !important;
}

.mxn-200 {
  margin-left: -2rem !important;
  margin-right: -2rem !important;
}

.myn-200 {
  margin-top: -2rem !important;
  margin-bottom: -2rem !important;
}

.p-200 {
  padding: 2rem !important;
}

.pt-200 {
  padding-top: 2rem !important;
}

.pr-200 {
  padding-right: 2rem !important;
}

.pb-200 {
  padding-bottom: 2rem !important;
}

.pl-200 {
  padding-left: 2rem !important;
}

.px-200 {
  padding-left: 2rem !important;
  padding-right: 2rem !important;
}

.py-200 {
  padding-top: 2rem !important;
  padding-bottom: 2rem !important;
}

.m-250 {
  margin: 2.5rem !important;
}

.mt-250 {
  margin-top: 2.5rem !important;
}

.mr-250 {
  margin-right: 2.5rem !important;
}

.mb-250 {
  margin-bottom: 2.5rem !important;
}

.ml-250 {
  margin-left: 2.5rem !important;
}

.mx-250 {
  margin-left: 2.5rem !important;
  margin-right: 2.5rem !important;
}

.my-250 {
  margin-top: 2.5rem !important;
  margin-bottom: 2.5rem !important;
}

.mtn-250 {
  margin-top: -2.5rem !important;
}

.mrn-250 {
  margin-right: -2.5rem !important;
}

.mbn-250 {
  margin-bottom: -2.5rem !important;
}

.mln-250 {
  margin-left: -2.5rem !important;
}

.mxn-250 {
  margin-left: -2.5rem !important;
  margin-right: -2.5rem !important;
}

.myn-250 {
  margin-top: -2.5rem !important;
  margin-bottom: -2.5rem !important;
}

.p-250 {
  padding: 2.5rem !important;
}

.pt-250 {
  padding-top: 2.5rem !important;
}

.pr-250 {
  padding-right: 2.5rem !important;
}

.pb-250 {
  padding-bottom: 2.5rem !important;
}

.pl-250 {
  padding-left: 2.5rem !important;
}

.px-250 {
  padding-left: 2.5rem !important;
  padding-right: 2.5rem !important;
}

.py-250 {
  padding-top: 2.5rem !important;
  padding-bottom: 2.5rem !important;
}

.m-300 {
  margin: 3rem !important;
}

.mt-300 {
  margin-top: 3rem !important;
}

.mr-300 {
  margin-right: 3rem !important;
}

.mb-300 {
  margin-bottom: 3rem !important;
}

.ml-300 {
  margin-left: 3rem !important;
}

.mx-300 {
  margin-left: 3rem !important;
  margin-right: 3rem !important;
}

.my-300 {
  margin-top: 3rem !important;
  margin-bottom: 3rem !important;
}

.mtn-300 {
  margin-top: -3rem !important;
}

.mrn-300 {
  margin-right: -3rem !important;
}

.mbn-300 {
  margin-bottom: -3rem !important;
}

.mln-300 {
  margin-left: -3rem !important;
}

.mxn-300 {
  margin-left: -3rem !important;
  margin-right: -3rem !important;
}

.myn-300 {
  margin-top: -3rem !important;
  margin-bottom: -3rem !important;
}

.p-300 {
  padding: 3rem !important;
}

.pt-300 {
  padding-top: 3rem !important;
}

.pr-300 {
  padding-right: 3rem !important;
}

.pb-300 {
  padding-bottom: 3rem !important;
}

.pl-300 {
  padding-left: 3rem !important;
}

.px-300 {
  padding-left: 3rem !important;
  padding-right: 3rem !important;
}

.py-300 {
  padding-top: 3rem !important;
  padding-bottom: 3rem !important;
}

.m-400 {
  margin: 4rem !important;
}

.mt-400 {
  margin-top: 4rem !important;
}

.mr-400 {
  margin-right: 4rem !important;
}

.mb-400 {
  margin-bottom: 4rem !important;
}

.ml-400 {
  margin-left: 4rem !important;
}

.mx-400 {
  margin-left: 4rem !important;
  margin-right: 4rem !important;
}

.my-400 {
  margin-top: 4rem !important;
  margin-bottom: 4rem !important;
}

.mtn-400 {
  margin-top: -4rem !important;
}

.mrn-400 {
  margin-right: -4rem !important;
}

.mbn-400 {
  margin-bottom: -4rem !important;
}

.mln-400 {
  margin-left: -4rem !important;
}

.mxn-400 {
  margin-left: -4rem !important;
  margin-right: -4rem !important;
}

.myn-400 {
  margin-top: -4rem !important;
  margin-bottom: -4rem !important;
}

.p-400 {
  padding: 4rem !important;
}

.pt-400 {
  padding-top: 4rem !important;
}

.pr-400 {
  padding-right: 4rem !important;
}

.pb-400 {
  padding-bottom: 4rem !important;
}

.pl-400 {
  padding-left: 4rem !important;
}

.px-400 {
  padding-left: 4rem !important;
  padding-right: 4rem !important;
}

.py-400 {
  padding-top: 4rem !important;
  padding-bottom: 4rem !important;
}

.m-600 {
  margin: 6rem !important;
}

.mt-600 {
  margin-top: 6rem !important;
}

.mr-600 {
  margin-right: 6rem !important;
}

.mb-600 {
  margin-bottom: 6rem !important;
}

.ml-600 {
  margin-left: 6rem !important;
}

.mx-600 {
  margin-left: 6rem !important;
  margin-right: 6rem !important;
}

.my-600 {
  margin-top: 6rem !important;
  margin-bottom: 6rem !important;
}

.mtn-600 {
  margin-top: -6rem !important;
}

.mrn-600 {
  margin-right: -6rem !important;
}

.mbn-600 {
  margin-bottom: -6rem !important;
}

.mln-600 {
  margin-left: -6rem !important;
}

.mxn-600 {
  margin-left: -6rem !important;
  margin-right: -6rem !important;
}

.myn-600 {
  margin-top: -6rem !important;
  margin-bottom: -6rem !important;
}

.p-600 {
  padding: 6rem !important;
}

.pt-600 {
  padding-top: 6rem !important;
}

.pr-600 {
  padding-right: 6rem !important;
}

.pb-600 {
  padding-bottom: 6rem !important;
}

.pl-600 {
  padding-left: 6rem !important;
}

.px-600 {
  padding-left: 6rem !important;
  padding-right: 6rem !important;
}

.py-600 {
  padding-top: 6rem !important;
  padding-bottom: 6rem !important;
}

.m-800 {
  margin: 8rem !important;
}

.mt-800 {
  margin-top: 8rem !important;
}

.mr-800 {
  margin-right: 8rem !important;
}

.mb-800 {
  margin-bottom: 8rem !important;
}

.ml-800 {
  margin-left: 8rem !important;
}

.mx-800 {
  margin-left: 8rem !important;
  margin-right: 8rem !important;
}

.my-800 {
  margin-top: 8rem !important;
  margin-bottom: 8rem !important;
}

.mtn-800 {
  margin-top: -8rem !important;
}

.mrn-800 {
  margin-right: -8rem !important;
}

.mbn-800 {
  margin-bottom: -8rem !important;
}

.mln-800 {
  margin-left: -8rem !important;
}

.mxn-800 {
  margin-left: -8rem !important;
  margin-right: -8rem !important;
}

.myn-800 {
  margin-top: -8rem !important;
  margin-bottom: -8rem !important;
}

.p-800 {
  padding: 8rem !important;
}

.pt-800 {
  padding-top: 8rem !important;
}

.pr-800 {
  padding-right: 8rem !important;
}

.pb-800 {
  padding-bottom: 8rem !important;
}

.pl-800 {
  padding-left: 8rem !important;
}

.px-800 {
  padding-left: 8rem !important;
  padding-right: 8rem !important;
}

.py-800 {
  padding-top: 8rem !important;
  padding-bottom: 8rem !important;
}

.m-1000 {
  margin: 10rem !important;
}

.mt-1000 {
  margin-top: 10rem !important;
}

.mr-1000 {
  margin-right: 10rem !important;
}

.mb-1000 {
  margin-bottom: 10rem !important;
}

.ml-1000 {
  margin-left: 10rem !important;
}

.mx-1000 {
  margin-left: 10rem !important;
  margin-right: 10rem !important;
}

.my-1000 {
  margin-top: 10rem !important;
  margin-bottom: 10rem !important;
}

.mtn-1000 {
  margin-top: -10rem !important;
}

.mrn-1000 {
  margin-right: -10rem !important;
}

.mbn-1000 {
  margin-bottom: -10rem !important;
}

.mln-1000 {
  margin-left: -10rem !important;
}

.mxn-1000 {
  margin-left: -10rem !important;
  margin-right: -10rem !important;
}

.myn-1000 {
  margin-top: -10rem !important;
  margin-bottom: -10rem !important;
}

.p-1000 {
  padding: 10rem !important;
}

.pt-1000 {
  padding-top: 10rem !important;
}

.pr-1000 {
  padding-right: 10rem !important;
}

.pb-1000 {
  padding-bottom: 10rem !important;
}

.pl-1000 {
  padding-left: 10rem !important;
}

.px-1000 {
  padding-left: 10rem !important;
  padding-right: 10rem !important;
}

.py-1000 {
  padding-top: 10rem !important;
  padding-bottom: 10rem !important;
}

.text-color-dark {
  color: #151515;
}

.text-color-grey {
  color: #525252;
}

.text-color-white {
  color: #ffffff;
}

.gap-0 {
  gap: 0 !important;
}

.gap-25 {
  gap: 0.25rem !important;
}

.gap-50 {
  gap: 0.5rem !important;
}

.gap-75 {
  gap: 0.75rem !important;
}

.gap-100 {
  gap: 1rem !important;
}

.gap-150 {
  gap: 1.5rem !important;
}

.gap-200 {
  gap: 2rem !important;
}

.gap-250 {
  gap: 2.5rem !important;
}

.gap-300 {
  gap: 3rem !important;
}

.gap-400 {
  margin-top: 4rem !important;
}

.gap-600 {
  gap: 6rem !important;
}

.gap-800 {
  gap: 8rem !important;
}

.gap-1000 {
  gap: 10rem !important;
}

@media (320px <= width) {
  .gap-xxs-0 {
    gap: 0 !important;
  }
}

@media (320px <= width) {
  .gap-xxs-25 {
    gap: 0.25rem !important;
  }
}

@media (320px <= width) {
  .gap-xxs-50 {
    gap: 0.5rem !important;
  }
}

@media (320px <= width) {
  .gap-xxs-75 {
    gap: 0.75rem !important;
  }
}

@media (320px <= width) {
  .gap-xxs-100 {
    gap: 1rem !important;
  }
}

@media (320px <= width) {
  .gap-xxs-150 {
    gap: 1.5rem !important;
  }
}

@media (320px <= width) {
  .gap-xxs-200 {
    gap: 2rem !important;
  }
}

@media (320px <= width) {
  .gap-xxs-250 {
    gap: 2.5rem !important;
  }
}

@media (320px <= width) {
  .gap-xxs-300 {
    gap: 3rem !important;
  }
}

@media (320px <= width) {
  .gap-xxs-400 {
    margin-top: 4rem !important;
  }
}

@media (320px <= width) {
  .gap-xxs-600 {
    gap: 6rem !important;
  }
}

@media (320px <= width) {
  .gap-xxs-800 {
    gap: 8rem !important;
  }
}

@media (320px <= width) {
  .gap-xxs-1000 {
    gap: 10rem !important;
  }
}

@media (480px <= width) {
  .gap-xs-0 {
    gap: 0 !important;
  }
}

@media (480px <= width) {
  .gap-xs-25 {
    gap: 0.25rem !important;
  }
}

@media (480px <= width) {
  .gap-xs-50 {
    gap: 0.5rem !important;
  }
}

@media (480px <= width) {
  .gap-xs-75 {
    gap: 0.75rem !important;
  }
}

@media (480px <= width) {
  .gap-xs-100 {
    gap: 1rem !important;
  }
}

@media (480px <= width) {
  .gap-xs-150 {
    gap: 1.5rem !important;
  }
}

@media (480px <= width) {
  .gap-xs-200 {
    gap: 2rem !important;
  }
}

@media (480px <= width) {
  .gap-xs-250 {
    gap: 2.5rem !important;
  }
}

@media (480px <= width) {
  .gap-xs-300 {
    gap: 3rem !important;
  }
}

@media (480px <= width) {
  .gap-xs-400 {
    margin-top: 4rem !important;
  }
}

@media (480px <= width) {
  .gap-xs-600 {
    gap: 6rem !important;
  }
}

@media (480px <= width) {
  .gap-xs-800 {
    gap: 8rem !important;
  }
}

@media (480px <= width) {
  .gap-xs-1000 {
    gap: 10rem !important;
  }
}

@media (600px <= width) {
  .gap-s-0 {
    gap: 0 !important;
  }
}

@media (600px <= width) {
  .gap-s-25 {
    gap: 0.25rem !important;
  }
}

@media (600px <= width) {
  .gap-s-50 {
    gap: 0.5rem !important;
  }
}

@media (600px <= width) {
  .gap-s-75 {
    gap: 0.75rem !important;
  }
}

@media (600px <= width) {
  .gap-s-100 {
    gap: 1rem !important;
  }
}

@media (600px <= width) {
  .gap-s-150 {
    gap: 1.5rem !important;
  }
}

@media (600px <= width) {
  .gap-s-200 {
    gap: 2rem !important;
  }
}

@media (600px <= width) {
  .gap-s-250 {
    gap: 2.5rem !important;
  }
}

@media (600px <= width) {
  .gap-s-300 {
    gap: 3rem !important;
  }
}

@media (600px <= width) {
  .gap-s-400 {
    margin-top: 4rem !important;
  }
}

@media (600px <= width) {
  .gap-s-600 {
    gap: 6rem !important;
  }
}

@media (600px <= width) {
  .gap-s-800 {
    gap: 8rem !important;
  }
}

@media (600px <= width) {
  .gap-s-1000 {
    gap: 10rem !important;
  }
}

@media (767px <= width) {
  .gap-md-0 {
    gap: 0 !important;
  }
}

@media (767px <= width) {
  .gap-md-25 {
    gap: 0.25rem !important;
  }
}

@media (767px <= width) {
  .gap-md-50 {
    gap: 0.5rem !important;
  }
}

@media (767px <= width) {
  .gap-md-75 {
    gap: 0.75rem !important;
  }
}

@media (767px <= width) {
  .gap-md-100 {
    gap: 1rem !important;
  }
}

@media (767px <= width) {
  .gap-md-150 {
    gap: 1.5rem !important;
  }
}

@media (767px <= width) {
  .gap-md-200 {
    gap: 2rem !important;
  }
}

@media (767px <= width) {
  .gap-md-250 {
    gap: 2.5rem !important;
  }
}

@media (767px <= width) {
  .gap-md-300 {
    gap: 3rem !important;
  }
}

@media (767px <= width) {
  .gap-md-400 {
    margin-top: 4rem !important;
  }
}

@media (767px <= width) {
  .gap-md-600 {
    gap: 6rem !important;
  }
}

@media (767px <= width) {
  .gap-md-800 {
    gap: 8rem !important;
  }
}

@media (767px <= width) {
  .gap-md-1000 {
    gap: 10rem !important;
  }
}

@media (992px <= width) {
  .gap-l-0 {
    gap: 0 !important;
  }
}

@media (992px <= width) {
  .gap-l-25 {
    gap: 0.25rem !important;
  }
}

@media (992px <= width) {
  .gap-l-50 {
    gap: 0.5rem !important;
  }
}

@media (992px <= width) {
  .gap-l-75 {
    gap: 0.75rem !important;
  }
}

@media (992px <= width) {
  .gap-l-100 {
    gap: 1rem !important;
  }
}

@media (992px <= width) {
  .gap-l-150 {
    gap: 1.5rem !important;
  }
}

@media (992px <= width) {
  .gap-l-200 {
    gap: 2rem !important;
  }
}

@media (992px <= width) {
  .gap-l-250 {
    gap: 2.5rem !important;
  }
}

@media (992px <= width) {
  .gap-l-300 {
    gap: 3rem !important;
  }
}

@media (992px <= width) {
  .gap-l-400 {
    margin-top: 4rem !important;
  }
}

@media (992px <= width) {
  .gap-l-600 {
    gap: 6rem !important;
  }
}

@media (992px <= width) {
  .gap-l-800 {
    gap: 8rem !important;
  }
}

@media (992px <= width) {
  .gap-l-1000 {
    gap: 10rem !important;
  }
}

@media (1024px <= width) {
  .gap-xl-0 {
    gap: 0 !important;
  }
}

@media (1024px <= width) {
  .gap-xl-25 {
    gap: 0.25rem !important;
  }
}

@media (1024px <= width) {
  .gap-xl-50 {
    gap: 0.5rem !important;
  }
}

@media (1024px <= width) {
  .gap-xl-75 {
    gap: 0.75rem !important;
  }
}

@media (1024px <= width) {
  .gap-xl-100 {
    gap: 1rem !important;
  }
}

@media (1024px <= width) {
  .gap-xl-150 {
    gap: 1.5rem !important;
  }
}

@media (1024px <= width) {
  .gap-xl-200 {
    gap: 2rem !important;
  }
}

@media (1024px <= width) {
  .gap-xl-250 {
    gap: 2.5rem !important;
  }
}

@media (1024px <= width) {
  .gap-xl-300 {
    gap: 3rem !important;
  }
}

@media (1024px <= width) {
  .gap-xl-400 {
    margin-top: 4rem !important;
  }
}

@media (1024px <= width) {
  .gap-xl-600 {
    gap: 6rem !important;
  }
}

@media (1024px <= width) {
  .gap-xl-800 {
    gap: 8rem !important;
  }
}

@media (1024px <= width) {
  .gap-xl-1000 {
    gap: 10rem !important;
  }
}

@media (1600px <= width) {
  .gap-xxl-0 {
    gap: 0 !important;
  }
}

@media (1600px <= width) {
  .gap-xxl-25 {
    gap: 0.25rem !important;
  }
}

@media (1600px <= width) {
  .gap-xxl-50 {
    gap: 0.5rem !important;
  }
}

@media (1600px <= width) {
  .gap-xxl-75 {
    gap: 0.75rem !important;
  }
}

@media (1600px <= width) {
  .gap-xxl-100 {
    gap: 1rem !important;
  }
}

@media (1600px <= width) {
  .gap-xxl-150 {
    gap: 1.5rem !important;
  }
}

@media (1600px <= width) {
  .gap-xxl-200 {
    gap: 2rem !important;
  }
}

@media (1600px <= width) {
  .gap-xxl-250 {
    gap: 2.5rem !important;
  }
}

@media (1600px <= width) {
  .gap-xxl-300 {
    gap: 3rem !important;
  }
}

@media (1600px <= width) {
  .gap-xxl-400 {
    margin-top: 4rem !important;
  }
}

@media (1600px <= width) {
  .gap-xxl-600 {
    gap: 6rem !important;
  }
}

@media (1600px <= width) {
  .gap-xxl-800 {
    gap: 8rem !important;
  }
}

@media (1600px <= width) {
  .gap-xxl-1000 {
    gap: 10rem !important;
  }
}

.visible-min-s {
  display: none !important;
}
@media (600px <= width) {
  .visible-min-s {
    display: block !important;
  }
}

.visible-max-s {
  display: none !important;
}
@media (width <= 600px) {
  .visible-max-s {
    display: block !important;
  }
}

.visible-min-md {
  display: none !important;
}
@media (767px <= width) {
  .visible-min-md {
    display: block !important;
  }
}

.visible-max-md {
  display: none !important;
}
@media (width <= 767px) {
  .visible-max-md {
    display: block !important;
  }
}

.visible-min-l {
  display: none !important;
}
@media (992px <= width) {
  .visible-min-l {
    display: block !important;
  }
}

.visible-min-l--flex {
  display: none !important;
}
@media (992px <= width) {
  .visible-min-l--flex {
    display: flex !important;
  }
}

.visible-max-l {
  display: block !important;
}
@media (992px <= width) {
  .visible-max-l {
    display: none !important;
  }
}

.visible-max-l--flex {
  display: flex !important;
}
@media (992px <= width) {
  .visible-max-l--flex {
    display: none !important;
  }
}

.text-max-width {
  max-width: 75ch;
}

.text-wrap {
  text-wrap-mode: wrap;
}

.text-nowrap {
  text-wrap-mode: nowrap;
}

.brand {
  display: flex;
  flex-direction: row;
  max-height: 3rem;
  max-width: 5rem;
  min-width: 5rem;
}

.responsive-image {
  width: 100%;
  max-inline-size: 100%;
  object-fit: cover;
}

.footer {
  width: 100%;
  background-color: #151515;
  z-index: 999;
}
.footer .footer__content {
  display: flex;
  align-items: center;
  padding: 1rem;
}

.footer--sticky {
  position: sticky;
  top: 100vh;
}

.header {
  display: flex;
  align-items: center;
  padding: 1rem;
  box-shadow: #e3e3e3 0px 1px 2px 0px;
  background-color: #ffffff;
  transition: box-shadow 0.3s cubic-bezier(0.39, 0.575, 0.565, 1);
  position: relative;
}

header[data-scrolled=true] {
  box-shadow: #e3e3e3 0px 1px 3px 0px, #e3e3e3 0px 1px 2px 0px;
}

.selection .selection__product {
  display: flex;
  flex-direction: column;
}
.selection {
  container-type: inline-size;
}
@container (min-inline-size: 767px) {
  .selection .selection__product {
    display: flex;
    flex-direction: row;
    align-items: stretch;
  }
  .selection .selection__product .selection__variants {
    flex: 1 60%;
  }
  .selection .selection__product .selection__summary {
    flex: 1 40%;
  }
}

.selection__input {
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  height: 1px;
  overflow: hidden;
  position: absolute;
  white-space: nowrap;
  width: 1px;
}

.selection__label {
  display: flex;
  align-items: center;
  padding: 1rem;
  font-size: clamp(0.9rem, 0.9rem + 0.1 * (100vw - 320px) / 1280, 1rem);
  line-height: 1.5;
  font-family: "UniversLTW01-55Roman";
  gap: 0.5rem;
  width: 100%;
  cursor: pointer;
  user-select: none;
  color: #151515;
}
.selection__label:focus, .selection__label:focus-visible {
  border-color: #151515;
  border-width: 1px;
  border-style: solid;
  border-radius: 2px;
  padding: 0.25rem;
}
.selection__label:hover {
  background-color: #f7f7f7;
  color: #151515;
}

.selection__indicator {
  display: flex;
  align-items: center;
  min-width: 1rem;
  color: #151515;
}

.selection__variants {
  container-type: inline-size;
}
.selection__variants .button-group .button {
  flex: 1 1 auto;
}
@container (min-inline-size: 320px) {
  .selection__variants .button-group {
    justify-content: flex-end;
  }
  .selection__variants .button-group .button {
    flex: 0 0 auto;
  }
}

.selection__summary {
  container-type: inline-size;
}
.selection__summary .button-group .button {
  flex: 1;
}
@container (min-inline-size: 320px) {
  .selection__summary .button-group {
    justify-content: flex-end;
  }
  .selection__summary .button-group .button {
    flex: 0 0 auto;
  }
}

.selection__variants {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.product {
  display: flex;
  flex-direction: column;
  background-color: #ffffff;
  border-color: #cbcbcb;
  border-style: solid;
  border-width: 1px;
}

.products-wrapper {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.product__header {
  display: flex;
  flex-direction: row;
  gap: 1rem;
}

.product__content {
  padding: 1rem;
}

.product__needs {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.summary__content {
  background-color: #ffffff;
  padding: 1rem;
}

.summary__submit {
  display: flex;
  flex-direction: column;
}

.teaser__header {
  padding-bottom: 1rem;
  border-bottom: 1px solid #151515;
}

.teaser__body {
  padding-top: 1rem;
  display: flex;
  flex-direction: column;
}
@media (767px <= width) {
  .teaser__body {
    flex-direction: row;
  }
}
.teaser__body {
  gap: 3rem;
}

.teaser__content {
  flex: 1 0 0;
}

.teaser-list {
  display: flex;
  flex-direction: column;
  flex: 1 0 0;
  gap: 1rem;
}

.teaser-list__item {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.teaser-list__item:nth-child(n+2) {
  padding-top: 1rem;
  border-top: 1px solid #151515;
}
.teaser-list__item .item__content {
  font-family: "UniversLTW01-45Light";
  font-size: clamp(1rem, 1rem + 0.25 * (100vw - 320px) / 1280, 1.25rem);
  line-height: 1.5;
}

body {
  background-color: #f0f0f0;
}

.page-container {
  container-type: inline-size;
  max-width: 1920px;
  margin: 0 auto;
}
@container (min-inline-size: 767px) {
  .page-container .title--measured {
    width: 80%;
  }
}
@container (min-inline-size: 992px) {
  .page-container .title--measured {
    width: 70%;
  }
}

.teaser__intro {
  width: calc(100% - 2rem);
  padding-top: 2rem;
  margin-top: -1rem;
  background-color: #ffffff;
}

.register__stage {
  display: flex;
  flex-direction: column;
  container-type: inline-size;
  aspect-ratio: 4/3;
  position: relative;
  background-image: url("/static/images/responsive-image/querformat.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: 1;
}
@media (600px <= width) {
  .register__stage {
    aspect-ratio: 16/9;
  }
}
.register__stage:before {
  content: "";
  position: absolute;
  z-index: 1;
  inset: 0;
  background-image: url("/static/bg_balken-stroke.svg");
  pointer-events: none;
  touch-action: none;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: -18% 100%;
}

.register__intro {
  container-type: inline-size;
  display: flex;
  flex-direction: column;
  z-index: 3;
  position: relative;
}
.register__intro .intro__content {
  width: calc(100% - 2rem);
  margin-top: -2rem;
  background-color: #ffffff;
  display: flex;
  flex-direction: column;
  gap: 2rem;
  padding: 2rem;
}
@container (min-inline-size: 767px) {
  .register__intro .intro__content {
    width: 80%;
    margin-top: -4rem;
  }
}
@container (min-inline-size: 992px) {
  .register__intro .intro__content {
    width: 70%;
    margin-top: -5rem;
  }
}

.register__form {
  container-type: inline-size;
  background-color: #ffffff;
  position: relative;
}
.register__form .form {
  padding: 2rem;
}
@container (min-inline-size: 600px) {
  .register__form .form {
    width: calc(100% - 2rem);
  }
}
@container (min-inline-size: 767px) {
  .register__form .form {
    width: 80%;
  }
}
@container (min-inline-size: 992px) {
  .register__form .form {
    width: 70%;
  }
}
.register__form .shape-triangle--bottom-right {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 10rem;
  aspect-ratio: 1;
  clip-path: polygon(0 100%, 100% 0, 100% 100%);
  background: linear-gradient(45deg, #f7f7f7, #f7f7f7);
  visibility: hidden;
}
@container (min-inline-size: 992px) {
  .register__form .shape-triangle--bottom-right {
    visibility: visible;
  }
}

.contact {
  container-type: inline-size;
  position: relative;
}
.contact .shape-triangle--top-left {
  position: absolute;
  top: 0;
  left: 0;
  width: 10rem;
  aspect-ratio: 1;
  clip-path: polygon(0 0, 100% 0, 0 100%);
  background: linear-gradient(-45deg, #f7f7f7, #f7f7f7);
  visibility: hidden;
}
@container (min-inline-size: 992px) {
  .contact .shape-triangle--top-left {
    visibility: visible;
  }
}

.dashboard {
  container-type: inline-size;
  height: 100%;
  min-height: -webkit-fill-available; /* Safari-specific fix */
  position: relative;
}
@container (inline-size <= 600px) {
  .dashboard .dashboard__sidebar {
    display: none;
  }
  .dashboard .dashboard__main {
    flex: 1 0 0;
    margin-left: 0.5rem !important;
    height: 100%;
  }
  .dashboard .dashboard__sidebar--hover,
  .dashboard .dashboard__sidebar--overlay {
    display: block;
  }
  .dashboard .button-wrapper {
    display: block;
  }
}
@container (inline-size > 600px) {
  .dashboard .button-wrapper {
    display: none;
  }
}
@supports not (container-type: inline-size) {
  .dashboard .dashboard__sidebar {
    display: none;
  }
  .dashboard .dashboard__main {
    flex: 1 0 0;
    margin-left: 0.5rem !important;
  }
  .dashboard .dashboard__sidebar--hover,
  .dashboard .dashboard__sidebar--overlay {
    display: block;
  }
  .dashboard .button-wrapper {
    display: block;
  }
}

.header__content {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 1.5rem;
}

.dashboard__stage {
  padding-right: 0.5rem;
  gap: 0.5rem;
  background-color: #f7f7f7;
  display: grid;
  grid-template-columns: 0 auto;
  height: 100%;
  position: relative;
}
@media (width <= 600px) {
  .dashboard__stage {
    grid-template-columns: 1fr auto;
    gap: 0;
  }
}

.dashboard__stage--overlapped {
  grid-template-columns: 0 auto;
}

.sidebar__toggle {
  padding: 1rem;
}

.dashboard__sidebar {
  background-color: #ffffff;
  height: 100%;
  margin-top: 0.5rem;
  overflow: hidden;
  position: relative;
  transition: width 0.3s ease-in-out 0.5s;
  width: 5rem;
  z-index: 2;
  display: flex;
  flex-direction: column;
}
.dashboard__sidebar .navigation-menu {
  opacity: 0;
  transition: opacity 0.3s ease;
}

.dashboard__sidebar--expanded,
.dashboard__sidebar--hover,
.dashboard__sidebar--overlay {
  width: fit-content;
}
.dashboard__sidebar--expanded .navigation-menu,
.dashboard__sidebar--hover .navigation-menu,
.dashboard__sidebar--overlay .navigation-menu {
  opacity: 1;
}

.dashboard__sidebar--hover,
.dashboard__sidebar--overlay {
  box-shadow: #e3e3e3 0px 10px 15px -3px, #e3e3e3 0px 4px 6px -2px;
}

.dashboard__main {
  margin-left: 5rem;
}

.sidebar__navigation {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.dashboard__main--extended {
  flex: 1 0 0;
  margin-left: 0;
  position: relative;
}

/***
    The new CSS reset - version 1.11.2 (last updated 15.11.2023)
    GitHub page: https://github.com/elad2412/the-new-css-reset
***/
/*
    Remove all the styles of the "User-Agent-Stylesheet", except for the 'display' property
    - The "symbol *" part is to solve Firefox SVG sprite bug
    - The "html" element is excluded, otherwise a bug in Chrome breaks the CSS hyphens property (https://github.com/elad2412/the-new-css-reset/issues/36)
 */
/* Preferred box-sizing value */
*,
*::before,
*::after {
  box-sizing: border-box;
}

/* Fix mobile Safari increase font-size on landscape mode */
html {
  -moz-text-size-adjust: none;
  -webkit-text-size-adjust: none;
  text-size-adjust: none;
}

body {
  margin: 0;
  padding: 0;
}

/* Reapply the pointer cursor for anchor tags */
a, button {
  cursor: revert;
}

button {
  cursor: pointer;
}

ol, ul {
  margin: 0;
  padding: 0;
}

/* For images to not be able to exceed their container */
img {
  max-inline-size: 100%;
  max-block-size: 100%;
}

/* removes spacing between cells in tables */
table {
  border-collapse: collapse;
}

/* Safari - solving issue when using user-select:none on the <body> text input doesn't working */
input, textarea {
  -webkit-user-select: auto;
}

/* revert the 'white-space' property for textarea elements on Safari */
textarea {
  white-space: revert;
}

/* minimum style to allow to style meter element */
meter {
  -webkit-appearance: revert;
  appearance: revert;
}

/* preformatted text - use only for this feature */
:where(pre) {
  all: revert;
  box-sizing: border-box;
}

/* reset default text opacity of input placeholder */
::placeholder {
  color: unset;
}

/* fix the feature of 'hidden' attribute.
   display:revert; revert to element instead of attribute */
:where([hidden]) {
  display: none;
}

/* revert for bug in Chromium browsers
   - fix for the content editable attribute will work properly.
   - webkit-user-select: auto; added for Safari in case of using user-select:none on wrapper element*/
:where([contenteditable]:not([contenteditable=false])) {
  -moz-user-modify: read-write;
  -webkit-user-modify: read-write;
  overflow-wrap: break-word;
  -webkit-line-break: after-white-space;
  -webkit-user-select: auto;
}

/* apply back the draggable feature - exist only in Chromium and Safari */
:where([draggable=true]) {
  -webkit-user-drag: element;
}

dialog {
  padding: 0;
  border: 0;
}

/* Revert Modal native behavior */
:where(dialog:modal) {
  all: revert;
  box-sizing: border-box;
}

/* Remove details summary webkit styles */
::-webkit-details-marker {
  display: none;
}

fieldset {
  border: 0;
  padding: 0;
  margin: 0;
}

address {
  font-style: normal;
}

legend {
  padding: 0;
}

.button--dropdown {
  background: transparent;
}
.button--dropdown:hover {
  background-color: #f7f7f7;
}
.button--dropdown:hover .button__label {
  color: #151515;
}
.button--dropdown:active {
  background-color: #e3e3e3;
}
.button--dropdown:active .button__label {
  color: #151515;
}
.button--dropdown[aria-expanded=true] {
  background-color: #e3e3e3;
}

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

.button--ghost-bright {
  background: transparent;
  color: #ffbb80;
}
.button--ghost-bright:hover {
  color: #ff9840;
}
.button--ghost-bright:hover .button__label {
  color: #ff9840;
}
.button--ghost-bright:active {
  background-color: #000000;
}
.button--ghost-bright:active .button__label {
  color: #ffbb80;
}
.button--ghost-bright .button__label {
  color: #ffbb80;
}
.button--ghost-bright:disabled, .button--ghost-bright[disabled],
.button--ghost-bright [aria-disabled=true] {
  color: #909090;
}
.button--ghost-bright:disabled .button__label, .button--ghost-bright[disabled] .button__label,
.button--ghost-bright [aria-disabled=true] .button__label {
  color: #909090;
}

.button--ghost-dark {
  background: transparent;
  color: #151515;
}
.button--ghost-dark:hover {
  background-color: #f7f7f7;
  color: #151515;
}
.button--ghost-dark:hover .button__label {
  color: #151515;
}
.button--ghost-dark:active {
  background-color: #e3e3e3;
  color: #151515;
}
.button--ghost-dark:active .button__label {
  color: #151515;
}
.button--ghost-dark[aria-expanded=true] {
  background-color: #e3e3e3;
}
.button--ghost-dark:disabled, .button--ghost-dark[disabled],
.button--ghost-dark [aria-disabled=true] {
  color: #b7b7b7;
}

.button--password {
  border-top: 1px solid #cbcbcb !important;
  border-right: 1px solid #cbcbcb !important;
  border-bottom: 1px solid #cbcbcb !important;
  border-left: 0 !important;
  border-radius: 0 0.25rem 0.25rem 0 !important;
  background-color: #ffffff !important;
}

.button--performance {
  background-color: #fa350f;
  color: #ffffff;
}
.button--performance:hover {
  background-color: #ca2b00;
  color: #ffffff;
}
.button--performance:hover .button__label {
  color: #ffffff;
}
.button--performance:active {
  background-color: #971f00;
  color: #ffffff;
}
.button--performance:active .button__label {
  color: #ffffff;
}
.button--performance .button__label {
  color: #ffffff;
}
.button--performance:disabled, .button--performance[disabled],
.button--performance [aria-disabled=true] {
  background-color: #fd5d33;
  color: #ffcbbd;
}

.button > .button__icon-wrapper:first-child {
  margin-left: 0.75rem;
}
.button > .button__icon-wrapper:last-child {
  margin-right: 0.25rem;
}
.button {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  border: 0;
  border-radius: 0.25rem;
  padding: 0;
  cursor: pointer;
  text-wrap: nowrap;
  font-family: "UniversLTW01-55Roman";
  font-size: 0.9rem;
  height: 3rem;
  min-width: 3rem;
}
.button :focus:not(:focus-visible) {
  outline: none;
}
.button:focus-visible {
  outline-color: #456bd6;
  outline-style: solid;
  outline-width: 2px;
  outline-offset: 3px;
}
.button:hover {
  transition: 0.15s;
}
.button > :first-child {
  margin-left: 0.75rem;
}
.button > :last-child {
  margin-right: 0.75rem;
}
.button:not(:has(.button__label)) > .button__icon-wrapper {
  margin-left: 0;
  margin-right: 0;
}
.button .button__label {
  text-align: center;
  white-space: nowrap;
  line-height: 1;
  display: inline-block;
  vertical-align: middle;
}
.button .button__icon-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 1.5rem;
  height: 1.5rem;
}
.button:active {
  transition: none;
}
.button:disabled, .button[disabled],
.button [aria-disabled=true] {
  pointer-events: none;
}

.button--s {
  gap: 0.25rem;
  font-family: "UniversLTW01-55Roman";
  font-size: 0.75rem;
  height: 2rem;
  min-width: 2rem;
}
.button--s .button__icon-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 1rem;
  height: 1rem;
}
.button--s .button__label {
  line-height: 1.85rem;
}
.button--s > :first-child {
  margin-left: 0.5rem;
}
.button--s > :last-child {
  margin-right: 0.5rem;
}

.button--xs > .button__icon-wrapper:first-child {
  margin-left: 0.75rem;
}
.button--xs > .button__icon-wrapper:last-child {
  margin-right: 0.75rem;
}
.button--xs {
  gap: 0.25rem;
  font-size: 0.75rem;
  line-height: 1.5;
  height: 1rem;
  min-width: 1rem;
}
.button--xs .button__icon-wrapper {
  width: 0.5rem;
  height: 0.5rem;
}
.button--xs .button__label {
  line-height: 1rem;
}
.button--xs > :first-child {
  margin-left: 0.25rem;
}
.button--xs > :last-child {
  margin-right: 0.25rem;
}

.button--is-hidden {
  visibility: hidden;
}

.button--no-wrap .button__label {
  white-space: nowrap;
}

.button--primary {
  background-color: #151515;
  color: #ffffff;
}
.button--primary:hover {
  background-color: #151515;
  color: #ffffff;
}
.button--primary:hover .button__label {
  color: #ffffff;
}
.button--primary:active {
  background-color: #151515;
  color: #ffffff;
}
.button--primary:active .button__label {
  color: #ffffff;
}
.button--primary .button__label {
  color: #ffffff;
}
.button--primary:disabled, .button--primary[disabled],
.button--primary [aria-disabled=true] {
  color: #b7b7b7;
  background-color: #525252;
}

.button--secondary {
  background-color: #ffffff;
  border-width: 1px;
  border-style: solid;
  border-color: #525252;
  color: #151515;
}
.button--secondary:hover {
  color: #151515;
  background-color: #cbcbcb;
}
.button--secondary:hover .button__label {
  color: #151515;
}
.button--secondary:active {
  background-color: #b7b7b7;
  color: #151515;
}
.button--secondary:active .button__label {
  color: #151515;
}
.button--secondary .button__label {
  color: #151515;
}
.button--secondary:disabled, .button--secondary[disabled],
.button--secondary [aria-disabled=true] {
  color: #151515;
  background-color: #ffffff;
}

.button--tab {
  position: relative;
  background: transparent;
  border-radius: 0.25rem 0.25rem 0 0;
  color: #151515;
}
.button--tab:after {
  content: "";
  display: block;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
}
.button--tab:not([aria-selected=true]):hover {
  background-color: #f7f7f7;
}
.button--tab:not([aria-selected=true]):hover .button__label {
  color: #151515;
}
.button--tab:not([aria-selected=true]):active {
  background-color: #e3e3e3;
}
.button--tab:not([aria-selected=true]):active .button__label {
  color: #151515;
}
.button--tab .button__label {
  color: #151515;
}
.button--tab[aria-selected=true] {
  background-color: #e3e3e3;
}
.button--tab[aria-selected=true] .button__label {
  color: #151515;
}

.button--tertiary {
  background-color: #ffecdc;
  color: #151515;
}
.button--tertiary:hover {
  background-color: #ffbb80;
  color: #151515;
}
.button--tertiary:hover .button__label {
  color: #151515;
}
.button--tertiary:active {
  background-color: #ff9840;
  color: #151515;
}
.button--tertiary:active .button__label {
  color: #151515;
}
.button--tertiary:disabled, .button--tertiary[disabled],
.button--tertiary [aria-disabled=true] {
  color: #909090;
  background-color: #f7f7f7;
}
.button--tertiary .button__label {
  color: #151515;
}

.accordion__panel {
  border-top: 1px solid #f0f0f0;
}

.accordion__trigger {
  display: flex;
  align-items: center;
  gap: 1rem;
  border-radius: 3px;
  padding-left: 0.5rem;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
  font-family: "UniversLTW01-55Roman";
  font-size: clamp(0.9rem, 0.9rem + 0.1 * (100vw - 320px) / 1280, 1rem);
  line-height: 1.5;
  cursor: pointer;
}
.accordion__trigger:hover {
  transition: 0.15s;
  background-color: #f7f7f7;
}
.accordion__trigger:hover .panel__title {
  color: #151515;
}
.accordion__trigger:focus {
  background-color: #f7f7f7;
}
.accordion__trigger:focus-visible {
  outline-color: #456bd6;
  outline-style: solid;
  outline-width: 2px;
  outline-offset: 3px;
}
.accordion__trigger:focus-visible .panel__title {
  color: #151515;
}
.accordion__trigger:active {
  transition: 0.15s;
  background-color: #e3e3e3;
}
.accordion__trigger:active .panel__title {
  color: #151515;
}
.accordion__trigger[aria-expanded=true] {
  transition: 0.15s;
  background-color: #e3e3e3;
}
.accordion__trigger[aria-expanded=true] .panel__title {
  color: #151515;
}

.panel__title {
  height: 100%;
  padding-right: 0.5rem;
}

.trigger__icon {
  height: 100%;
  justify-content: center;
  min-width: 1.5rem;
}

.accordion-panel__content {
  padding-bottom: 1rem;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.5rem;
}

.trigger__icon-wrapper {
  width: 0.5rem;
  height: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 1.5rem;
  height: 1.5rem;
}

.badge__count {
  font-family: "UniversLTW01-65Bold";
  font-size: clamp(0.9rem, 0.9rem + 0.1 * (100vw - 320px) / 1280, 1rem);
  line-height: 1.5;
  fill: #ffffff !important;
}

.card {
  display: flex;
  flex-direction: column;
  padding: 2rem;
  gap: 2rem;
  background-color: #ffffff;
  border-style: solid;
  border-width: 1px;
  border-color: #f0f0f0;
}

.card--stacked {
  gap: 0;
  padding: 0;
  border: 0;
}
.card--stacked .card__stage img {
  height: 100%;
  width: 100%;
  inset: 0px;
  object-fit: cover;
}
.card--stacked .card__content {
  background-color: #ffffff;
  border-style: solid;
  border-width: 1px;
  border-color: #f0f0f0;
  width: calc(100% - 2rem);
  gap: 2rem;
  padding: 2rem;
  z-index: 2;
}
.card--stacked .card__header {
  color: #525252;
}
.card--stacked .card__body {
  gap: 1.5rem;
}
.card--stacked .stacked-bottom {
  margin-top: -2rem;
  z-index: 1;
}

.card__content {
  padding: 1rem;
  display: flex;
  flex-direction: column;
}

.content-slider {
  overflow-x: hidden;
  container-type: inline-size;
  width: 100%;
  position: relative;
}
.content-slider .splide {
  overflow: visible;
}
.content-slider .splide__track {
  overflow: visible;
  padding-block: 0.25rem;
}
.content-slider .splide__list {
  gap: 2px;
}
.content-slider .splide__slide {
  flex-grow: 1;
  flex-shrink: initial;
  min-width: 320px;
  margin-right: 0 !important;
  margin-inline-end: 0 !important;
  background-color: #ffffff;
}
.content-slider .splide__pagination {
  display: flex;
  align-items: center;
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
  border-radius: 40px;
  gap: 1.5rem;
  justify-content: center;
  position: static;
}
.content-slider .splide__pagination__page {
  width: 0.75rem;
  height: 0.75rem;
  border-radius: 999px;
  background-color: #cbcbcb;
  opacity: 1;
  outline: 1px solid #cbcbcb;
  outline-offset: 0px;
  transition: background-color 0.3s cubic-bezier(0.4, 0, 0.2, 1), outline-offset 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.content-slider .splide__pagination__page:hover, .content-slider .splide__pagination__page:active {
  background-color: #909090;
  outline-offset: 0.5rem;
}
@media (hover: none) and (pointer: coarse) {
  .content-slider .splide__pagination__page:hover {
    background-color: #cbcbcb;
    outline-offset: 0px;
  }
  .content-slider .splide__pagination__page:active {
    background-color: #909090;
    outline-offset: 0.5rem;
  }
}
.content-slider .splide__pagination__page.is-active {
  background-color: #151515;
  transform: none;
}
.content-slider .splide__arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-family: "UniversLTW01-55Roman";
  height: 2rem;
  min-width: 2rem;
  border-radius: 50%;
  padding: 0;
  cursor: pointer;
  text-wrap: nowrap;
  position: absolute;
  top: 28%;
  transform: translateY(-28%);
  z-index: 2;
  background-color: #525252;
  color: #ffffff;
  opacity: 1;
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}
.content-slider .splide__arrow:hover {
  color: #ffffff;
  background-color: #151515;
  opacity: 1 !important;
}
.content-slider .splide__arrow:disabled, .content-slider .splide__arrow[disabled],
.content-slider .splide__arrow [aria-disabled=true] {
  color: #ffffff;
  background-color: #525252;
}
.content-slider .splide__arrow svg {
  fill: #ffffff;
  transition: fill 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}
.content-slider .splide__arrow .button__icon-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 1rem;
  min-height: 1rem;
}
.content-slider .splide__arrow .splide__arrow:hover,
.content-slider .splide__arrow .splide__arrow:focus-visible {
  background-color: #ffffff;
  border-color: #e3e3e3;
  color: #151515;
}
.content-slider .splide__arrow:focus-visible {
  outline: 2px solid #456bd6;
}
.content-slider .splide__arrow .splide__arrow:disabled {
  opacity: 1;
  color: #ffffff;
  background-color: #525252;
}
.content-slider .splide__arrow .splide__arrow--prev .button__icon-wrapper {
  transform: rotate(180deg);
}
.content-slider .splide__arrow .splide__arrow:hover:not(:disabled) {
  opacity: 1 !important;
}
.content-slider .splide__arrow .content-card {
  background-color: #ffffff;
  padding: 1rem;
  height: 100%;
}

.splide__arrow--prev {
  left: 0.75rem !important;
}

.splide__arrow--next {
  right: 0.75rem !important;
}

.table-overflow {
  display: block;
  overflow-x: auto;
}

.data-table {
  width: 100%;
}

.data-table--zebra .table-row:nth-child(even) {
  background-color: #f7f7f7;
}

.data-table--lined .table-row {
  border-bottom: 1px solid #f0f0f0;
}

.header-cell {
  font-family: "UniversLTW01-65Bold";
  color: #151515;
  text-align: left;
  font-size: 0.9rem;
  flex: 1 1 0;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.table-body {
  width: 100%;
}

.table-row {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  padding: 1rem;
}

.data-cell {
  display: flex;
  flex: 1 0 0;
  align-items: center;
  font-family: "UniversLTW01-45Light";
  width: 100%;
  gap: 0.5rem;
  font-size: 0.9rem;
}
.data-cell--fit {
  max-width: fit-content;
}

.table__header {
  background-color: #ffffff;
}
.table__header[data-scrolled=true] {
  box-shadow: #e3e3e3 0px 1px 3px 0px, #e3e3e3 0px 1px 2px 0px;
}

.table-data--sticky {
  position: sticky;
  top: 0;
  z-index: 1;
}

.data-table--sticky-column .header-cell--sticky,
.data-table--sticky-column .data-cell--sticky {
  position: sticky;
  left: 0;
  z-index: 2;
  background-color: #ffffff;
  padding: 1rem;
  box-shadow: #e3e3e3 0px 1px 2px 0px;
}
.data-table--sticky-column .header-cell--sticky::after,
.data-table--sticky-column .data-cell--sticky::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 1px;
  height: 100%;
  background-color: #f0f0f0;
}
.data-table--sticky-column .header-cell--sticky[data-scrolled-horizontal=true]:not(.header-cell--sticky-both),
.data-table--sticky-column .data-cell--sticky[data-scrolled-horizontal=true] {
  box-shadow: #e3e3e3 0px 4px 6px -1px, #e3e3e3 0px 2px 4px -1px;
}
.data-table--sticky-column .header-cell--sticky[data-scrolled-horizontal=true]:not(.header-cell--sticky-both)::after,
.data-table--sticky-column .data-cell--sticky[data-scrolled-horizontal=true]::after {
  box-shadow: 2px 0 8px rgba(0, 0, 0, 0.15);
}
.data-table--sticky-column .header-cell--sticky-both {
  z-index: 3;
  box-shadow: none !important;
  box-shadow: #e3e3e3 0px 10px 15px -3px, #e3e3e3 0px 4px 6px -2px;
}
.data-table--sticky-column .header-cell--sticky-both::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 1px;
  height: 100%;
  background-color: #f0f0f0;
  box-shadow: none !important;
}
.table-row:nth-child(even) .data-table--sticky-column .data-cell--sticky {
  background-color: #f7f7f7;
}
.table-row:nth-child(odd) .data-table--sticky-column .data-cell--sticky {
  background-color: #ffffff;
}
.data-table--sticky-column .table-row {
  align-items: stretch;
  padding: 0;
}
.data-table--sticky-column .header-cell {
  padding-top: 1rem;
  padding-bottom: 1rem;
}
.data-table--sticky-column .data-cell {
  align-self: stretch;
}

.dialog {
  display: flex;
  flex-direction: column;
  position: relative;
  padding: 1rem;
  border-style: solid;
  border-radius: 0.25rem;
  border-width: 1px;
  border-color: #f0f0f0;
  background-color: #ffffff;
}
.dialog__title {
  font-family: "UniversLTW01-55Roman";
  font-size: clamp(1rem, 1rem + 0.25 * (100vw - 320px) / 1280, 1.25rem);
  line-height: 1.5;
}
.dialog__body {
  margin-top: 0.5rem;
}
.dialog__text {
  font-family: "UniversLTW01-45Light";
  font-size: clamp(0.9rem, 0.9rem + 0.1 * (100vw - 320px) / 1280, 1rem);
  line-height: 1.5;
}
.dialog__footer {
  margin-top: 1rem;
  display: flex;
  justify-content: flex-end;
  gap: 1rem;
}

@keyframes slide-in-bottom {
  0% {
    transform: translateY(1000px);
    transform: translateZ(0px);
    opacity: 0;
  }
  100% {
    transform: translateY(0);
    transform: translateZ(0px);
    opacity: 1;
  }
}
.motion--slide-in-bottom-quick {
  animation: slide-in-bottom 0.15s ease-in-out both;
}
@media screen and (prefers-reduced-motion: reduce) {
  .motion--slide-in-bottom-quick {
    animation: none;
  }
}

.motion--slide-in-bottom-moderate {
  animation: slide-in-bottom 0.3s ease-in-out both;
}
@media screen and (prefers-reduced-motion: reduce) {
  .motion--slide-in-bottom-moderate {
    animation: none;
  }
}

.motion--slide-in-bottom-gentle {
  animation: slide-in-bottom 0.6s ease-in-out both;
}
@media screen and (prefers-reduced-motion: reduce) {
  .motion--slide-in-bottom-gentle {
    animation: none;
  }
}

@keyframes slide-in-right {
  0% {
    transform: translateX(1000px);
    transform: translateZ(0px);
    opacity: 0;
  }
  100% {
    transform: translateX(0);
    transform: translateZ(0px);
    opacity: 1;
  }
}
.motion--slide-in-right-quick {
  animation: slide-in-right 0.15s ease-out both;
}
@media screen and (prefers-reduced-motion: reduce) {
  .motion--slide-in-right-quick {
    animation: none;
  }
}

.motion--slide-in-right-moderate {
  animation: slide-in-right 0.3s ease-out both;
}
@media screen and (prefers-reduced-motion: reduce) {
  .motion--slide-in-right-moderate {
    animation: none;
  }
}

.motion--slide-in-right-gentle {
  animation: slide-in-right 0.6s ease-out both;
}
@media screen and (prefers-reduced-motion: reduce) {
  .motion--slide-in-right-gentle {
    animation: none;
  }
}

.drawer-container {
  container-type: inline-size;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  position: relative;
}

.overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: transparent;
  opacity: 0;
  visibility: hidden;
  z-index: 999;
}

.overlay--visible {
  opacity: 1;
  background-color: rgba(0, 0, 0, 0.5);
  visibility: visible;
  transition: 0.15s;
}

.drawer {
  display: flex;
  flex-direction: column;
  padding: 1rem;
  position: fixed;
  background-color: #ffffff;
  z-index: 1000;
}

@container (max-inline-size: 600px) {
  .drawer {
    bottom: -100%;
  }
  .drawer--visible {
    animation: slide-in-bottom 0.3s ease-in-out both;
  }
  @media screen and (prefers-reduced-motion: reduce) {
    .drawer--visible {
      animation: none;
    }
  }
  .drawer--visible {
    width: 100vw;
    right: 0;
    top: 0;
    height: 100vh;
  }
}
@container (min-inline-size: 600px) {
  .drawer {
    right: -35%;
  }
  .drawer--visible {
    animation: slide-in-right 0.3s ease-out both;
  }
  @media screen and (prefers-reduced-motion: reduce) {
    .drawer--visible {
      animation: none;
    }
  }
  .drawer--visible {
    width: 25%;
    height: 100vh;
    right: 0;
  }
}
@keyframes slide-in-dropdown {
  0% {
    transform: translateY(top);
    transform: translateZ(0px);
    opacity: 0;
  }
  100% {
    transform: translateY(0);
    transform: translateZ(0px);
    opacity: 1;
  }
}
.motion--slide-in-dropdown-quick {
  animation: slide-in-dropdown 0.15s cubic-bezier(0.23, 1, 0.32, 1) both;
}
@media screen and (prefers-reduced-motion: reduce) {
  .motion--slide-in-dropdown-quick {
    animation: none;
  }
}

.motion--slide-in-dropdown-moderate {
  animation: slide-in-dropdown 0.3s cubic-bezier(0.23, 1, 0.32, 1) both;
}
@media screen and (prefers-reduced-motion: reduce) {
  .motion--slide-in-dropdown-moderate {
    animation: none;
  }
}

.motion--slide-in-dropdown-gentle {
  animation: slide-in-dropdown 0.6s cubic-bezier(0.23, 1, 0.32, 1) both;
}
@media screen and (prefers-reduced-motion: reduce) {
  .motion--slide-in-dropdown-gentle {
    animation: none;
  }
}

.dropdown {
  position: relative;
}
.dropdown .dropdown__container {
  animation: slide-in-dropdown 0.3s cubic-bezier(0.23, 1, 0.32, 1) both;
}
@media screen and (prefers-reduced-motion: reduce) {
  .dropdown .dropdown__container {
    animation: none;
  }
}
.dropdown .dropdown__container {
  box-shadow: #e3e3e3 0px 4px 6px -1px, #e3e3e3 0px 2px 4px -1px;
  background-color: #ffffff;
  border-radius: 0.25rem;
  position: absolute;
  left: auto;
  z-index: 1;
  width: auto;
}
.dropdown--end .dropdown__container {
  right: 0;
}
@media (width <= 600px) {
  .dropdown--adaptive .button--dropdown .button__label {
    display: none;
  }
}

.feedback {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 1rem;
  text-align: center;
}
.feedback__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  border-radius: 40%;
}
.feedback--info .feedback__icon {
  background-color: #b9c8f0;
  color: #7490e0;
}
.feedback--success .feedback__icon {
  background-color: #aaf4cf;
  color: #3bc784;
}
.feedback--error .feedback__icon {
  background-color: #facdd6;
  color: #eb4041;
}

.file-upload {
  display: flex;
  flex-direction: column;
}

.file-upload__file {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  color: #525252;
  margin-top: 1.5rem;
  padding: 0.5rem 1rem;
  background-color: #e3e3e3;
}

.file-upload__title {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  font-family: "UniversLTW01-55Roman";
  font-size: 0.9rem;
  color: #525252;
  flex: 1;
}

.flex-parent {
  display: flex;
  align-items: center;
  padding: 10px;
  margin: 30px 0;
}

.form__submit {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.form__submit .copy {
  display: inline-block;
}
@container (min-inline-size: 600px) {
  .form__submit button[type=submit] {
    align-self: flex-end;
  }
}

@keyframes slide-in-left {
  0% {
    transform: translateX(-1000px);
    transform: translateZ(0px);
    opacity: 0;
  }
  100% {
    transform: translateX(0);
    transform: translateZ(0px);
    opacity: 1;
  }
}
.motion--slide-in-left-quick {
  animation: slide-in-left 0.15s ease-out 0.1s both;
}
@media screen and (prefers-reduced-motion: reduce) {
  .motion--slide-in-left-quick {
    animation: none;
  }
}

.motion--slide-in-left-moderate {
  animation: slide-in-left 0.3s ease-out 0.1s both;
}
@media screen and (prefers-reduced-motion: reduce) {
  .motion--slide-in-left-moderate {
    animation: none;
  }
}

.motion--slide-in-left-gentle {
  animation: slide-in-left 0.6s ease-out 0.1s both;
}
@media screen and (prefers-reduced-motion: reduce) {
  .motion--slide-in-left-gentle {
    animation: none;
  }
}

.link {
  color: #151515;
}

.link--inline {
  font-family: inherit;
  color: inherit;
}

.link--standalone {
  font-family: "UniversLTW01-55Roman";
}

.link--login {
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  position: relative;
  color: #151515;
}
.link--login:hover {
  color: #151515;
}
.link--login:hover:hover:after {
  width: 100%;
  animation: slide-in-left 0.3s ease-out 0.1s both;
}
@media screen and (prefers-reduced-motion: reduce) {
  .link--login:hover:hover:after {
    animation: none;
  }
}
.link--login:active {
  color: #151515;
}
@media (600px <= width) {
  .link--login {
    gap: 0.5rem;
  }
  .link--login:after {
    content: "";
    position: absolute;
    height: 1px;
    width: 0;
    display: block;
    background-color: #f7f7f7;
    bottom: -2px;
    left: 0;
  }
}
.link--login .link__text {
  font-size: 0.9rem;
  font-family: "UniversLTW01-55Roman";
}
@media (width <= 600px) {
  .link--login .link__text {
    clip: rect(0 0 0 0);
    clip-path: inset(50%);
    height: 1px;
    overflow: hidden;
    position: absolute;
    white-space: nowrap;
    width: 1px;
  }
}
.link--login .link__icon-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 1.5rem;
  height: 1.5rem;
}
@media (600px <= width) {
  .link--login .link__icon-wrapper {
    width: 1rem;
    height: 1rem;
  }
}

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

ul {
  list-style-position: inside; /* Bullet wird innerhalb der Box angezeigt */
  padding-left: 0; /* Entferne Standard-Einrückung */
}

.list--unordered {
  list-style-position: inside;
  padding-left: 0;
}
.list--unordered li {
  text-indent: -0.5rem;
  padding-left: 1rem;
}
.list--unordered li:before {
  content: "•";
  font-weight: bold;
  display: inline-block;
  width: 0.5rem;
}

.list--ordered {
  counter-reset: list-counter;
}
.list--ordered li {
  counter-increment: list-counter;
}
.list--ordered li:before {
  content: counter(list-counter) ". ";
  font-weight: bold;
  display: inline-block;
  width: 1.5rem;
}

.list--unstyled li:before {
  content: none;
}

.list--lined .list__item {
  border-bottom: 1px solid #f0f0f0;
}

.list--divided {
  padding-top: 1rem;
  border-style: solid;
  border-color: #f0f0f0;
  border-width: 1px;
}

.list--zebra .list__item {
  padding-right: 1rem;
  padding-left: 1rem;
}
.list--zebra .list__item:nth-child(odd) {
  background-color: #f7f7f7;
}

.list--horizontal {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}

.list-group {
  display: flex;
  flex-direction: column;
}

.list--bare {
  list-style: none;
}

.list__item {
  color: #151515;
  font-family: "UniversLTW01-45Light";
  line-height: 150%;
  padding-top: 0.5rem;
  padding-right: 0;
  padding-bottom: 0.5rem;
  padding-left: 0;
}
.list__item strong {
  font-family: "UniversLTW01-65Bold";
}

.list__item--s {
  font-size: 0.9rem;
}

.list__item--divided {
  padding-top: 0.5rem;
  margin-top: 1rem;
  border-width: 1px;
  border-style: solid;
  border-color: #f0f0f0;
}

.list__item--bold .link {
  font-family: "UniversLTW01-65Bold";
}

.list__item--secondary {
  color: #525252;
}

.nav-menu {
  display: flex;
  list-style: none;
}

.nav-menu--horizontal {
  flex-direction: row;
  align-items: center;
  gap: 0.5rem;
}

.nav-menu--vertical {
  flex-direction: column;
  gap: 0.5rem;
}

.nav-menu--sublevel {
  padding: 0.5rem;
}

.menu__item--current .menu__link {
  font-family: "UniversLTW01-65Bold";
  color: #151515;
}

.menu__link {
  padding: 0.5rem;
  font-size: clamp(0.9rem, 0.9rem + 0.1 * (100vw - 320px) / 1280, 1rem);
  line-height: 1.5;
  font-family: "UniversLTW01-55Roman";
  color: #525252;
  display: inline-block;
  text-decoration: none;
  width: 100%;
  border-radius: 0.25rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.menu__link:hover {
  background-color: #f7f7f7;
  color: #151515;
}
.menu__link:active {
  background-color: #e3e3e3;
  color: #151515;
}

.breadcrumb {
  display: flex;
  flex-direction: row;
  container-type: inline-size;
  flex-wrap: nowrap;
  gap: 0.5rem;
}

.breadcrumb__menu {
  display: flex;
  flex-direction: row;
  gap: 0.5rem;
  width: 100%;
}

.breadcrumb__menu-item {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 0.5rem;
  white-space: nowrap;
  border-radius: 2px;
}

.breadcrumb__menu-item--current {
  font-family: "UniversLTW01-65Bold";
  color: #222222;
  font-size: 0.9rem;
  overflow-x: hidden;
}
.breadcrumb__menu-item--current span {
  overflow: hidden;
  text-overflow: ellipsis;
}

.breadcrumb__menu-item--dropdown {
  position: relative;
}

.breadcrumb__link {
  font-family: "UniversLTW01-55Roman";
  color: #222222;
  font-size: 0.9rem;
  text-wrap: nowrap;
  display: block;
  position: relative;
  padding: 0.5rem;
  width: 100%;
}
.breadcrumb__link:hover {
  color: #151515;
}
.breadcrumb__link:active {
  color: #151515;
}

.menu__dropdown {
  box-shadow: #e3e3e3 0px 1px 3px 0px, #e3e3e3 0px 1px 2px 0px;
  display: flex;
  flex-direction: column;
  position: absolute;
  top: calc(100% - 0.25rem);
  left: 0;
  z-index: 999;
  background-color: white;
  padding: 0.5rem;
  border-radius: 0.25rem;
}

.pagination__menu {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: #222222;
}

.pagination__select {
  display: flex;
  gap: 0.5rem;
}
.pagination__select .select__row {
  border-width: 1px;
  border-color: #cbcbcb;
}

.notification {
  display: flex;
  padding: 1rem;
  gap: 1rem;
  border-style: solid;
  border-width: 1px;
  border-radius: 2px;
}
.notification--info {
  background-color: #b9c8f0;
  border-color: #7490e0;
  color: #091c52;
}
.notification--success {
  background-color: #aaf4cf;
  border-color: #3bc784;
  color: #044223;
}
.notification--warning {
  background-color: #fef5e1;
  border-color: #f6cd7d;
  color: #573720;
}
.notification--invalid {
  background-color: #facdd6;
  border-color: #eb4041;
  color: #320d16;
}
.notification__icon {
  padding-top: 0.2rem;
  min-width: 1.5rem;
}
.notification__body {
  margin-top: 0.5rem;
}
.notification__title {
  font-size: clamp(0.9rem, 0.9rem + 0.1 * (100vw - 320px) / 1280, 1rem);
  line-height: 1.5;
  font-family: "UniversLTW01-55Roman";
}
.notification__text {
  font-size: clamp(0.9rem, 0.9rem + 0.1 * (100vw - 320px) / 1280, 1rem);
  line-height: 1.5;
  font-family: "UniversLTW01-45Light";
}

.popover {
  display: inline-block;
}
.popover__overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 9998;
}
.popover__content {
  box-shadow: #e3e3e3 0px 10px 15px -3px, #e3e3e3 0px 4px 6px -2px;
  position: absolute;
  z-index: 9999;
  background-color: #ffffff;
  border-radius: 2px;
  pointer-events: auto;
}
.popover__inner {
  pointer-events: auto;
  padding: 1rem;
}

.progress-indicator__circle .spinner__track {
  stroke-dashoffset: 0;
  stroke-dasharray: 191.64;
  -webkit-animation-name: spinner;
  animation-name: spinner;
}
.progress-indicator__circle--dimension-l {
  height: 3rem;
  width: 3rem;
}
.progress-indicator__circle--dimension-m {
  height: 2rem;
  width: 2rem;
}
.progress-indicator__circle--dimension-s {
  height: 1rem;
  width: 1rem;
}

.progress-indicator__spinner {
  -webkit-animation-name: spin;
  animation-name: spin;
  -webkit-animation-duration: 13s;
  animation-duration: 13s;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
  -webkit-animation-timing-function: linear;
  animation-timing-function: linear;
}

.spinner__indicator {
  stroke: #cbcbcb;
  fill: none;
}

.spinner__track {
  fill: none;
  -webkit-transform-origin: center;
  transform-origin: center;
  -webkit-animation-duration: 2s;
  animation-duration: 2s;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
  -webkit-animation-timing-function: ease-in-out;
  animation-timing-function: ease-in-out;
  position: absolute;
  top: 0;
  left: 0;
  stroke: #ff7600;
}

@keyframes spinner {
  0% {
    stroke-dashoffset: 191.64;
  }
  50% {
    stroke-dashoffset: 47.91;
    -webkit-transform: rotate(135deg);
    transform: rotate(135deg);
  }
  100% {
    stroke-dashoffset: 191.64;
    -webkit-transform: rotate(450deg);
    transform: rotate(450deg);
  }
}
.search {
  display: flex;
  flex-direction: column;
}

.input-wrapper {
  flex: 1 0 0;
  position: relative;
}
.input-wrapper .button--clear-input {
  margin-right: 0.5rem;
}

.snackbar {
  display: flex;
  flex-direction: column;
}
@media (600px <= width) {
  .snackbar {
    flex-direction: row;
  }
}
.snackbar {
  box-shadow: #e3e3e3 0px 4px 6px -1px, #e3e3e3 0px 2px 4px -1px;
  padding: 1rem;
  gap: 1rem;
  background-color: #222222;
  border-radius: 0.25rem;
}
@media (600px <= width) {
  .snackbar {
    gap: 2rem;
    align-items: center;
  }
}

.snackbar__interaction {
  display: flex;
  justify-content: flex-end;
}

.snackbar__message {
  font-size: clamp(0.9rem, 0.9rem + 0.1 * (100vw - 320px) / 1280, 1rem);
  line-height: 1.5;
  font-family: "UniversLTW01-55Roman";
  color: #ffffff;
}

.stepper-container {
  padding: 0.25rem;
  background-color: #f7f7f7;
  max-width: fit-content;
}

.numeric-stepper {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  padding: 0.5rem;
  padding-right: 0.25rem;
  background-color: #ffffff;
  border-radius: 2px;
}

.numeric-stepper__input {
  display: flex;
}
.numeric-stepper__input input[type=number] {
  padding: 0.25rem;
  padding-right: 0;
  height: auto;
  appearance: textfield;
  -moz-appearance: textfield;
}
.numeric-stepper__input input[type=number]::-webkit-outer-spin-button, .numeric-stepper__input input[type=number]::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.numeric-stepper__buttons {
  display: flex;
  gap: 0.5rem;
}

.switch-container {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  font-size: clamp(0.9rem, 0.9rem + 0.1 * (100vw - 320px) / 1280, 1rem);
  line-height: 1.5;
  gap: 0.5rem;
  user-select: none;
  font-family: "UniversLTW01-55Roman";
  font-size: 0.75rem;
}
.switch-container:focus, .switch-container:hover {
  cursor: pointer;
}
.switch-container .switch {
  background-color: #909090;
  position: relative;
  display: inline-block;
  border-radius: 128px;
  height: 1.5rem;
  width: 3rem;
}
.switch-container[aria-checked=true] .switch {
  background-color: #179a59;
}
.switch-container[aria-checked=true] .switched__off {
  display: none;
}
.switch-container[aria-checked=true] .circle {
  background-repeat: no-repeat;
  background-position: center;
  right: 4px;
}
.switch-container[aria-checked=false] .circle {
  background: #ffffff;
  left: 4px;
}

.circle {
  background-color: #ffffff;
  position: absolute;
  display: inline-block;
  top: 0.25rem;
  border-radius: 50%;
  height: 1rem;
  width: 1rem;
}

.switch__text {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.switch__state {
  color: #151515;
}

.switch__description {
  color: #525252;
}

.tag {
  border-radius: 4px;
  align-items: center;
  padding-left: 0.5rem;
  padding-right: 0.5rem;
  padding-top: 0.25rem;
  padding-bottom: 0.25rem;
  display: inline-flex;
  gap: 0.25rem;
  max-height: 1.5rem;
  border: 0;
}

.tag--green {
  background-color: #aaf4cf;
  color: #07753f;
}

.tag--dark {
  background-color: #151515;
  color: #ffffff;
}

.tag--performance {
  background-color: #ffcbbd;
  color: #6d1700;
}

.tag--blue {
  background-color: #b9c8f0;
  color: #123ba3;
}

.tag--grey {
  background-color: #e3e3e3;
  color: #151515;
}

.tag__label {
  font-family: "UniversLTW01-55Roman";
  font-size: 0.75rem;
  line-height: 1.5;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.tag__icon-wrapper {
  display: flex;
  width: 1rem;
}

.tabs {
  background: #ffffff;
  max-width: 100%;
}

.tabs__navigation {
  display: flex;
  overflow-x: auto;
  overscroll-behavior-x: contain;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
  touch-action: pan-x;
  scroll-behavior: auto;
}
.tabs__navigation:focus-visible {
  outline: none;
}
.tabs__navigation::-webkit-scrollbar {
  height: 6px;
}
.tabs__navigation::-webkit-scrollbar-track {
  background: transparent;
}
.tabs__navigation::-webkit-scrollbar-thumb {
  background: rgba(0, 0, 0, 0.25);
  border-radius: 3px;
}
.tabs__navigation::-webkit-scrollbar-thumb:hover {
  background: rgba(0, 0, 0, 0.4);
}

.button--tab {
  flex: 0 0 auto;
  white-space: nowrap;
}

.tabs__scroll-wrapper {
  position: relative;
  display: flex;
  align-items: stretch;
}
.tabs__scroll-wrapper .tabs__navigation {
  scroll-behavior: auto;
}

.tabs__scroll-wrapper::before, .tabs__scroll-wrapper::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 1.75rem;
  pointer-events: none;
  z-index: 1;
  opacity: 0;
  transition: none;
}
.tabs__scroll-wrapper::before {
  left: 0;
  background: linear-gradient(to right, rgb(255, 255, 255), rgba(255, 255, 255, 0));
}
.tabs__scroll-wrapper::after {
  right: 0;
  background: linear-gradient(to left, rgb(255, 255, 255), rgba(255, 255, 255, 0));
}
.tabs__scroll-wrapper.has-left::before {
  opacity: 1;
}
.tabs__scroll-wrapper.has-right::after {
  opacity: 1;
}

.tab {
  padding-top: 1rem;
  padding-bottom: 1rem;
  width: 100%;
  max-width: calc(100vw - 1rem);
  overflow: auto;
}

.tab--invisible {
  display: none;
}

.toggle {
  display: flex;
  justify-content: space-around;
  background-color: #f7f7f7;
  border-radius: 2px;
  padding: 0.25rem;
}
.toggle input[type=radio] {
  display: none;
}
.toggle input[type=radio]:checked + .toggle__label {
  transition: background-color 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  background-color: #d1daf5;
  color: #151515;
}

.toggle__label {
  flex: 1;
  text-align: center;
  padding: 0.5rem 1rem;
  cursor: pointer;
  border-radius: 2px;
  text-wrap: nowrap;
  font-family: "UniversLTW01-55Roman";
  font-size: 0.75rem;
}

.validation {
  padding: 0.5rem;
  border-radius: 1px;
  font-size: clamp(0.9rem, 0.9rem + 0.1 * (100vw - 320px) / 1280, 1rem);
  line-height: 1.5;
  font-family: "UniversLTW01-55Roman";
}
.validation--info {
  background-color: #b9c8f0;
  color: #091c52;
}
.validation--success {
  background-color: #aaf4cf;
  color: #044223;
}
.validation--warning {
  background-color: #fef5e1;
  color: #573720;
}
.validation--invalid {
  background-color: #facdd6;
  color: #320d16;
}

.validation__text {
  font-family: "UniversLTW01-55Roman";
  font-size: 0.75rem;
  line-height: 1.5;
}

.video {
  container-type: inline-size;
}

@container (min-inline-size: 600px) {
  .video-player {
    padding: 2rem;
  }
}
.video-player {
  flex: 1 0 0;
  background: #151515;
  background: linear-gradient(0deg, rgb(21, 21, 21) 0%, rgb(21, 21, 21) 50%, rgb(0, 0, 0) 50%, rgb(255, 255, 255) 50%, rgb(255, 255, 255) 100%);
  width: 100%;
  max-width: 100vw;
  margin: 0 auto;
  box-sizing: border-box;
}
.video-player video {
  width: 100%;
  height: auto;
}

.checkbox {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}

.checkbox__input {
  opacity: 0;
  position: absolute;
  z-index: -1;
}
.checkbox__input:checked + .checkbox__label .checkbox__marker, .checkbox__input:checked ~ .checkbox__marker {
  background-image: url("/heroicons/16/solid/check-white.svg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: 100%;
  background-color: #222222;
  border-color: #222222;
}
.checkbox__input:disabled + .checkbox__label .checkbox__marker, .checkbox__input:disabled ~ .checkbox__marker {
  border-color: #e3e3e3;
}
.checkbox__input:not(:disabled):active + .checkbox__label .checkbox__marker, .checkbox__input:not(:disabled):active ~ .checkbox__marker {
  background-color: #222222;
}
.checkbox__input:not(:disabled) + .checkbox__label:hover .checkbox__marker, .checkbox__input:not(:checked) + .checkbox__label:hover .checkbox__marker, .checkbox__input:not(:disabled) ~ .checkbox__marker:hover, .checkbox__input:not(:checked) ~ .checkbox__marker:hover {
  border-color: #cbcbcb;
}
.checkbox__input {
  padding: 1rem;
  background-color: #ffffff;
  border-color: #cbcbcb;
  border-radius: 2px;
  border-style: solid;
  border-width: 1px;
  box-sizing: border-box;
  font-family: "UniversLTW01-55Roman";
  font-size: 0.9rem;
  height: 3rem;
}
.checkbox__input [value] {
  color: #525252;
}

.checkbox__label {
  display: flex;
  align-items: center;
  user-select: none;
  color: #525252;
  font-family: "UniversLTW01-55Roman";
  font-size: 0.9rem;
}
.checkbox__label .checkbox__marker {
  background-color: #ffffff;
  background-position: 2px center;
  background-repeat: no-repeat;
  background-size: 70% 70%;
  border-style: solid;
  border-width: 1px;
  border-color: #cbcbcb;
  border-radius: 1px;
  display: inline-block;
  height: 1rem;
  margin-right: 0.5rem;
  width: 1rem;
  vertical-align: middle;
}
.checkbox__label:has(.checkbox__input:checked) .checkbox__marker {
  background-image: url("/heroicons/16/solid/check-white.svg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: 100%;
  background-color: #222222;
  border-color: #222222;
}
.checkbox__label:focus::before, .checkbox__label:focus-visible::before, .checkbox__input:focus + .checkbox__label::before {
  outline-color: #456bd6;
  outline-style: solid;
  outline-style: auto;
  outline-width: 2px;
  outline-offset: 0.25rem;
}

.radio-group {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.radio__input {
  opacity: 0;
  position: absolute;
  z-index: -1;
}
.radio__input:not(:disabled):active + .radio__label:before {
  background-color: #222222;
  border-color: #222222;
}
.radio__input:checked + .radio__label:before {
  border-color: #222222;
  border-width: 5px;
}
.radio__input:disabled + .radio__label:before {
  border-color: #e3e3e3;
  border-width: 1px;
}

.radio__label {
  display: flex;
  align-items: center;
  user-select: none;
  color: #525252;
  font-family: "UniversLTW01-55Roman";
  font-size: 0.9rem;
}
.radio__label:before {
  background-size: 60% 60%;
  border-style: solid;
  border-width: 1px;
  border-color: #cbcbcb;
  border-radius: 50%;
  content: "";
  display: inline-block;
  height: 1rem;
  margin-top: 0;
  margin-bottom: 0;
  margin-right: 0.5rem;
  margin-left: 0;
  width: 1rem;
}
.radio__label:focus::before, .radio__label:focus-visible::before, .radio__input:focus + .radio__label::before {
  outline-color: #456bd6;
  outline-style: solid;
  outline-style: auto;
  outline-width: 2px;
  outline-offset: 0.25rem;
}

.input {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  position: relative;
}

.input--vertical {
  flex-direction: column;
}

.input--horizontal {
  align-items: center;
  flex-wrap: wrap;
}

.input-field {
  padding: 1rem;
  background-color: #ffffff;
  border-color: #cbcbcb;
  border-radius: 2px;
  border-style: solid;
  border-width: 1px;
  box-sizing: border-box;
  font-family: "UniversLTW01-55Roman";
  font-size: 0.9rem;
  height: 3rem;
}
.input-field:focus, .input-field:focus-visible {
  border-color: transparent;
  border-radius: 0;
  outline-color: #456bd6;
  outline-style: solid;
  outline-style: auto;
  outline-width: 2px;
  outline-offset: -1px;
}
.input-field:disabled {
  border-color: #e3e3e3;
}

.input-field--password {
  border-radius: 2px 0 0 2px;
  border-right: 0;
  letter-spacing: 0.25rem;
  width: 100%;
}

.input-group {
  gap: 1rem;
}

.input-group--vertical {
  display: flex;
  flex-direction: column;
}

.input-group--horizontal {
  display: flex;
  flex-direction: row;
  align-items: flex-end;
}

.input__textarea {
  padding: 1rem;
  background-color: #ffffff;
  border-color: #cbcbcb;
  border-radius: 2px;
  border-style: solid;
  border-width: 1px;
  box-sizing: border-box;
  font-family: "UniversLTW01-55Roman";
  font-size: 0.9rem;
  line-height: 150%;
}

.multi-select {
  container-type: inline-size;
}
.multi-select .selectbox__control {
  background-color: #ffffff;
  border: 1px solid #cbcbcb;
  border-radius: 2px;
  font-family: "UniversLTW01-55Roman";
  font-size: 0.9rem;
  min-height: 3rem;
  width: 100%;
  padding-left: 0.5rem;
}
.multi-select .selectbox__control--is-focused {
  border-color: #222222;
}
.multi-select .selectbox__control .selectbox__placeholder,
.multi-select .selectbox__control .selectbox__single-value {
  color: #525252;
  font-family: "UniversLTW01-55Roman";
  font-size: 0.9rem;
}
.multi-select .selectbox__input {
  color: #525252;
  font-size: 0.9rem !important;
}
.multi-select .selectbox__value-container {
  padding: 0;
}
.multi-select .selectbox__control--menu-is-open svg {
  transform: rotate(180deg);
}
.multi-select .selectbox__category-header {
  padding: 0.75rem 1rem;
  margin-bottom: 0.25rem;
  font-weight: bold;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #525252;
  background-color: #f7f7f7;
}
.multi-select .selectbox__option--categorized {
  padding-left: 1.5rem !important;
  border-left: 2px solid #f0f0f0;
  margin-left: 0.25rem;
}
.multi-select .selectbox__multi-value {
  background-color: #151515 !important;
  border-radius: 0.25rem !important;
  font-size: 0.75rem !important;
  gap: 0.5rem !important;
  padding: 0.25rem 0.5rem !important;
  max-width: fit-content;
  margin: 0 0.5rem 0 0 !important;
}
.multi-select .selectbox__multi-value .selectbox__multi-value__label {
  color: #ffffff;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
}
.multi-select .selectbox__multi-value .selectbox__multi-value__remove {
  display: flex;
  align-items: center;
  margin-left: 0;
}
.multi-select .selectbox__multi-value .selectbox__multi-value__remove svg {
  color: #ffffff;
}
.multi-select .selectbox__value-container--is-multi.selectbox__value-container--has-value {
  display: flex;
  gap: 0.5rem;
  padding: 0.3rem 0;
}
@container (max-inline-size: 600px) {
  .multi-select .selectbox__value-container--is-multi.selectbox__value-container--has-value {
    flex-direction: column;
  }
}
.multi-select .selectbox__menu {
  padding: 0.5rem;
  margin-top: 0.5rem;
  font-family: "UniversLTW01-55Roman";
  font-size: 0.9rem;
  background-color: #ffffff !important;
  border-radius: 0.25rem !important;
  border: 0 !important;
  box-shadow: #e3e3e3 0px 4px 6px -1px, #e3e3e3 0px 2px 4px -1px !important;
  margin-bottom: 0;
}
.multi-select .selectbox__menu-list {
  padding-top: 0;
}
.multi-select .selectbox__menu-notice--no-options {
  align-items: center;
  display: flex;
  height: 3rem;
  justify-content: center;
}
.multi-select .selectbox__option {
  align-items: center;
  border-radius: 2px;
  color: #525252;
  display: flex;
  font-family: "UniversLTW01-55Roman";
  font-size: 0.9rem;
  padding: 0.5rem !important;
  line-height: 1.5;
}
.multi-select .selectbox__option--is-focused {
  background-color: #f7f7f7 !important;
}

.single-select .selectbox__input {
  height: 3rem !important;
  background-color: #ffffff;
  border-radius: 2px !important;
  border: 1px solid #cbcbcb !important;
  color: #525252;
  min-width: 0;
  padding: 1rem !important;
  font-size: 0.9rem !important;
}
.single-select .selectbox__control {
  background-color: #ffffff;
  cursor: pointer;
  font-family: "UniversLTW01-55Roman";
  height: 3rem;
  padding-top: 0;
}
.single-select .selectbox__control .selectbox__single-value {
  cursor: pointer;
  display: flex;
  gap: 1rem;
  align-items: center;
  justify-content: space-between;
  height: 3rem;
  padding: 1rem;
  border: 1px solid #cbcbcb;
  border-radius: 2px;
  background-color: #ffffff;
  color: #525252;
  font-family: "UniversLTW01-55Roman";
  font-size: 0.9rem;
  margin: 0;
}
.single-select .selectbox__control--is-focused .selectbox__single-value {
  border-color: #222222;
}
.single-select .selectbox__indicators {
  display: flex;
  align-items: center;
}
.single-select .selectbox__clear-indicator {
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  display: flex;
  align-items: center;
}
.single-select .selectbox__clear-indicator svg {
  width: 1rem;
  height: 1rem;
  color: #525252;
}
.single-select .selectbox__dropdown-indicator {
  display: flex;
  align-items: center;
  transition: transform 0.2s ease;
}
.single-select .selectbox__dropdown-indicator svg {
  width: 1rem;
  height: 1rem;
  color: #525252;
}
.single-select .selectbox__control--menu-is-open .selectbox__dropdown-indicator {
  transform: rotate(180deg);
}
.single-select .selectbox__menu {
  position: absolute;
  z-index: 1000;
  width: 100%;
  max-height: 200px;
  overflow-y: auto;
  margin-top: 0.5rem;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
  padding-left: 0.5rem;
  padding-right: 0.5rem;
  font-family: "UniversLTW01-55Roman";
  background-color: #ffffff;
  border-radius: 0 0 2px 2px;
  border: 0 !important;
  box-shadow: #e3e3e3 0px 4px 6px -1px, #e3e3e3 0px 2px 4px -1px;
}
.single-select .selectbox__menu--is-open {
  display: block;
  border: 1px solid #cbcbcb;
  border-top: none;
}
.single-select .selectbox__menu:not(.selectbox__menu--is-open) {
  display: none;
}
.single-select .selectbox__option {
  padding: 0.5rem;
  border-radius: 2px;
  color: #525252;
  font-family: "UniversLTW01-55Roman";
  font-size: 0.9rem;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.single-select .selectbox__option:active {
  background-color: #ffffff;
}
.single-select .selectbox__option--is-focused {
  background-color: #f7f7f7;
}
.single-select .selectbox__option--is-selected {
  background-color: #f7f7f7;
  color: #525252;
}
.single-select .selectbox__option--is-selected:hover {
  background-color: #ffffff;
}
.single-select .selectbox__check-icon {
  width: 1rem;
  height: 1rem;
  color: #525252;
  margin-left: 0.75rem;
}
.single-select .selectbox__value-container {
  padding: 0;
}
.single-select .selectbox__value-container--has-value {
  background: transparent;
  height: 100% !important;
}

.selectbox__category-header {
  padding: 0.5rem;
  background-color: #525252;
  color: #ffffff;
  border-radius: 2px;
  font-size: 0.9rem;
}

/*# sourceMappingURL=one-sphere.css.map */
