@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 (600px <= width) {
  .flex-xxs-column-reverse {
    flex-direction: column-reverse;
  }
}

.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--xs {
  font-size: 0.75rem;
}

.label-input--s {
  font-size: 0.9rem;
}

.label-input--m {
  font-size: 1rem;
}

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 {
  margin-left: auto;
  margin-right: auto;
  max-width: 1024px;
  width: calc(100% - 2rem);
}
@media (600px <= width) {
  .layout--centered {
    width: 90%;
  }
}

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

.flex {
  display: flex !important;
}

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

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

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

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

.flex-justify-center {
  justify-content: center !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;
  }
}

.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;
}

@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;
  }
}

.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-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 (600px <= 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 (600px <= width) {
  .flex-xxs-column-reverse {
    flex-direction: column-reverse !important;
  }
}

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

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

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

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

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

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

.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-primary {
  color: #151515;
}

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

.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-500 {
  gap: !important;
}

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

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

.gap-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 {
  container-type: inline-size;
}
.selection .selection__product {
  display: flex;
  flex-direction: column;
}
@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;
  gap: 3rem;
}
@media (767px <= width) {
  .teaser__body {
    flex-direction: row;
  }
}

.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;
}

.single-select input {
  background-color: transparent;
  box-shadow: none;
  min-width: 0 !important;
}
.single-select .selectbox__control {
  padding-left: 1rem;
  background-color: #ffffff;
  border-color: #cbcbcb;
  border-radius: 2px;
  border-width: 1px;
  cursor: text;
  font-family: "UniversLTW01-55Roman";
  height: 3rem;
  padding-top: 0;
}
.single-select .selectbox__control .selectbox__placeholder,
.single-select .selectbox__control .selectbox__single-value {
  color: #525252;
  font-family: "UniversLTW01-55Roman";
  font-size: 0.9rem;
  margin: 0;
}
.single-select .selectbox__control--is-focused {
  border-color: #222222;
  border-width: 1px;
}
.single-select .selectbox__dropdown-indicator svg {
  color: #151515;
}
.single-select .selectbox__clear-indicator {
  cursor: pointer;
}
.single-select .selectbox__clear-indicator:hover svg {
  color: #151515;
  background-color: #f7f7f7;
  border-radius: 50%;
}
.single-select .selectbox__clear-indicator svg {
  color: #151515;
}
.single-select .selectbox__control--menu-is-open .selectbox__dropdown-indicator svg {
  transform: rotate(180deg);
}
.single-select .selectbox__menu {
  margin-top: 0.5rem;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
  padding-left: 0.5rem;
  padding-right: 0.5rem;
  background-color: #ffffff;
  box-shadow: 0px 10px 15px -3px rgba(0, 0, 0, 0.1);
  width: auto;
}
.single-select .selectbox__menu-list {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0;
}
.single-select .selectbox__option {
  padding: 0.5rem;
  align-items: center;
  border-radius: 2px;
  color: #525252;
  cursor: pointer;
  display: flex;
  font-family: "UniversLTW01-55Roman";
  font-size: 0.9rem;
}
.single-select .selectbox__option:active {
  background-color: #ffffff;
}
.single-select .selectbox__option--is-focused {
  background-color: #525252;
}
.single-select .selectbox__option--is-selected {
  background-color: inherit;
  background-position-x: calc(100% - 1rem);
  background-position-y: center;
  background-size: 0.75rem;
  background-repeat: no-repeat;
  color: #525252;
  background-image: url("../../public/heroicons/16/solid/check.svg");
}
.single-select .selectbox__option--is-selected:hover {
  background-color: #ffffff;
}
.single-select .selectbox__indicator {
  align-items: center;
  display: flex;
  height: 48px;
  justify-content: center;
  width: 48px;
}
.single-select .selectbox__indicator-separator {
  display: none;
}
.single-select .selectbox__dropdown-indicator,
.single-select .selectbox__clear-indicator {
  transition: all 0.5s ease;
}
.single-select .single-select__label {
  display: inline-block;
  font-size: 0.9rem;
  margin-bottom: 0.5rem;
}
.single-select .selectbox__value-container {
  padding: 0;
}
.single-select .selectbox__value-container--has-value {
  background: transparent;
}
.single-select .selectbox__input-container {
  background: transparent;
  padding: 0;
  margin: 0;
}

.multi-select .selectbox__control {
  background-color: #ffffff;
  border-color: #cbcbcb;
  border-radius: 2px;
  border-width: 1px;
  box-sizing: border-box;
  cursor: text;
  font-family: "UniversLTW01-55Roman";
  font-size: 0.9rem;
  min-height: 3rem;
  padding-left: 1rem;
  padding-top: 0;
  width: 100%;
}
.multi-select .selectbox__control--is-focused {
  border-color: #222222;
  border-width: 1px;
}
.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__value-container {
  padding: 0;
}
.multi-select .selectbox__control--menu-is-open .selectbox__dropdown-indicator svg {
  transform: rotate(180deg);
}
.multi-select .selectbox__clear-indicator {
  cursor: pointer;
  transition: all 0.5s ease;
}
.multi-select .selectbox__clear-indicator:hover svg {
  background-color: #f7f7f7;
  border-radius: 50%;
  padding: 0.25rem;
}
.multi-select .selectbox__clear-indicator svg {
  color: red;
}
.multi-select .selectbox__multi-value {
  background-color: black;
  border-radius: 4px;
  font-size: 0.8rem;
  gap: 0.5rem;
  padding: 0.25rem;
}
.multi-select .selectbox__multi-value .selectbox__multi-value__label {
  color: white;
}
.multi-select .selectbox__multi-value .selectbox__multi-value__remove svg {
  color: white;
}
.multi-select .selectbox__value-container.selectbox__value-container--is-multi.selectbox__value-container--has-value {
  display: flex;
  gap: 0.5rem;
  padding-bottom: 0.5rem;
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
}
.multi-select .selectbox__menu {
  padding: 0.5rem;
  margin-top: 0.5rem;
  background-color: #ffffff;
  border-radius: 0.25rem;
  box-shadow: 0px 10px 15px -3px rgba(0, 0, 0, 0.1);
  margin-bottom: 0;
}
.multi-select .selectbox__menu-list {
  padding-top: 0;
}
.multi-select .selectbox__menu-notice.selectbox__menu-notice--no-options {
  align-items: center;
  display: flex;
  height: 48px;
  justify-content: center;
}
.multi-select .selectbox__option {
  align-items: center;
  border-radius: 2px;
  color: #525252;
  cursor: pointer;
  display: flex;
  font-family: "UniversLTW01-55Roman";
  font-size: 0.9rem;
  line-height: 1.6rem;
  min-height: 3rem;
  padding-bottom: 0.5rem;
  padding-left: 0.5rem;
  padding-right: 0.5rem;
  padding-top: 0.5rem;
}
.multi-select .selectbox__option--is-focused, .multi-select .selectbox__option:active {
  background-color: #ffffff;
}
.multi-select .selectbox__option--is-selected {
  background-image: var(--selected);
  background-position-x: calc(100% - 1rem);
  background-position-y: center;
  background-repeat: no-repeat;
  color: #525252;
}

.selectbox__indicator {
  align-items: center;
  display: flex;
  height: 48px;
  justify-content: center;
  width: 48px;
}

.selectbox__indicator-separator {
  display: none;
}

.selectbox__dropdown-indicator svg {
  color: #525252;
}

.page {
  max-width: 1920px;
  margin: 0 auto;
}

.landingpage__illustration {
  display: none;
}
@media (767px <= width) {
  .landingpage__illustration {
    display: flex;
    flex: 1 1 50%;
  }
}
.landingpage__illustration img {
  height: 100%;
}

.register {
  background-color: #ffffff;
}
.register form fieldset {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.register form fieldset legend {
  display: contents;
}
.register form .submit {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.register form .submit .button {
  align-self: flex-start;
}

.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 {
  display: grid;
  grid-template-columns: 0 auto;
  gap: 0.5rem;
  height: 100%;
  position: relative;
}
@media (width <= 600px) {
  .dashboard__stage {
    grid-template-columns: 1fr auto;
  }
}

.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;
}

.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: #151515;
}
.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;
}

.banner {
  display: flex;
  padding: 1rem;
  gap: 1rem;
}
.banner--info {
  background-color: #d1daf5;
  color: #091c52;
}
.banner__icon {
  padding-top: 0.25rem;
  min-width: 1.5rem;
}
.banner__body {
  margin-top: 0.5rem;
}
.banner__title {
  font-size: clamp(0.9rem, 0.9rem + 0.1 * (100vw - 320px) / 1280, 1rem);
  line-height: 1.5;
  font-family: "UniversLTW01-55Roman";
}
.banner__text {
  font-size: clamp(0.9rem, 0.9rem + 0.1 * (100vw - 320px) / 1280, 1rem);
  line-height: 1.5;
  font-family: "UniversLTW01-45Light";
}
.banner__footer {
  margin-top: 1rem;
}
.banner__link {
  font-size: clamp(0.9rem, 0.9rem + 0.1 * (100vw - 320px) / 1280, 1rem);
  line-height: 1.5;
  font-family: "UniversLTW01-55Roman";
  color: inherit;
}

.card {
  padding: 1rem;
  border-style: solid;
  border-radius: 0.25rem;
  border-width: 1px;
  border-color: #ffffff;
  background-color: #ffffff;
}

.card--bg-grey {
  background-color: #f7f7f7;
}

.card--cover-image {
  position: relative;
  display: grid;
}
.card--cover-image .card__cover {
  grid-area: 1/-1;
}
.card--cover-image .card__cover .card__image {
  object-fit: cover;
  max-width: 100%;
  width: 100%;
  grid-area: 1/-1;
}

.card__header {
  padding: 1rem;
  grid-area: 1/-1;
}

.card__content {
  padding: 1rem;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  color: #ffffff;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.8509803922), rgba(0, 0, 0, 0)) bottom/100% 60% no-repeat;
  grid-area: 1/-1;
}

.card__tag {
  padding: 0.5rem;
  background-color: #151515;
  color: #ffffff;
  font-size: 0.75rem;
  font-family: "UniversLTW01-55Roman";
  margin-top: 1rem;
  grid-area: 1/-1;
}

.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;
}

.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;
    width: 100vw;
    right: 0;
    top: 0;
    height: 100vh;
  }
  @media screen and (prefers-reduced-motion: reduce) {
    .drawer--visible {
      animation: none;
    }
  }
}
@container (min-inline-size: 600px) {
  .drawer {
    right: -35%;
  }
  .drawer--visible {
    animation: slide-in-right 0.3s ease-out both;
    width: 25%;
    height: 100vh;
    right: 0;
  }
  @media screen and (prefers-reduced-motion: reduce) {
    .drawer--visible {
      animation: none;
    }
  }
}
@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;
  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;
}
@media screen and (prefers-reduced-motion: reduce) {
  .dropdown .dropdown__container {
    animation: none;
  }
}
.dropdown--end .dropdown__container {
  right: 0;
}
@media (width <= 600px) {
  .dropdown--adaptive .button--dropdown .button__label {
    display: none;
  }
}

.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;
}

@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-style: solid;
  border-color: #f0f0f0;
  border-width: 1px;
}

.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: #151515;
  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: #151515;
  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: #151515;
}

.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";
}

.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;
}

.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;
}

.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;
  box-shadow: #e3e3e3 0px 4px 6px -1px, #e3e3e3 0px 2px 4px -1px;
  padding: 1rem;
  gap: 1rem;
  background-color: #222222;
  border-radius: 1rem;
}
@media (600px <= width) {
  .snackbar {
    flex-direction: row;
  }
}
@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;
}

.tabs {
  background: #ffffff;
}

.tabs__navigation {
  display: flex;
  overflow: auto;
}

.tab {
  padding: 1rem;
  width: 100%;
  overflow: auto;
}

.tab--invisible {
  display: none;
}

.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;
}

.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;
}

.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: 0.2rem;
}
.switch-container[aria-checked=false] .circle {
  background: #909090;
  left: 0.2rem;
}

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

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

.switch__state {
  color: #151515;
}

.switch__description {
  color: #525252;
}

.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-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--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: #151515;
}
.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: #525252;
}

.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: 2px !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 {
  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 > .button__icon-wrapper:first-child {
  margin-left: 0.75rem;
}
.button > .button__icon-wrapper:last-child {
  margin-right: 0.25rem;
}
.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:disabled .button__label, .button[disabled] .button__label,
.button [aria-disabled=true] .button__label {
  opacity: 0.8;
}

.button--s {
  gap: 0.25rem;
  font-family: "UniversLTW01-55Roman";
  font-size: 0.75rem;
  height: 2rem;
  min-width: 2rem;
}
.button--s .button__icon-wrapper {
  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 {
  gap: 0.25rem;
  font-size: 0.75rem;
  line-height: 1.5;
  height: 1rem;
  min-width: 1rem;
}
.button--xs > .button__icon-wrapper:first-child {
  margin-left: 0.75rem;
}
.button--xs > .button__icon-wrapper:last-child {
  margin-right: 0.75rem;
}
.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;
}
.button--secondary:hover {
  color: #151515;
  background-color: #f0f0f0;
}
.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;
}
.button--tab:after {
  content: "";
  display: block;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  transition: width 0.2s ease;
}
.button--tab[aria-selected=true]:after {
  background-color: #e3e3e3;
  width: 100%;
}
.button--tab:hover {
  background-color: #f7f7f7;
}
.button--tab:hover .button__label {
  color: #151515;
}
.button--tab:active {
  background-color: #e3e3e3;
}
.button--tab:active .button__label {
  color: #151515;
}
.button--tab .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;
}

.input {
  display: flex;
  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 [value] {
  color: #525252;
}

.input-field--disabled {
  border-color: #e3e3e3;
}
.input-field--disabled [value] {
  color: #cbcbcb;
}

.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;
}

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

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

.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;
}

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

.checkbox__input {
  opacity: 0;
  position: absolute;
  z-index: -1;
  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:checked + .checkbox__label:before {
  background-image: url("../../public/heroicons/16/solid/check-white.svg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: 100%;
  background-color: #ffffff;
  border-color: #222222;
}
.checkbox__input:disabled + .checkbox__label::before {
  border-color: #e3e3e3;
}
.checkbox__input:not(:disabled):active + .checkbox__label:before {
  background-color: #222222;
}
.checkbox__input:not(:disabled):hover:before, .checkbox__input:not(:checked) + .checkbox__label:hover:before {
  border-color: #cbcbcb;
}
.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:before {
  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;
  content: "";
  display: inline-block;
  height: 1rem;
  margin-right: 0.5rem;
  width: 1rem;
}
.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;
}

.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);
  }
}
.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%;
}

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