@charset "UTF-8";
.action-page {
  background-color: var(--neutral-warm-100);
  flex: 1;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem 5rem;
  min-height: 60dvh;
  overflow: hidden;
}
@media (max-width: 600px) {
  .action-page {
    padding: 8rem 1rem 1rem 1rem;
    min-height: unset;
  }
}
.action-page .background-text {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  font-size: 10rem;
  line-height: 10rem;
  font-style: italic;
  font-weight: 800;
}
@media (max-width: 600px) {
  .action-page .background-text {
    font-size: 5rem;
    line-height: 5rem;
  }
}
.action-page .background-text.ice {
  color: var(--secondary-ice);
}
.action-page .background-text.orange {
  color: var(--secondary-orange);
}
.action-page .background-text.apricot {
  color: var(--accent-apricot);
}
.action-page .background-text.dark-blue {
  color: var(--primary-dark);
}
.action-page .background-text.sky {
  color: var(--primary-sky);
}
.action-page .background-text .floating-scribble {
  position: absolute;
  right: 10%;
  bottom: 0;
  font-family: "Huy Handschrift", "sans-serif";
  color: var(--primary-dark);
  font-size: 4.5rem;
  transform: rotate(-15deg);
}
@media (max-width: 600px) {
  .action-page .background-text .floating-scribble {
    font-size: 1.25rem;
  }
}
.action-page .background-text .floating-scribble.click {
  left: 40%;
  bottom: 9%;
  z-index: 3;
}
@media (max-width: 600px) {
  .action-page .background-text .floating-scribble.click {
    bottom: 3%;
  }
}
.action-page .floating-background-icon {
  position: absolute;
  left: -20px;
  top: 200px;
  width: 200px;
  height: 200px;
  z-index: -1;
}
.action-page .floating-background-icon.deeper-inset {
  left: -60px;
}
@media (max-width: 600px) {
  .action-page .floating-background-icon {
    visibility: hidden;
  }
}
.action-page .card {
  width: calc(var(--content-width-xl) * 0.75);
  background-color: var(--white);
  border: 1px solid var(--neutral-warm-300);
  border-radius: 1rem;
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: start;
  gap: 1rem;
  z-index: 1;
  max-width: 720px;
}
@media (max-width: 600px) {
  .action-page .card {
    width: 90dvw;
    max-width: 400px;
    padding: 0.75rem;
    gap: 1rem;
  }
}
.action-page .card .heading-icon {
  width: 100px;
  height: 100px;
}
@media (max-width: 600px) {
  .action-page .card .heading-icon {
    width: 48px;
    height: 48px;
  }
}
.action-page .card .heading {
  font-size: 32px;
  line-height: 36px;
  font-weight: 600;
}
@media (max-width: 600px) {
  .action-page .card .heading {
    font-size: 20px;
    line-height: normal;
    font-weight: 500;
  }
}
.action-page .card .actions {
  display: flex;
  align-items: start;
  gap: 1rem;
}
@media (max-width: 600px) {
  .action-page .card .actions {
    flex-direction: column;
  }
  .action-page .card .actions .button {
    width: 100%;
  }
}
.action-page .card .icon {
  height: 24px;
  width: 24px;
}
.action-page .card .success-hint {
  color: var(--success-500);
}
.action-page .card .warn-hint {
  color: var(--warn-500);
}

.link {
  color: #B01F72;
  cursor: pointer;
}

.validation-error {
  font-size: 14px;
  color: var(--warn-500);
}

@media (max-width: 600px) {
  .full-width-mobile {
    width: 100%;
  }
}

.spinner-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (min-width: 601px) {
  .spinner-wrapper {
    width: 200px;
    height: 40px;
  }
}

.no-stretch {
  height: fit-content;
  width: fit-content;
}

.promotion-info-box-wrapper {
  margin: 1rem 0;
  padding: 1rem;
  width: 100%;
}
.share-overlay-wrapper {
  position: fixed;
  right: 0;
  left: 0;
  top: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.9);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
}
.share-overlay-wrapper .share-overlay-content {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 2rem;
}
.share-overlay-wrapper .share-overlay-hint {
  color: #FFFFFF;
}
.share-overlay-wrapper .share-overlay-buttons {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 4rem;
}
@media (max-width: 600px) {
  .share-overlay-wrapper .share-overlay-buttons {
    gap: 2rem;
  }
}
.share-overlay-wrapper .share-icon {
  height: 50px;
  width: 50px;
}
.share-overlay-wrapper .share-button {
  padding: 0;
}
.share-overlay-wrapper .share-overlay-close-button {
  text-transform: uppercase;
  margin: 80px 0 0;
}
.share-overlay-wrapper .share-overlay-close-button:hover {
  border-bottom: none;
}
@media (max-width: 600px) {
  .share-overlay-wrapper .share-overlay-close-button {
    margin: 40px;
  }
}

.student-confirm-present-heading {
  font-size: 22px;
}

@font-face {
  font-family: Poppins;
  font-style: normal;
  font-weight: 100;
  src: url("../../../fonts/Poppins/Poppins-Thin.ttf");
}
@font-face {
  font-family: Poppins;
  font-style: italic;
  font-weight: 100;
  src: url("../../../fonts/Poppins/Poppins-ThinItalic.ttf");
}
@font-face {
  font-family: Poppins;
  font-style: normal;
  font-weight: 200;
  src: url("../../../fonts/Poppins/Poppins-ExtraLight.ttf");
}
@font-face {
  font-family: Poppins;
  font-style: italic;
  font-weight: 200;
  src: url("../../../fonts/Poppins/Poppins-ExtraLightItalic.ttf");
}
@font-face {
  font-family: Poppins;
  font-style: normal;
  font-weight: 300;
  src: url("../../../fonts/Poppins/Poppins-Light.ttf");
}
@font-face {
  font-family: Poppins;
  font-style: italic;
  font-weight: 300;
  src: url("../../../fonts/Poppins/Poppins-LightItalic.ttf");
}
@font-face {
  font-family: Poppins;
  font-style: normal;
  font-weight: 400;
  src: url("../../../fonts/Poppins/Poppins-Regular.ttf");
}
@font-face {
  font-family: Poppins;
  font-style: italic;
  font-weight: 400;
  src: url("../../../fonts/Poppins/Poppins-Italic.ttf");
}
@font-face {
  font-family: Poppins;
  font-style: normal;
  font-weight: 500;
  src: url("../../../fonts/Poppins/Poppins-Medium.ttf");
}
@font-face {
  font-family: Poppins;
  font-style: italic;
  font-weight: 500;
  src: url("../../../fonts/Poppins/Poppins-MediumItalic.ttf");
}
@font-face {
  font-family: Poppins;
  font-style: normal;
  font-weight: 600;
  src: url("../../../fonts/Poppins/Poppins-SemiBold.ttf");
}
@font-face {
  font-family: Poppins;
  font-style: italic;
  font-weight: 600;
  src: url("../../../fonts/Poppins/Poppins-SemiBoldItalic.ttf");
}
@font-face {
  font-family: Poppins;
  font-style: normal;
  font-weight: 700;
  src: url("../../../fonts/Poppins/Poppins-Bold.ttf");
}
@font-face {
  font-family: Poppins;
  font-style: italic;
  font-weight: 700;
  src: url("../../../fonts/Poppins/Poppins-BoldItalic.ttf");
}
@font-face {
  font-family: Poppins;
  font-style: normal;
  font-weight: 800;
  src: url("../../../fonts/Poppins/Poppins-ExtraBold.ttf");
}
@font-face {
  font-family: Poppins;
  font-style: italic;
  font-weight: 800;
  src: url("../../../fonts/Poppins/Poppins-ExtraBoldItalic.ttf");
}
@font-face {
  font-family: Poppins;
  font-style: normal;
  font-weight: 900;
  src: url("../../../fonts/Poppins/Poppins-Black.ttf");
}
@font-face {
  font-family: Poppins;
  font-style: italic;
  font-weight: 900;
  src: url("../../../fonts/Poppins/Poppins-BlackItalic.ttf");
}
@font-face {
  font-family: Roboto Mono;
  font-style: normal;
  font-weight: 100;
  src: url("../../../fonts/Roboto_Mono/static/RobotoMono-Thin.ttf");
}
@font-face {
  font-family: Roboto Mono;
  font-style: italic;
  font-weight: 100;
  src: url("../../../fonts/Roboto_Mono/static/RobotoMono-ThinItalic.ttf");
}
@font-face {
  font-family: Roboto Mono;
  font-style: normal;
  font-weight: 200;
  src: url("../../../fonts/Roboto_Mono/static/RobotoMono-ExtraLight.ttf");
}
@font-face {
  font-family: Roboto Mono;
  font-style: italic;
  font-weight: 200;
  src: url("../../../fonts/Roboto_Mono/static/RobotoMono-ExtraLightItalic.ttf");
}
@font-face {
  font-family: Roboto Mono;
  font-style: normal;
  font-weight: 300;
  src: url("../../../fonts/Roboto_Mono/static/RobotoMono-Light.ttf");
}
@font-face {
  font-family: Roboto Mono;
  font-style: italic;
  font-weight: 300;
  src: url("../../../fonts/Roboto_Mono/static/RobotoMono-LightItalic.ttf");
}
@font-face {
  font-family: Roboto Mono;
  font-style: normal;
  font-weight: 400;
  src: url("../../../fonts/Roboto_Mono/static/RobotoMono-Regular.ttf");
}
@font-face {
  font-family: Roboto Mono;
  font-style: italic;
  font-weight: 400;
  src: url("../../../fonts/Roboto_Mono/static/RobotoMono-Italic.ttf");
}
@font-face {
  font-family: Roboto Mono;
  font-style: normal;
  font-weight: 500;
  src: url("../../../fonts/Roboto_Mono/static/RobotoMono-Medium.ttf");
}
@font-face {
  font-family: Roboto Mono;
  font-style: italic;
  font-weight: 500;
  src: url("../../../fonts/Roboto_Mono/static/RobotoMono-MediumItalic.ttf");
}
@font-face {
  font-family: Roboto Mono;
  font-style: normal;
  font-weight: 600;
  src: url("../../../fonts/Roboto_Mono/static/RobotoMono-SemiBold.ttf");
}
@font-face {
  font-family: Roboto Mono;
  font-style: italic;
  font-weight: 600;
  src: url("../../../fonts/Roboto_Mono/static/RobotoMono-SemiBoldItalic.ttf");
}
@font-face {
  font-family: Roboto Mono;
  font-style: normal;
  font-weight: 700;
  src: url("../../../fonts/Roboto_Mono/static/RobotoMono-Bold.ttf");
}
@font-face {
  font-family: Roboto Mono;
  font-style: italic;
  font-weight: 700;
  src: url("../../../fonts/Roboto_Mono/static/RobotoMono-BoldItalic.ttf");
}
@font-face {
  font-family: Huy Handschrift;
  font-style: normal;
  font-weight: 400;
  src: url("../../../fonts/Huy/Huy_handschrift-Regular.ttf") format("woff2");
}
@font-face {
  font-family: Rufina;
  font-style: normal;
  font-weight: 400;
  src: url("../../../fonts/Rufina/Rufina-Regular.ttf");
}
:root {
  --primary-dark: #070685;
  --primary-sky: #057BFC;
  --black: #000000;
  --white: #FFFFFF;
  --secondary-ice: #72E3FE;
  --secondary-orange: #FF934F;
  --accent-aqua: #00FFE5;
  --accent-ice-blush: #A9EEFF;
  --accent-apricot: #FFAE81;
  --accent-lemon: #FFFF00;
  --accent-wildberry: #B01F72;
  --accent-magenta: #D92B8A;
  --neutral-warm-50: #F5F4F0;
  --neutral-warm-100: #EDE9E0;
  --neutral-warm-150: #E8E6E2;
  --neutral-warm-200: #D8D2C5;
  --neutral-warm-300: #BFB5A9;
  --neutral-warm-500: #8E867A;
  --neutral-warm-600: #6B665C;
  --neutral-warm-700: #333232;
  --neutral-cold-0: #F8FAFC;
  --neutral-cold-50: #F3F5F6;
  --neutral-cold-100: #E3E6EC;
  --neutral-cold-200: #D4D9E3;
  --neutral-cold-300: #B4B8C4;
  --success-200: #00D3BD;
  --success-300: #00A896;
  --success-500: #14907B;
  --success-700: #0A5A4C;
  --success-900: #00352E;
  --warn-200: #F26457;
  --warn-400: #EF3E32;
  --warn-500: #D03B36;
  --warn-700: #A52523;
  --warn-900: #5B1A18;
}

.background-white {
  background-color: var(--white);
}

.background-neutral-warm-50 {
  background-color: var(--neutral-warm-50);
}

.background-neutral-warm-100 {
  background-color: var(--neutral-warm-100);
}

.background-accent-apricot {
  background-color: var(--accent-apricot);
}

.background-iceblue {
  background-color: var(--secondary-ice);
}

.background-accent-iceblue-blush {
  background-color: var(--accent-ice-blush);
}

.color-primary-dark {
  color: var(--primary-dark) !important;
}

.color-primary-sky {
  color: var(--primary-sky) !important;
}

.color-neutral-warm-300 {
  color: var(--neutral-warm-300) !important;
}

.color-magenta {
  color: var(--accent-magenta) !important;
}

.color-aqua {
  color: var(--accent-aqua) !important;
}

.color-lemon {
  color: var(--accent-lemon) !important;
}

.color-apricot {
  color: var(--accent-apricot) !important;
}

.color-secondary-orange {
  color: var(--secondary-orange) !important;
}

.color-white {
  color: var(--white) !important;
}

.background-primary-dark {
  background-color: var(--primary-dark);
}

.background-success {
  background-color: var(--success-500);
}

:root {
  font-family: Poppins, sans-serif;
  font-size: 16px;
  line-height: 24px;
  font-weight: 400;
}

p {
  margin: 0;
}

b, strong {
  font-weight: 600;
}

.text-small {
  font-size: 12px;
  line-height: 16px;
}

@media (max-width: 600px) {
  :root {
    font-family: Poppins, sans-serif;
    font-size: 14px;
    line-height: 20px;
    font-weight: 400;
  }
}
h1, h2, h3, h4 {
  margin: 0;
}

h1, .h1-style {
  font-weight: 700;
  font-size: 56px;
  line-height: 82px;
  letter-spacing: -0.02em;
}

h2, .h2-style {
  font-weight: 700;
  font-size: 44px;
  line-height: 62px;
  letter-spacing: -0.02em;
}

h3, .h3-style {
  font-weight: 600;
  font-size: 32px;
  line-height: 41px;
  letter-spacing: -0.02em;
}

h4, .h4-style {
  font-weight: 400;
  font-size: 28px;
  line-height: 40px;
  letter-spacing: -0.02em;
}

.text-cardheader {
  font-weight: 500;
  font-size: 1.5rem;
  line-height: 1.5em;
  letter-spacing: -0.02em;
}
.text-cardheader b {
  font-weight: 700;
}

b.text-cardheader {
  font-weight: 700;
}

@media (max-width: 600px) {
  h1, .h1-style {
    font-weight: 700;
    font-size: 36px;
    line-height: 52px;
    letter-spacing: -0.02em;
  }
  h2, .h2-style {
    font-weight: 600;
    font-size: 1.875rem;
    line-height: 2.5rem;
    letter-spacing: 0.02em;
  }
  h3, .h3-style {
    font-weight: 700;
    font-size: 20px;
    line-height: 26px;
    letter-spacing: 0.02em;
  }
}
.text-accent-large {
  font-family: "Roboto Mono", sans-serif;
  font-size: 20px;
  line-height: 28px;
  letter-spacing: 0.02em;
}

.text-accent-small {
  font-family: "Roboto Mono", sans-serif;
  letter-spacing: 0;
  margin: 0;
}

.text-label {
  font-family: "Roboto Mono", sans-serif;
  font-size: 12px;
  line-height: 16px;
  letter-spacing: 0;
}

.scribble-note-small {
  font-family: "Huy Handschrift", "sans-serif";
  font-size: 14px;
  line-height: 16px;
  color: var(--primary-dark);
}

.scribble-note-medium {
  font-family: "Huy Handschrift", "sans-serif";
  font-size: 20px;
  line-height: 24px;
  max-width: 250px;
  color: var(--primary-dark);
}

.scribble-note-large {
  font-family: "Huy Handschrift", "sans-serif";
  font-size: 32px;
  line-height: 40px;
  color: var(--primary-dark);
}

.top-left-scribble {
  position: absolute;
  top: 8rem;
  left: -12rem;
  transform: rotate(-5deg);
  max-width: 180px;
  text-align: center;
}

.top-right-scribble {
  position: absolute;
  top: -4rem;
  right: -6rem;
  transform: rotate(5deg);
  max-width: 180px;
  text-align: center;
}

.bottom-right-scribble {
  position: absolute;
  bottom: 30%;
  right: -11.5rem;
  transform: rotate(5deg);
  max-width: 180px;
  text-align: center;
}

@media (max-width: 1500px) {
  .top-left-scribble {
    display: none !important;
  }
  .bottom-right-scribble {
    display: none !important;
  }
  .top-right-scribble {
    position: absolute;
    top: -4rem;
    right: 0rem;
    transform: rotate(5deg);
    max-width: 180px;
    text-align: center;
  }
  .scribble-note-small {
    max-width: 180px;
  }
  .scribble-note-medium {
    max-width: 200px;
    color: var(--primary-dark);
  }
  .scribble-note-large {
    max-width: 200px;
  }
}
.text-warn {
  color: var(--warn-700);
}

.text-success {
  color: var(--success-700);
}

.text-success-500 {
  color: var(--success-500);
}

.text-primary {
  color: var(--primary-dark);
}

.text-white {
  color: var(--white);
}

.text-soft {
  color: var(--neutral-warm-700);
}

a {
  color: var(--accent-wildberry);
  text-decoration: underline;
  text-decoration-color: transparent;
  transition: color 200ms ease-out, text-decoration-color 200ms ease-out;
  cursor: pointer;
  word-wrap: break-word;
}
a:hover {
  color: var(--primary-sky);
  text-decoration-color: var(--primary-sky);
}

.xl-copy-top {
  font-weight: 700;
  font-size: 56px;
  line-height: 82px;
  letter-spacing: -0.02em;
  color: var(--primary-dark);
  margin: 0;
  text-align: center;
}

.xl-copy-bottom {
  font-weight: 700;
  font-size: 56px;
  line-height: 82px;
  letter-spacing: -0.02em;
  color: var(--secondary-orange);
  margin: 0;
  text-align: center;
}

.closing-section-header {
  font-weight: 700;
  font-size: 44px;
  line-height: 62px;
  letter-spacing: -0.02em;
}

@media (max-width: 600px) {
  .xl-copy-top {
    font-size: 40px;
    line-height: 60px;
  }
  .xl-copy-bottom {
    font-size: 40px;
    line-height: 60px;
  }
  .closing-section-header {
    font-weight: 600;
    font-size: 28px;
    line-height: 36px;
    letter-spacing: -0.02em;
  }
}
.giant-section-text {
  font-size: 520px;
  line-height: 370px;
  color: #E2F9FF;
  font-weight: 700;
  pointer-events: none;
}

.text-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  max-width: 100%;
}

.primary {
  --color-default: var(--white);
  --color-hover: var(--white);
  --color-pressed: var(--white);
  --color-focussed: var(--white);
  --color-disabled: var(--neutral-warm-300);
  --bg-default: var(--accent-wildberry);
  --bg-hover: var(--primary-dark);
  --bg-pressed: #1836B2;
  --bg-focussed: var(--accent-wildberry);
  --bg-disabled: var(--neutral-cold-0);
  --outline-default: none;
  --outline-hover: 1px solid var(--white);
  --outline-pressed: none;
  --outline-focussed: 2px solid var(--primary-dark);
  --outline-disabled: none;
}

.primary.outline {
  --color-default: var(--accent-wildberry);
  --color-hover: var(--white);
  --color-pressed: var(--white);
  --color-focussed: var(--white);
  --color-disabled: var(--neutral-warm-300);
  --bg-default: transparent;
  --bg-hover: var(--accent-wildberry);
  --bg-pressed: #1836B2;
  --bg-focussed: var(--accent-wildberry);
  --bg-disabled: var(--neutral-cold-0);
  --outline-default: 1px solid var(--accent-wildberry);
  --outline-hover: none;
  --outline-pressed: none;
  --outline-focussed: 2px solid var(--primary-dark);
  --outline-disabled: none;
}

.primary.plain {
  --color-default: var(--primary-dark);
  --color-hover: var(--primary-sky);
  --color-pressed: var(--black);
  --color-focussed: var(--primary-dark);
  --color-disabled: var(--neutral-warm-300);
  --bg-default: transparent;
  --bg-hover: transparent;
  --bg-pressed: transparent;
  --bg-focussed: transparent;
  --bg-disabled: transparent;
  --outline-default: none;
  --outline-hover: none;
  --outline-pressed: none;
  --outline-focussed: 1px solid var(--primary-dark);
  --outline-disabled: none;
}

.secondary {
  --color-default: var(--black);
  --color-hover: var(--black);
  --color-pressed: var(--black);
  --color-focussed: var(--black);
  --color-disabled: var(--neutral-warm-300);
  --bg-default: var(--white);
  --bg-hover: var(--accent-aqua);
  --bg-pressed: var(--secondary-ice);
  --bg-focussed: var(--white);
  --bg-disabled: var(--neutral-cold-0);
  --outline-default: none;
  --outline-hover: none;
  --outline-pressed: none;
  --outline-focussed: 2px solid var(--secondary-ice);
  --outline-disabled: none;
}

.secondary.plain {
  --color-default: var(--accent-wildberry);
  --color-hover: var(--primary-sky);
  --color-pressed: var(--primary-dark);
  --color-focussed: var(--accent-wildberry);
  --color-disabled: var(--neutral-warm-300);
  --bg-default: transparent;
  --bg-hover: transparent;
  --bg-pressed: transparent;
  --bg-focussed: transparent;
  --bg-disabled: transparent;
  --outline-default: none;
  --outline-hover: none;
  --outline-pressed: none;
  --outline-focussed: 1px solid var(--accent-wildberry);
  --outline-disabled: none;
}

.neutral {
  --color-default: var(--black);
  --color-hover: var(--black);
  --color-pressed: var(--white);
  --color-focussed: var(--black);
  --color-disabled: var(--neutral-warm-300);
  --bg-default: var(--white);
  --bg-hover: var(--secondary-ice);
  --bg-pressed: var(--primary-dark);
  --bg-focussed: var(--white);
  --bg-disabled: var(--neutral-cold-0);
  --outline-default: none;
  --outline-hover: none;
  --outline-pressed: none;
  --outline-focussed: 2px solid var(--primary-dark);
  --outline-disabled: none;
}

.ghost {
  --color-default: var(--white);
  --color-hover: var(--black);
  --color-pressed: var(--black);
  --color-focussed: var(--black);
  --color-disabled: var(--neutral-warm-300);
  --bg-default: transparent;
  --bg-hover: var(--white);
  --bg-pressed: var(--neutral-cold-200);
  --bg-focussed: var(--white);
  --bg-disabled: var(--neutral-cold-0);
  --outline-default: 1px solid var(--white);
  --outline-hover: none;
  --outline-pressed: none;
  --outline-focussed: 1px solid var(--neutral-warm-300);
  --outline-disabled: none;
}

.ghost.plain {
  --color-default: var(--white);
  --color-hover: var(--black);
  --color-pressed: var(--black);
  --color-focussed: var(--black);
  --color-disabled: var(--neutral-warm-300);
  --bg-default: transparent;
  --bg-hover: var(--white);
  --bg-pressed: var(--neutral-cold-200);
  --bg-focussed: var(--white);
  --bg-disabled: none;
  --outline-default: none;
  --outline-hover: none;
  --outline-pressed: none;
  --outline-focussed: none;
  --outline-disabled: none;
}

.neutral.plain {
  --color-default: var(--black);
  --color-hover: var(--primary-sky);
  --color-pressed: var(--primary-dark);
  --color-focussed: var(--black);
  --color-disabled: var(--neutral-warm-300);
  --bg-default: transparent;
  --bg-hover: transparent;
  --bg-pressed: transparent;
  --bg-focussed: transparent;
  --bg-disabled: transparent;
  --outline-default: none;
  --outline-hover: none;
  --outline-pressed: none;
  --outline-focussed: 1px solid var(--black);
  --outline-disabled: none;
}

.success {
  --color-default: var(--white);
  --color-hover: var(--black);
  --color-pressed: var(--white);
  --color-focussed: var(--white);
  --color-disabled: var(--neutral-warm-300);
  --bg-default: var(--success-500);
  --bg-hover: var(--success-200);
  --bg-pressed: var(--success-700);
  --bg-focussed: var(--success-500);
  --bg-disabled: var(--neutral-cold-0);
  --outline-default: none;
  --outline-hover: none;
  --outline-pressed: none;
  --outline-focussed: 2px solid var(--success-200);
  --outline-disabled: none;
}

.success.outline {
  --color-default: var(--success-500);
  --color-hover: var(--white);
  --color-pressed: var(--white);
  --color-focussed: var(--white);
  --color-disabled: var(--neutral-warm-300);
  --bg-default: transparent;
  --bg-hover: var(--success-500);
  --bg-pressed: var(--success-700);
  --bg-focussed: var(--success-500);
  --bg-disabled: var(--neutral-cold-0);
  --outline-default: 1px solid var(--success-500);
  --outline-hover: none;
  --outline-pressed: none;
  --outline-focussed: 2px solid var(--success-200);
  --outline-disabled: none;
}

.success.plain {
  --color-default: var(--success-700);
  --color-hover: var(--success-300);
  --color-pressed: var(--success-500);
  --color-focussed: var(--success-700);
  --color-disabled: var(--neutral-warm-300);
  --bg-default: transparent;
  --bg-hover: transparent;
  --bg-pressed: transparent;
  --bg-focussed: transparent;
  --bg-disabled: transparent;
  --outline-default: none;
  --outline-hover: none;
  --outline-pressed: none;
  --outline-focussed: 1px solid var(--success-700);
  --outline-disabled: none;
}

.warn {
  --color-default: var(--white);
  --color-hover: var(--black);
  --color-pressed: var(--white);
  --color-focussed: var(--white);
  --color-disabled: var(--neutral-warm-300);
  --bg-default: var(--warn-500);
  --bg-hover: var(--warn-200);
  --bg-pressed: var(--warn-700);
  --bg-focussed: var(--warn-500);
  --bg-disabled: var(--neutral-cold-0);
  --outline-default: none;
  --outline-hover: none;
  --outline-pressed: none;
  --outline-focussed: 2px solid var(--warn-200);
  --outline-disabled: none;
}

.warn.outline {
  --color-default: var(--warn-500);
  --color-hover: var(--white);
  --color-pressed: var(--white);
  --color-focussed: var(--white);
  --color-disabled: var(--neutral-warm-300);
  --bg-default: transparent;
  --bg-hover: var(--warn-500);
  --bg-pressed: var(--warn-700);
  --bg-focussed: var(--warn-500);
  --bg-disabled: var(--neutral-cold-0);
  --outline-default: 1px solid var(--warn-500);
  --outline-hover: none;
  --outline-pressed: none;
  --outline-focussed: 2px solid var(--warn-200);
  --outline-disabled: none;
}

.warn.plain {
  --color-default: var(--warn-700);
  --color-hover: var(--warn-400);
  --color-pressed: var(--warn-500);
  --color-focussed: var(--warn-700);
  --color-disabled: var(--neutral-warm-300);
  --bg-default: transparent;
  --bg-hover: transparent;
  --bg-pressed: transparent;
  --bg-focussed: transparent;
  --bg-disabled: transparent;
  --outline-default: none;
  --outline-hover: none;
  --outline-pressed: none;
  --outline-focussed: 1px solid var(--warn-700);
  --outline-disabled: none;
}

button, a.button {
  font: inherit;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  border-radius: 2rem;
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: background 200ms ease-out, color 200ms ease-out, border-bottom-color 200ms ease-out;
  background: var(--bg-default);
  color: var(--color-default);
  outline: var(--outline-default);
}
button.icon, a.button.icon {
  padding: 0.5rem;
  font-size: 1.5rem;
}
button:focus-visible, a.button:focus-visible {
  background: var(--bg-focussed);
  color: var(--color-focussed);
  outline: var(--outline-focussed);
}
button:hover, a.button:hover {
  background: var(--bg-hover);
  color: var(--color-hover);
  outline: var(--outline-hover);
}
button:active, a.button:active {
  background: var(--bg-pressed);
  color: var(--color-pressed);
  outline: var(--outline-pressed);
}
button:disabled, a.button:disabled {
  cursor: unset;
  pointer-events: none;
  background: var(--bg-disabled);
  color: var(--color-disabled);
  outline: var(--outline-disabled);
}

button.plain:not(.icon), a.button.plain:not(.icon) {
  padding: 2px;
  border-radius: 2px;
  border: 1px transparent solid;
}
button.plain:not(.icon):hover, a.button.plain:not(.icon):hover {
  border-radius: 0;
  border-bottom: 1px solid var(--color-hover);
}
button.plain:not(.icon):active, a.button.plain:not(.icon):active {
  border-bottom: 1px solid var(--color-pressed);
}

.button-scribble-wrapper {
  position: relative;
}
.button-scribble-wrapper .scribble-group {
  position: absolute;
  top: 120%;
  left: 88%;
  height: 100%;
  pointer-events: none;
}
.button-scribble-wrapper .scribble-group-no-user-jobs {
  position: absolute;
  top: 150%;
  left: 30%;
  height: 100%;
  pointer-events: none;
}
.button-scribble-wrapper .scribble-group-wide {
  position: absolute;
  top: 120%;
  left: 88%;
  height: 100%;
  pointer-events: none;
  min-width: 300px;
}

@media (max-width: 600px) {
  button, a.button {
    padding: 12px;
  }
  .button-scribble-wrapper {
    position: relative;
    width: max-content;
  }
  .button-scribble-wrapper .scribble-group {
    position: relative;
    top: unset;
    left: unset;
    height: 100%;
    pointer-events: none;
  }
}
.category-chip {
  border-radius: 100px;
  background-color: var(--white);
  padding: 0.25rem 0.625rem;
  width: fit-content;
  font-size: 0.875rem;
  line-height: normal;
  color: var(--black);
}
.category-chip.beige {
  background-color: var(--neutral-warm-100);
}

.flex {
  --show-display: flex;
  display: flex;
  position: relative;
}
.flex.row {
  flex-direction: row;
}
.flex.column {
  flex-direction: column;
}
.flex.row-reverse {
  flex-direction: row-reverse;
}
.flex.column-reverse {
  flex-direction: column-reverse;
}
.flex.wrap {
  flex-wrap: wrap;
}
.flex.start {
  justify-content: start;
  align-items: start;
}
.flex.start-center {
  justify-content: start;
  align-items: center;
}
.flex.start-baseline {
  justify-content: start;
  align-items: baseline;
}
.flex.center {
  justify-content: center;
  align-items: center;
}
.flex.center-start {
  justify-content: center;
  align-items: start;
}
.flex.center-stretch {
  justify-content: center;
  align-items: stretch;
}
.flex.end {
  justify-content: end;
  align-items: end;
}
.flex.end-center {
  justify-content: end;
  align-items: center;
}
.flex.space-between-start {
  justify-content: space-between;
  align-items: start;
}
.flex.space-between-center {
  justify-content: space-between;
  align-items: center;
}
.flex.space-around-start {
  justify-content: space-around;
  align-items: flex-start;
}
.flex.space-around-center {
  justify-content: space-around;
  align-items: center;
}
.flex.start-end {
  justify-content: start;
  align-items: end;
}
.flex.end-start {
  justify-content: end;
  align-items: start;
}
.flex.gap {
  gap: 1rem;
}
.flex.gap-sm {
  gap: 0.5rem;
}
.flex.gap-1-5 {
  gap: 1.5rem;
}
.flex.gap-lg {
  gap: 2rem;
}
.flex.gap-3 {
  gap: 3rem;
}
.flex.gap-xl {
  gap: 4rem;
}

.inline {
  display: inline;
}

.text-center {
  text-align: center;
}

.height-100 {
  height: 100%;
}

.height-50 {
  height: 50%;
}

.width-100 {
  width: 100%;
}

.width-66 {
  width: 66.6666666667%;
}

.width-50 {
  width: 50%;
}

.width-25 {
  width: 25%;
}

.stretch-100 {
  height: 100%;
  width: 100%;
}

.flex-1 {
  flex: 1;
}

.cap-width {
  max-width: 1256px;
}

.cap-width-sm {
  max-width: 832px;
}

.cap-content {
  max-width: 1440px;
}

.overflow-hidden {
  overflow: hidden;
}

.overflow-hidden-y {
  overflow-y: hidden;
}

.overflow-hidden-x {
  overflow-x: hidden;
}

.overflow-visible {
  overflow: visible;
}

.overflow-visible-y {
  overflow-y: visible;
}

.overflow-visible-x {
  overflow-x: visible;
}

.overflow-clip {
  overflow: clip;
}

.padding {
  padding: 1rem;
}

.padding-vertical {
  padding: 1rem 0;
}

.padding-lg {
  padding: 2rem;
}

.section-padding {
  padding: 5rem 0;
}

.section-padding-lg {
  padding: 6rem 0;
}

.margin {
  margin: 1rem;
}

.margin-right {
  margin-right: 1rem;
}

.margin-left {
  margin-left: 1rem;
}

.margin-bottom {
  margin-bottom: 1rem;
}

.margin-bottom-lg {
  margin-bottom: 2rem;
}

.margin-bottom-xl {
  margin-bottom: 3rem;
}

.margin-top {
  margin-top: 1rem;
}

.margin-top-lg {
  margin-top: 2rem;
}

.margin-top-xl {
  margin-top: 3rem;
}

.margin-vertical {
  margin: 1rem 0;
}

.margin-horizontal {
  margin: 0 1rem;
}

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

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

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

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

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

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

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

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

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

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

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

.grid {
  --show-display: grid;
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  column-gap: 1rem;
  row-gap: 1rem;
}
.grid > .item-1 {
  grid-column: span 1;
}
.grid > .item-2 {
  grid-column: span 2;
}
.grid > .item-3 {
  grid-column: span 3;
}
.grid > .item-4 {
  grid-column: span 4;
}
.grid > .item-5 {
  grid-column: span 5;
}
.grid > .item-6 {
  grid-column: span 6;
}
.grid > .item-7 {
  grid-column: span 7;
}
.grid > .item-8 {
  grid-column: span 8;
}
.grid > .item-9 {
  grid-column: span 9;
}
.grid > .item-10 {
  grid-column: span 10;
}
.grid > .item-11 {
  grid-column: span 11;
}
.grid > .item-12 {
  grid-column: span 12;
}
.grid.gap-lg {
  row-gap: 2rem;
  column-gap: 2rem;
}

@media (max-width: 768px) {
  .grid {
    row-gap: 1.5rem;
  }
  .responsive-grid {
    grid-auto-flow: row; /* Change grid flow to row */
    grid-template-columns: 1fr; /* Set single column layout */
    row-gap: 1rem; /* Adjust spacing between items */
    column-gap: 0; /* No gap between columns */
  }
  .section-padding {
    padding: 3.5rem 0;
  }
}
.grid-hover-interactive .grid-card-wrapper {
  transition: transform 0.2s ease, opacity 0.2s ease;
  transform: scale(1);
  opacity: 1;
  will-change: transform, opacity;
  z-index: 1;
}
.grid-hover-interactive:has(.grid-card-wrapper:hover) .grid-card-wrapper {
  opacity: 0.9;
}
.grid-hover-interactive .grid-card-wrapper:hover {
  transform: scale(1.01) !important;
  opacity: 1 !important;
  z-index: 2;
}

/*this should always be at the bottom of the stylesheet since its purpose is to remove the grid layout*/
.ungrid {
  grid: none !important;
}

.snap-feed {
  scroll-snap-type: y mandatory;
  scroll-behavior: smooth;
}

.snap-feed > * {
  scroll-snap-align: start;
  height: 100dvh;
  width: 100dvw;
  margin-left: calc(-50vw + 50%);
}

.enable-snap {
  scroll-snap-type: y mandatory;
  scroll-behavior: smooth;
}

.max-content {
  width: max-content;
}

* {
  scroll-snap-type: none; /* Reset für alle Elemente */
}

.mobile-feed {
  scroll-snap-type: y mandatory !important;
}

.position-static {
  position: static;
}

section {
  overflow: hidden;
  max-width: 100%;
}

.checkout-box {
  display: flex;
  border-radius: 1rem;
  border: 1px solid var(--neutral-warm-300);
  background: var(--white);
  padding: 2rem;
  max-width: 832px;
  min-height: 350px;
  width: 100%;
}
@media (max-width: 600px) {
  .checkout-box {
    padding: 1.5rem 1rem;
  }
}

.checkout-card-content {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: start;
  flex: 1;
  gap: 2rem;
}

.single-location-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.5rem 1rem;
  border-bottom: 1px solid var(--neutral-warm-300);
}

.single-location-row:last-child {
  border-bottom: none;
}

.location-input-wrapper {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  width: 100%;
  max-width: 250px;
}
@media (max-width: 600px) {
  .location-input-wrapper {
    max-width: unset;
  }
}

.flavour-wrapper {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  width: 100%;
  padding: 1rem;
  background: var(--neutral-warm-100);
  border-radius: 1rem;
}
@media (max-width: 600px) {
  .flavour-wrapper {
    background: var(--neutral-warm-200);
  }
}

.flavour-text {
  display: flex;
  flex-direction: column;
  justify-content: start;
  gap: 0.25rem;
  font-size: 12px;
  line-height: normal;
}
.flavour-text .flavour-list-item {
  display: flex;
  justify-content: start;
  align-items: center;
  gap: 0.5rem;
  margin-left: 0.5rem;
}

.bafoeg-checkout-contents-layout {
  display: flex;
  flex-direction: column;
  justify-content: start;
  align-items: center;
  width: 100%;
  gap: 1rem;
}
@media (max-width: 600px) {
  .bafoeg-checkout-contents-layout {
    gap: 0;
  }
}

.bafoeg-checkout-box {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  border-radius: 1rem;
  border: 1px solid var(--neutral-warm-300);
  background: var(--white);
  padding: 1.5rem;
  max-width: 832px;
  width: 100%;
}
@media (max-width: 600px) {
  .bafoeg-checkout-box {
    border: none;
    background: transparent;
    padding: 0.5rem;
  }
}

.divider {
  height: 1px;
  background-color: var(--neutral-warm-300);
  margin: 1rem 0;
  width: 100%;
}

.opacity-1 {
  opacity: 1;
}

.opacity-07 {
  opacity: 0.7;
}

.opacity-05 {
  opacity: 0.5;
}

.opacity-0 {
  opacity: 0;
}

:root {
  --content-width-xl: 1256px;
  --content-width-md: 832px;
  --content-gutter: clamp(16px, 4vw, 24px);
}

.content-width, .desktop-content-width,
.mobile-content-width {
  /* center + gutters */
  margin-inline: auto;
  padding-inline: var(--content-gutter);
  /* mobile default: full width minus gutter */
  max-width: calc(100dvw - 2 * var(--content-gutter));
  /* tablet: cap auf md */
  /* desktop: cap auf xl */
}
@media (min-width: 601px) and (max-width: 1150px) {
  .content-width, .desktop-content-width,
  .mobile-content-width {
    max-width: var(--content-width-md);
    padding: 0 1rem;
  }
}
@media (min-width: 1151px) {
  .content-width, .desktop-content-width,
  .mobile-content-width {
    max-width: var(--content-width-xl);
  }
}

@media (min-width: 601px) {
  .content-width--md-only {
    max-width: min(100%, var(--content-width-md));
  }
}

.content-width--fluid {
  max-width: none;
}

/* Backwards-compat aliases (Altlasten mappen sauber um) */
.show-mobile, .show-tablet, .show-desktop {
  display: none !important;
}

@media (max-width: 600px) {
  .show-mobile {
    display: var(--show-display, block) !important;
  }
}
@media (min-width: 601px) and (max-width: 1150px) {
  .show-tablet {
    display: var(--show-display, block) !important;
  }
}
@media (min-width: 1151px) {
  .show-desktop {
    display: var(--show-display, block) !important;
  }
}
@media (max-width: 600px) {
  .hide-mobile {
    display: none !important;
  }
}
@media (min-width: 601px) and (max-width: 1150px) {
  .hide-tablet {
    display: none !important;
  }
}
@media (min-width: 1151px) {
  .hide-desktop {
    display: none !important;
  }
}
.visually-hidden {
  position: absolute !important;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
  border: 0;
}

/* src/lib/styles/typing.scss */
.scribble-note-medium {
  font-family: "Huy Handschrift", "sans-serif";
  font-size: 24px;
  line-height: 24px;
  max-width: 250px;
  color: var(--primary-dark);
}

.typing-block {
  display: inline;
}

/* tokens remain inline to preserve natural wrapping */
.typing-token {
  display: inline;
}

/* each visual line gets its own mask-based reveal */
.typing-line {
  display: inline; /* stays inline; wraps already grouped */
  -webkit-mask: linear-gradient(#000 0 0) left/0% 100% no-repeat;
  mask: linear-gradient(#000 0 0) left/0% 100% no-repeat;
}

.typing-line--animate {
  animation: typing-reveal var(--duration) steps(var(--chars)) var(--delay) both;
}

@keyframes typing-reveal {
  to {
    -webkit-mask-size: 100% 100%;
    mask-size: 100% 100%;
  }
}
/* A11y: respect reduced motion */
.arrow-soft-curve-left {
  background-image: url("data:image/svg+xml,%3c?xml%20version='1.0'%20encoding='UTF-8'?%3e%3csvg%20id='Layer_2'%20xmlns='http://www.w3.org/2000/svg'%20viewBox='0%200%209.38%2018.63'%3e%3cdefs%3e%3cstyle%3e%20.cls-1%20{%20fill:%20%2315148b;%20}%20%3c/style%3e%3c/defs%3e%3cg%20id='Layer_1-2'%20data-name='Layer_1'%3e%3cpath%20class='cls-1'%20d='M6.86,15.74c-.12-.63-.5-1.26.16-2.07.7,1.51,1.32,2.9,2.36,4.34-1.67,1.1-3.38.27-4.96.63q-.03-.8,2.27-1.25C1.47,14.37-.6,9.92.15,4.19.34,2.77.1,1.2,1.24,0c.36,1.21.21,2.42.09,3.62-.27,2.55-.36,5.09.83,7.48,1.04,2.08,2.67,3.64,4.47,5.03.09.01.19.02.35.05-.05-.19-.09-.31-.13-.44Z'/%3e%3c/g%3e%3c/svg%3e");
  transform: scale(-1, 1) rotate(-25deg);
  height: 38px;
  width: 38px;
  background-size: contain;
  background-repeat: no-repeat;
}

.arrow-sharp-curve-right {
  background-image: url("data:image/svg+xml,%3c?xml%20version='1.0'%20encoding='UTF-8'?%3e%3csvg%20id='Layer_2'%20xmlns='http://www.w3.org/2000/svg'%20viewBox='0%200%2024.89%2027.36'%3e%3cdefs%3e%3cstyle%3e%20.cls-1%20{%20fill:%20%2315148b;%20}%20%3c/style%3e%3c/defs%3e%3cg%20id='Layer_1-2'%20data-name='Layer_1'%3e%3cpath%20class='cls-1'%20d='M2.01,0c.43,1.16,0,2.24-.19,3.31-1.12,6.23.6,11.53,5.13,15.89,2.95,2.84,6.67,3.95,10.65,4.22,1.15.08,2.31.54,3.61.13-.66-.91-2.29-1-2.11-2.76,1.85,1.28,3.68,1.97,5.5,2.37.37.42.33.76.18,1.11-.86,1.2-5.14,3.41-6,3.04-.22-1.51,1.63-1.13,2.02-2.25-10.41.43-17.72-3.81-20.35-14.2C-.46,7.24-.02,3.4,2.01,0Z'/%3e%3c/g%3e%3c/svg%3e");
  transform: scale(1, 1) rotate(25deg);
  height: 38px;
  width: 38px;
  background-size: contain;
  background-repeat: no-repeat;
}

.arrow-sharp-curve-left {
  background-image: url("data:image/svg+xml,%3c?xml%20version='1.0'%20encoding='UTF-8'?%3e%3csvg%20id='Layer_2'%20xmlns='http://www.w3.org/2000/svg'%20viewBox='0%200%2024.89%2027.36'%3e%3cdefs%3e%3cstyle%3e%20.cls-1%20{%20fill:%20%2315148b;%20}%20%3c/style%3e%3c/defs%3e%3cg%20id='Layer_1-2'%20data-name='Layer_1'%3e%3cpath%20class='cls-1'%20d='M2.01,0c.43,1.16,0,2.24-.19,3.31-1.12,6.23.6,11.53,5.13,15.89,2.95,2.84,6.67,3.95,10.65,4.22,1.15.08,2.31.54,3.61.13-.66-.91-2.29-1-2.11-2.76,1.85,1.28,3.68,1.97,5.5,2.37.37.42.33.76.18,1.11-.86,1.2-5.14,3.41-6,3.04-.22-1.51,1.63-1.13,2.02-2.25-10.41.43-17.72-3.81-20.35-14.2C-.46,7.24-.02,3.4,2.01,0Z'/%3e%3c/g%3e%3c/svg%3e");
  transform: scale(-1, 1);
  height: 38px;
  width: 38px;
  background-size: contain;
  background-repeat: no-repeat;
}

.arrow-soft-curve-right {
  background-image: url("data:image/svg+xml,%3c?xml%20version='1.0'%20encoding='UTF-8'?%3e%3csvg%20id='Layer_2'%20xmlns='http://www.w3.org/2000/svg'%20viewBox='0%200%209.38%2018.63'%3e%3cdefs%3e%3cstyle%3e%20.cls-1%20{%20fill:%20%2315148b;%20}%20%3c/style%3e%3c/defs%3e%3cg%20id='Layer_1-2'%20data-name='Layer_1'%3e%3cpath%20class='cls-1'%20d='M6.86,15.74c-.12-.63-.5-1.26.16-2.07.7,1.51,1.32,2.9,2.36,4.34-1.67,1.1-3.38.27-4.96.63q-.03-.8,2.27-1.25C1.47,14.37-.6,9.92.15,4.19.34,2.77.1,1.2,1.24,0c.36,1.21.21,2.42.09,3.62-.27,2.55-.36,5.09.83,7.48,1.04,2.08,2.67,3.64,4.47,5.03.09.01.19.02.35.05-.05-.19-.09-.31-.13-.44Z'/%3e%3c/g%3e%3c/svg%3e");
  height: 38px;
  width: 38px;
  background-size: contain;
  background-repeat: no-repeat;
}

.arrow-straight-left {
  background-image: url("data:image/svg+xml,%3c?xml%20version='1.0'%20encoding='UTF-8'?%3e%3csvg%20id='Layer_2'%20xmlns='http://www.w3.org/2000/svg'%20viewBox='0%200%2033.62%205.44'%3e%3cdefs%3e%3cstyle%3e%20.cls-1%20{%20fill:%20%2315148b;%20}%20%3c/style%3e%3c/defs%3e%3cg%20id='Layer_1-2'%20data-name='Layer_1'%3e%3cpath%20class='cls-1'%20d='M29.05,1.9c-.34-.37-.68-.75-.98-1.09-.06-.45.13-.66.54-.81,1.51,1.27,3.67,1.77,5.01,3.62-1.92,1.2-3.68,1.62-5.42,1.82-.68-.76-.15-1.14.45-1.69-.69-.03-1.1-.07-1.51-.07-8.22-.11-16.43.28-24.65.09-.89-.02-1.81.02-2.49-.88,9.66-.22,19.3-.84,28.96-.68.03-.1.06-.21.09-.31Z'/%3e%3c/g%3e%3c/svg%3e");
  transform: scale(-1, 1);
  height: 20px;
  width: 52px;
  background-size: contain;
  background-repeat: no-repeat;
}

.arrow-straight-right {
  background-image: url("data:image/svg+xml,%3c?xml%20version='1.0'%20encoding='UTF-8'?%3e%3csvg%20id='Layer_2'%20xmlns='http://www.w3.org/2000/svg'%20viewBox='0%200%2033.62%205.44'%3e%3cdefs%3e%3cstyle%3e%20.cls-1%20{%20fill:%20%2315148b;%20}%20%3c/style%3e%3c/defs%3e%3cg%20id='Layer_1-2'%20data-name='Layer_1'%3e%3cpath%20class='cls-1'%20d='M29.05,1.9c-.34-.37-.68-.75-.98-1.09-.06-.45.13-.66.54-.81,1.51,1.27,3.67,1.77,5.01,3.62-1.92,1.2-3.68,1.62-5.42,1.82-.68-.76-.15-1.14.45-1.69-.69-.03-1.1-.07-1.51-.07-8.22-.11-16.43.28-24.65.09-.89-.02-1.81.02-2.49-.88,9.66-.22,19.3-.84,28.96-.68.03-.1.06-.21.09-.31Z'/%3e%3c/g%3e%3c/svg%3e");
  height: 20px;
  width: 52px;
  background-size: contain;
  background-repeat: no-repeat;
}

.arrow-down-left {
  background-image: url("data:image/svg+xml,%3c?xml%20version='1.0'%20encoding='UTF-8'?%3e%3csvg%20id='Layer_2'%20xmlns='http://www.w3.org/2000/svg'%20viewBox='0%200%209.26%2031.39'%3e%3cdefs%3e%3cstyle%3e%20.cls-1%20{%20fill:%20%2315148b;%20}%20%3c/style%3e%3c/defs%3e%3cg%20id='Layer_1-2'%20data-name='Layer_1'%3e%3cpath%20class='cls-1'%20d='M6.06,29.1c-3.04-3.17-5.01-6.93-5.7-11.23C-.61,11.76.31,5.96,4.05.82c.71-.98,1.13-1.03,1.85-.44C2.08,5.39,1.04,11.13,1.86,17.18c.6,4.48,2.78,8.37,5.61,12.08.56-1.35-.8-2.67.54-3.95.43,2.08.83,4.01,1.26,6.08-2.33-.28-4.51-.72-6.68-2.07,1.24-.73,2.16.15,3.12.11.21.11.42.22.63.01.02-.2-.12-.27-.26-.34Z'/%3e%3c/g%3e%3c/svg%3e");
  transform: scale(-1, 1);
  height: 90px;
  width: 20px;
  background-size: contain;
  background-repeat: no-repeat;
}

.arrow-down-right {
  background-image: url("data:image/svg+xml,%3c?xml%20version='1.0'%20encoding='UTF-8'?%3e%3csvg%20id='Layer_2'%20xmlns='http://www.w3.org/2000/svg'%20viewBox='0%200%209.26%2031.39'%3e%3cdefs%3e%3cstyle%3e%20.cls-1%20{%20fill:%20%2315148b;%20}%20%3c/style%3e%3c/defs%3e%3cg%20id='Layer_1-2'%20data-name='Layer_1'%3e%3cpath%20class='cls-1'%20d='M6.06,29.1c-3.04-3.17-5.01-6.93-5.7-11.23C-.61,11.76.31,5.96,4.05.82c.71-.98,1.13-1.03,1.85-.44C2.08,5.39,1.04,11.13,1.86,17.18c.6,4.48,2.78,8.37,5.61,12.08.56-1.35-.8-2.67.54-3.95.43,2.08.83,4.01,1.26,6.08-2.33-.28-4.51-.72-6.68-2.07,1.24-.73,2.16.15,3.12.11.21.11.42.22.63.01.02-.2-.12-.27-.26-.34Z'/%3e%3c/g%3e%3c/svg%3e");
  height: 90px;
  width: 20px;
  background-size: contain;
  background-repeat: no-repeat;
}

.arrow-down-right-big {
  background-image: url("data:image/svg+xml,%3c?xml%20version='1.0'%20encoding='UTF-8'?%3e%3csvg%20id='Layer_2'%20xmlns='http://www.w3.org/2000/svg'%20viewBox='0%200%209.26%2031.39'%3e%3cdefs%3e%3cstyle%3e%20.cls-1%20{%20fill:%20%2315148b;%20}%20%3c/style%3e%3c/defs%3e%3cg%20id='Layer_1-2'%20data-name='Layer_1'%3e%3cpath%20class='cls-1'%20d='M6.06,29.1c-3.04-3.17-5.01-6.93-5.7-11.23C-.61,11.76.31,5.96,4.05.82c.71-.98,1.13-1.03,1.85-.44C2.08,5.39,1.04,11.13,1.86,17.18c.6,4.48,2.78,8.37,5.61,12.08.56-1.35-.8-2.67.54-3.95.43,2.08.83,4.01,1.26,6.08-2.33-.28-4.51-.72-6.68-2.07,1.24-.73,2.16.15,3.12.11.21.11.42.22.63.01.02-.2-.12-.27-.26-.34Z'/%3e%3c/g%3e%3c/svg%3e");
  height: 180px;
  width: 40px;
  background-size: contain;
  background-repeat: no-repeat;
}

.arrow-big-position {
  position: absolute;
  top: 90%;
  right: -30px;
  transform: rotate(11deg);
}

.top-left-icon-spot {
  position: absolute;
  left: -2rem;
  top: 4rem;
}

.mlp-logo-small {
  margin-left: 1rem;
  height: 1rem;
}

.mlp-logo-medium {
  margin-left: 1rem;
  height: 1.5rem;
}

html[data-bp=mobile] .desktop-content-width {
  max-width: 100%;
}

html[data-bp=desktop] .mobile-only {
  display: none !important;
}

*, *::before, *::after {
  box-sizing: border-box;
}

:root {
  color: var(--black);
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  overflow-x: hidden;
}
body.no-user-select {
  user-select: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
}

#player iframe {
  width: 100%;
  height: 100%;
}

html, body {
  overflow-x: visible; /* wichtig: kein clip/hidden auf der X-Achse */
  contain: none; /* falls ein Reset contain gesetzt hat */
  height: auto; /* vermeide 'height:100%' ohne Not */
  min-height: 100%; /* okay */
}

.bottom-sheet-content {
  flex: 1 1 0;
  width: 100%;
  overflow: auto;
  overscroll-behavior: none;
  padding-bottom: 4rem;
}
.bottom-sheet-content.disable-scrolling {
  overflow: hidden;
}

div.os-scrollbar {
  top: 25px !important;
}

.typing-hidden {
  visibility: hidden;
}

.neutral-link {
  color: inherit;
  font: inherit;
  line-height: inherit;
  text-decoration: none;
  background: none;
  border: 0;
  padding: 0;
  margin: 0;
  cursor: inherit;
}
.neutral-link:link, .neutral-link:visited, .neutral-link:hover, .neutral-link:active {
  color: inherit;
  text-decoration: none;
}
.neutral-link:focus {
  outline: none;
}.snackbar.svelte-10wbmbr {
  display: flex;
  flex-direction: row;
  gap: 1rem;
  justify-content: space-between;
  align-items: center;
  position: fixed;
  bottom: 1rem;
  left: 50%;
  transform: translateX(-50%);
  background: var(--primary-dark);
  color: var(--white);
  width: 95%;
  max-width: var(--content-width-md);
  padding: 1rem 2rem;
  border-radius: 1rem;
  z-index: 100;
}
.snackbar.warn.svelte-10wbmbr {
  background: var(--warn-400);
}
.snackbar.success.svelte-10wbmbr {
  background: var(--success-500);
}

.snackbar-icon.svelte-10wbmbr {
  font-size: 2rem;
}

.mobile-close-button.svelte-10wbmbr {
  position: absolute;
  top: 1rem;
  right: 1em;
}

@media (max-width: 600px) {
  .snackbar.svelte-10wbmbr {
    width: 100%;
    bottom: 0;
    border-radius: 1rem 1rem 0 0;
    flex-direction: column;
    align-items: start;
  }
}/*! 
 * OverlayScrollbars
 * Version: 2.12.0
 * 
 * Copyright (c) Rene Haas | KingSora.
 * https://github.com/KingSora
 * 
 * Released under the MIT license.
 */
.os-size-observer,
.os-size-observer-listener {
  scroll-behavior: auto !important;
  direction: inherit;
  pointer-events: none;
  overflow: hidden;
  visibility: hidden;
  box-sizing: border-box;
}

.os-size-observer,
.os-size-observer-listener,
.os-size-observer-listener-item,
.os-size-observer-listener-item-final {
  writing-mode: horizontal-tb;
  position: absolute;
  left: 0;
  top: 0;
}

.os-size-observer {
  z-index: -1;
  contain: strict;
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  padding: inherit;
  border: inherit;
  box-sizing: inherit;
  margin: -133px;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  transform: scale(0.1);
}
.os-size-observer::before {
  content: "";
  flex: none;
  box-sizing: inherit;
  padding: 10px;
  width: 10px;
  height: 10px;
}

.os-size-observer-appear {
  animation: os-size-observer-appear-animation 1ms forwards;
}

.os-size-observer-listener {
  box-sizing: border-box;
  position: relative;
  flex: auto;
  padding: inherit;
  border: inherit;
  margin: -133px;
  transform: scale(calc(1 / 0.1));
}
.os-size-observer-listener.ltr {
  margin-right: -266px;
  margin-left: 0;
}
.os-size-observer-listener.rtl {
  margin-left: -266px;
  margin-right: 0;
}
.os-size-observer-listener:empty::before {
  content: "";
  width: 100%;
  height: 100%;
}
.os-size-observer-listener:empty::before, .os-size-observer-listener > .os-size-observer-listener-item {
  display: block;
  position: relative;
  padding: inherit;
  border: inherit;
  box-sizing: content-box;
  flex: auto;
}

.os-size-observer-listener-scroll {
  box-sizing: border-box;
  display: flex;
}

.os-size-observer-listener-item {
  right: 0;
  bottom: 0;
  overflow: hidden;
  direction: ltr;
  flex: none;
}

.os-size-observer-listener-item-final {
  transition: none;
}

@keyframes os-size-observer-appear-animation {
  from {
    cursor: auto;
  }
  to {
    cursor: none;
  }
}
.os-trinsic-observer {
  flex: none;
  box-sizing: border-box;
  position: relative;
  max-width: 0px;
  max-height: 1px;
  padding: 0;
  margin: 0;
  border: none;
  overflow: hidden;
  z-index: -1;
  height: 0;
  top: calc(100% + 1px);
  contain: strict;
}
.os-trinsic-observer:not(:empty) {
  height: calc(100% + 1px);
  top: -1px;
}
.os-trinsic-observer:not(:empty) > .os-size-observer {
  width: 1000%;
  height: 1000%;
  min-height: 1px;
  min-width: 1px;
}

/**
 * hide native scrollbars
 * changes to this styles need to be reflected in the environment styles to correctly detect scrollbar hiding
 */
[data-overlayscrollbars-initialize]:not([data-overlayscrollbars-viewport]),
[data-overlayscrollbars-viewport~=scrollbarHidden],
html[data-overlayscrollbars-viewport~=scrollbarHidden] > body {
  scrollbar-width: none !important;
}

[data-overlayscrollbars-initialize]:not([data-overlayscrollbars-viewport])::-webkit-scrollbar,
[data-overlayscrollbars-initialize]:not([data-overlayscrollbars-viewport])::-webkit-scrollbar-corner,
[data-overlayscrollbars-viewport~=scrollbarHidden]::-webkit-scrollbar,
[data-overlayscrollbars-viewport~=scrollbarHidden]::-webkit-scrollbar-corner,
html[data-overlayscrollbars-viewport~=scrollbarHidden] > body::-webkit-scrollbar,
html[data-overlayscrollbars-viewport~=scrollbarHidden] > body::-webkit-scrollbar-corner {
  -webkit-appearance: none !important;
          appearance: none !important;
  display: none !important;
  width: 0 !important;
  height: 0 !important;
}

[data-overlayscrollbars-initialize]:not([data-overlayscrollbars]):not(html):not(body) {
  overflow: auto;
}

/**
 * body element
 */
html[data-overlayscrollbars-body] {
  overflow: hidden;
}

html[data-overlayscrollbars-body],
html[data-overlayscrollbars-body] > body {
  width: 100%;
  height: 100%;
  margin: 0;
}

html[data-overlayscrollbars-body] > body {
  overflow: visible;
  margin: 0;
}

/**
 * structure setup 
 */
[data-overlayscrollbars] {
  position: relative;
}

[data-overlayscrollbars~=host],
[data-overlayscrollbars-padding] {
  display: flex;
  align-items: stretch !important;
  flex-direction: row !important;
  flex-wrap: nowrap !important;
  scroll-behavior: auto !important;
}

[data-overlayscrollbars-padding],
[data-overlayscrollbars-viewport]:not([data-overlayscrollbars]) {
  box-sizing: inherit;
  position: relative;
  flex: auto;
  height: auto;
  width: 100%;
  min-width: 0;
  padding: 0;
  margin: 0;
  border: none;
  z-index: 0;
}

[data-overlayscrollbars-viewport]:not([data-overlayscrollbars]) {
  --os-vaw: 0;
  --os-vah: 0;
  outline: none;
}
[data-overlayscrollbars-viewport]:not([data-overlayscrollbars]):focus {
  outline: none;
}
[data-overlayscrollbars-viewport][data-overlayscrollbars-viewport~=arrange]::before {
  content: "";
  position: absolute;
  pointer-events: none;
  z-index: -1;
  min-width: 1px;
  min-height: 1px;
  width: var(--os-vaw);
  height: var(--os-vah);
}

/**
 * wrapper elements overflow:
 */
[data-overlayscrollbars~=host],
[data-overlayscrollbars-padding] {
  overflow: hidden !important;
}

[data-overlayscrollbars~=host][data-overlayscrollbars~=noClipping],
[data-overlayscrollbars-padding~=noClipping] {
  overflow: visible !important;
}

/**
 * viewport overflow:
 */
[data-overlayscrollbars-viewport] {
  --os-viewport-overflow-x: hidden;
  --os-viewport-overflow-y: hidden;
  overflow-x: var(--os-viewport-overflow-x);
  overflow-y: var(--os-viewport-overflow-y);
}

[data-overlayscrollbars-viewport~=overflowXVisible] {
  --os-viewport-overflow-x: visible;
}

[data-overlayscrollbars-viewport~=overflowXHidden] {
  --os-viewport-overflow-x: hidden;
}

[data-overlayscrollbars-viewport~=overflowXScroll] {
  --os-viewport-overflow-x: scroll;
}

[data-overlayscrollbars-viewport~=overflowYVisible] {
  --os-viewport-overflow-y: visible;
}

[data-overlayscrollbars-viewport~=overflowYHidden] {
  --os-viewport-overflow-y: hidden;
}

[data-overlayscrollbars-viewport~=overflowYScroll] {
  --os-viewport-overflow-y: scroll;
}

[data-overlayscrollbars-viewport~=overflowImportant] {
  overflow-x: var(--os-viewport-overflow-x) !important;
  overflow-y: var(--os-viewport-overflow-y) !important;
}

/**
 * viewport state modifiers:
 */
[data-overlayscrollbars-viewport~=noContent]:not(#osFakeId) {
  font-size: 0 !important;
  line-height: 0 !important;
}

[data-overlayscrollbars-viewport~=noContent]:not(#osFakeId)::before,
[data-overlayscrollbars-viewport~=noContent]:not(#osFakeId)::after,
[data-overlayscrollbars-viewport~=noContent]:not(#osFakeId) > * {
  display: none !important;
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border-width: 0 !important;
}

[data-overlayscrollbars-viewport~=measuring],
[data-overlayscrollbars-viewport~=scrolling] {
  scroll-behavior: auto !important;
  scroll-snap-type: none !important;
}

[data-overlayscrollbars-viewport~=measuring][data-overlayscrollbars-viewport~=overflowXVisible] {
  overflow-x: hidden !important;
}

[data-overlayscrollbars-viewport~=measuring][data-overlayscrollbars-viewport~=overflowYVisible] {
  overflow-y: hidden !important;
}

/**
 * content element:
 */
[data-overlayscrollbars-content] {
  box-sizing: inherit;
}

/**
 * Display contents to bridge any flickering during deferred initialization.
 */
[data-overlayscrollbars-contents]:not(#osFakeId):not([data-overlayscrollbars-padding]):not([data-overlayscrollbars-viewport]):not([data-overlayscrollbars-content]) {
  display: contents;
}

/**
 * optional & experimental grid mode
 */
[data-overlayscrollbars-grid],
[data-overlayscrollbars-grid] [data-overlayscrollbars-padding] {
  display: grid;
  grid-template: 1fr/1fr;
}

[data-overlayscrollbars-grid] > [data-overlayscrollbars-padding],
[data-overlayscrollbars-grid] > [data-overlayscrollbars-viewport],
[data-overlayscrollbars-grid] > [data-overlayscrollbars-padding] > [data-overlayscrollbars-viewport] {
  height: auto !important;
  width: auto !important;
}

@property --os-scroll-percent {
  syntax: "<number>";
  inherits: true;
  initial-value: 0;
}
@property --os-viewport-percent {
  syntax: "<number>";
  inherits: true;
  initial-value: 0;
}
.os-scrollbar {
  --os-viewport-percent: 0;
  --os-scroll-percent: 0;
  --os-scroll-direction: 0;
  --os-scroll-percent-directional: calc(
    var(--os-scroll-percent) - (var(--os-scroll-percent) + (1 - var(--os-scroll-percent)) * -1) *
      var(--os-scroll-direction)
  );
}

.os-scrollbar {
  contain: size layout;
  contain: size layout style;
  transition: opacity 0.15s, visibility 0.15s, top 0.15s, right 0.15s, bottom 0.15s, left 0.15s;
  pointer-events: none;
  position: absolute;
  opacity: 0;
  visibility: hidden;
}

body > .os-scrollbar {
  position: fixed;
  z-index: 99999;
}

.os-scrollbar-transitionless {
  transition: none !important;
}

.os-scrollbar-track {
  position: relative;
  padding: 0 !important;
  border: none !important;
}

.os-scrollbar-handle {
  position: absolute;
}

.os-scrollbar-track,
.os-scrollbar-handle {
  pointer-events: none;
  width: 100%;
  height: 100%;
}

.os-scrollbar.os-scrollbar-track-interactive .os-scrollbar-track,
.os-scrollbar.os-scrollbar-handle-interactive .os-scrollbar-handle {
  pointer-events: auto;
  touch-action: none;
}

.os-scrollbar-horizontal {
  bottom: 0;
  left: 0;
}

.os-scrollbar-vertical {
  top: 0;
  right: 0;
}

.os-scrollbar-rtl.os-scrollbar-horizontal {
  right: 0;
}

.os-scrollbar-rtl.os-scrollbar-vertical {
  right: auto;
  left: 0;
}

.os-scrollbar-visible {
  opacity: 1;
  visibility: visible;
}

.os-scrollbar-auto-hide.os-scrollbar-auto-hide-hidden {
  opacity: 0;
  visibility: hidden;
}

.os-scrollbar-interaction.os-scrollbar-visible {
  opacity: 1;
  visibility: visible;
}

.os-scrollbar-unusable,
.os-scrollbar-unusable *,
.os-scrollbar-wheel,
.os-scrollbar-wheel * {
  pointer-events: none !important;
}

.os-scrollbar-unusable .os-scrollbar-handle {
  opacity: 0 !important;
  transition: none !important;
}

.os-scrollbar-horizontal .os-scrollbar-handle {
  bottom: 0;
  left: calc(var(--os-scroll-percent-directional) * 100%);
  transform: translateX(calc(var(--os-scroll-percent-directional) * -100%));
  width: calc(var(--os-viewport-percent) * 100%);
}

.os-scrollbar-vertical .os-scrollbar-handle {
  right: 0;
  top: calc(var(--os-scroll-percent-directional) * 100%);
  transform: translateY(calc(var(--os-scroll-percent-directional) * -100%));
  height: calc(var(--os-viewport-percent) * 100%);
}

@supports (container-type: size) {
  .os-scrollbar-track {
    container-type: size;
  }
  .os-scrollbar-horizontal .os-scrollbar-handle {
    left: auto;
    transform: translateX(calc(var(--os-scroll-percent-directional) * 100cqw + var(--os-scroll-percent-directional) * -100%));
  }
  .os-scrollbar-vertical .os-scrollbar-handle {
    top: auto;
    transform: translateY(calc(var(--os-scroll-percent-directional) * 100cqh + var(--os-scroll-percent-directional) * -100%));
  }
  .os-scrollbar-rtl.os-scrollbar-horizontal .os-scrollbar-handle {
    right: auto;
    left: 0;
  }
}
.os-scrollbar-rtl.os-scrollbar-vertical .os-scrollbar-handle {
  right: auto;
  left: 0;
}

.os-scrollbar.os-scrollbar-horizontal.os-scrollbar-cornerless,
.os-scrollbar.os-scrollbar-horizontal.os-scrollbar-cornerless.os-scrollbar-rtl {
  left: 0;
  right: 0;
}

.os-scrollbar.os-scrollbar-vertical.os-scrollbar-cornerless,
.os-scrollbar.os-scrollbar-vertical.os-scrollbar-cornerless.os-scrollbar-rtl {
  top: 0;
  bottom: 0;
}

@media print {
  .os-scrollbar {
    display: none;
  }
}
.os-scrollbar {
  --os-size: 0;
  --os-padding-perpendicular: 0;
  --os-padding-axis: 0;
  --os-track-border-radius: 0;
  --os-track-bg: none;
  --os-track-bg-hover: none;
  --os-track-bg-active: none;
  --os-track-border: none;
  --os-track-border-hover: none;
  --os-track-border-active: none;
  --os-handle-border-radius: 0;
  --os-handle-bg: none;
  --os-handle-bg-hover: none;
  --os-handle-bg-active: none;
  --os-handle-border: none;
  --os-handle-border-hover: none;
  --os-handle-border-active: none;
  --os-handle-min-size: 33px;
  --os-handle-max-size: none;
  --os-handle-perpendicular-size: 100%;
  --os-handle-perpendicular-size-hover: 100%;
  --os-handle-perpendicular-size-active: 100%;
  --os-handle-interactive-area-offset: 0;
}

.os-scrollbar-track {
  border: var(--os-track-border);
  border-radius: var(--os-track-border-radius);
  background: var(--os-track-bg);
  transition: opacity 0.15s, background-color 0.15s, border-color 0.15s;
}
.os-scrollbar-track:hover {
  border: var(--os-track-border-hover);
  background: var(--os-track-bg-hover);
}
.os-scrollbar-track:active {
  border: var(--os-track-border-active);
  background: var(--os-track-bg-active);
}

.os-scrollbar-handle {
  border: var(--os-handle-border);
  border-radius: var(--os-handle-border-radius);
  background: var(--os-handle-bg);
}
.os-scrollbar-handle:hover {
  border: var(--os-handle-border-hover);
  background: var(--os-handle-bg-hover);
}
.os-scrollbar-handle:active {
  border: var(--os-handle-border-active);
  background: var(--os-handle-bg-active);
}

.os-scrollbar-track:before,
.os-scrollbar-handle:before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  display: block;
}

.os-scrollbar-horizontal {
  padding: var(--os-padding-perpendicular) var(--os-padding-axis);
  right: var(--os-size);
  height: var(--os-size);
}
.os-scrollbar-horizontal.os-scrollbar-rtl {
  left: var(--os-size);
  right: 0;
}
.os-scrollbar-horizontal .os-scrollbar-track:before {
  top: calc(var(--os-padding-perpendicular) * -1);
  bottom: calc(var(--os-padding-perpendicular) * -1);
}
.os-scrollbar-horizontal .os-scrollbar-handle {
  min-width: var(--os-handle-min-size);
  max-width: var(--os-handle-max-size);
  height: var(--os-handle-perpendicular-size);
  transition: opacity 0.15s, background-color 0.15s, border-color 0.15s, height 0.15s;
}
.os-scrollbar-horizontal .os-scrollbar-handle:before {
  top: calc((var(--os-padding-perpendicular) + var(--os-handle-interactive-area-offset)) * -1);
  bottom: calc(var(--os-padding-perpendicular) * -1);
}
.os-scrollbar-horizontal:hover .os-scrollbar-handle {
  height: var(--os-handle-perpendicular-size-hover);
}
.os-scrollbar-horizontal:active .os-scrollbar-handle {
  height: var(--os-handle-perpendicular-size-active);
}

.os-scrollbar-vertical {
  padding: var(--os-padding-axis) var(--os-padding-perpendicular);
  bottom: var(--os-size);
  width: var(--os-size);
}
.os-scrollbar-vertical .os-scrollbar-track:before {
  left: calc(var(--os-padding-perpendicular) * -1);
  right: calc(var(--os-padding-perpendicular) * -1);
}
.os-scrollbar-vertical .os-scrollbar-handle {
  min-height: var(--os-handle-min-size);
  max-height: var(--os-handle-max-size);
  width: var(--os-handle-perpendicular-size);
  transition: opacity 0.15s, background-color 0.15s, border-color 0.15s, width 0.15s;
}
.os-scrollbar-vertical .os-scrollbar-handle:before {
  left: calc((var(--os-padding-perpendicular) + var(--os-handle-interactive-area-offset)) * -1);
  right: calc(var(--os-padding-perpendicular) * -1);
}
.os-scrollbar-vertical.os-scrollbar-rtl .os-scrollbar-handle:before {
  right: calc((var(--os-padding-perpendicular) + var(--os-handle-interactive-area-offset)) * -1);
  left: calc(var(--os-padding-perpendicular) * -1);
}
.os-scrollbar-vertical:hover .os-scrollbar-handle {
  width: var(--os-handle-perpendicular-size-hover);
}
.os-scrollbar-vertical:active .os-scrollbar-handle {
  width: var(--os-handle-perpendicular-size-active);
}

/* NONE THEME: */
[data-overlayscrollbars-viewport~=measuring] > .os-scrollbar,
.os-theme-none.os-scrollbar {
  display: none !important;
}

/* DARK & LIGHT THEME: */
.os-theme-dark,
.os-theme-light {
  box-sizing: border-box;
  --os-size: 10px;
  --os-padding-perpendicular: 2px;
  --os-padding-axis: 2px;
  --os-track-border-radius: 10px;
  --os-handle-interactive-area-offset: 4px;
  --os-handle-border-radius: 10px;
}

.os-theme-dark {
  --os-handle-bg: rgba(0, 0, 0, 0.44);
  --os-handle-bg-hover: rgba(0, 0, 0, 0.55);
  --os-handle-bg-active: rgba(0, 0, 0, 0.66);
}

.os-theme-light {
  --os-handle-bg: rgba(255, 255, 255, 0.44);
  --os-handle-bg-hover: rgba(255, 255, 255, 0.55);
  --os-handle-bg-active: rgba(255, 255, 255, 0.66);
}.bottom-sheet-backdrop.svelte-94lvfq {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.4);
  display: flex;
  justify-content: center;
  align-items: end;
  z-index: 999;
  pointer-events: auto;
}

.bottom-sheet-container.svelte-94lvfq {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: flex;
  align-items: end;
  justify-content: center;
  pointer-events: none;
}

.bottom-sheet-close.svelte-94lvfq {
  position: absolute;
  top: 1rem;
  right: 1rem;
  z-index: 1001;
  cursor: pointer;
  border-radius: 1.5rem;
  padding: 0;
  float: right;
}
.bottom-sheet-close.svelte-94lvfq .icon:where(.svelte-94lvfq) {
  width: 48px;
  height: 48px;
}
@media (max-width: 600px) {
  .bottom-sheet-close.svelte-94lvfq .icon:where(.svelte-94lvfq) {
    width: 32px;
    height: 32px;
  }
}

.bottom-sheet-mobile-handle-wrapper.svelte-94lvfq {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: grab;
  z-index: 10;
}
.bottom-sheet-mobile-handle-wrapper.svelte-94lvfq:active {
  cursor: grabbing;
}
.bottom-sheet-mobile-handle-wrapper.svelte-94lvfq .bottom-sheet-mobile-handle:where(.svelte-94lvfq) {
  height: 4px;
  border-radius: 2px;
  width: 50%;
  background-color: var(--neutral-warm-200);
  pointer-events: none;
}
.bottom-sheet-mobile-handle-wrapper.svelte-94lvfq .bottom-sheet-mobile-handle.touchmove:where(.svelte-94lvfq) {
  background-color: var(--neutral-warm-300);
  transition: 150ms;
}

.bottom-sheet.svelte-94lvfq {
  width: 100%;
  max-width: 1044px;
  height: 85dvh;
  z-index: 1001;
  background-color: var(--white);
  border-top-left-radius: 2rem;
  border-top-right-radius: 2rem;
  display: flex;
  flex-direction: column;
  align-items: start;
  position: absolute;
  bottom: 0;
  transform-origin: bottom;
  padding: 0;
  overflow: hidden;
  transition: height 25ms ease, top 1ms ease;
  pointer-events: auto;
}
@media (max-width: 600px) {
  .bottom-sheet.svelte-94lvfq {
    width: 100%;
    max-height: unset;
    gap: 1rem;
    border-top-left-radius: 1rem;
    border-top-right-radius: 1rem;
    position: absolute;
    bottom: 0;
  }
}

.bottom-sheet-content {
  flex: 1;
  overflow-y: auto;
  overflow-x: hidden;
  width: 100%;
}

.bottom-sheet-actions.svelte-94lvfq {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1rem;
  background: var(--white);
  border-top: 1px solid var(--neutral-warm-200);
  display: flex;
  justify-content: center;
  gap: 1rem;
}
.bottom-sheet-actions.svelte-94lvfq .button:where(.svelte-94lvfq) {
  flex: 1;
  max-width: 400px;
}.menu-wrapper.svelte-vtzw86 {
  display: flex;
  gap: 1.5rem;
  padding-right: 0.5rem;
  z-index: 103;
}

.mobile-topbar.svelte-vtzw86 {
  position: fixed;
  top: 0;
  left: 0;
  width: 100dvw;
  z-index: 101;
  background: white;
  padding-top: max(0px, env(safe-area-inset-top));
  transform: translateY(0);
  border-bottom: 1px var(--neutral-warm-100) solid;
  transition: transform 0.24s ease, box-shadow 0.18s ease, backdrop-filter 0.18s ease, background 0.18s ease;
  will-change: transform;
}
.mobile-topbar.is-hidden.svelte-vtzw86 {
  transform: translateY(calc(-100% - 8px));
}

/* (unused) .register-text {
  margin-top: 1rem;
  line-height: 1.3;
}*/

.logout-button.svelte-vtzw86 {
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  text-align: left;
}

.bar-inner.svelte-vtzw86 {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
  padding: 0.75rem 1rem;
  min-height: 3.25rem;
}

.logo-link.svelte-vtzw86 {
  display: inline-flex;
  align-items: center;
}

.logo.svelte-vtzw86 {
  height: 1.5rem;
  background-size: cover;
}
.logo.svelte-vtzw86 img:where(.svelte-vtzw86) {
  display: block;
  height: 100%;
}
.logo.svelte-vtzw86 .logo-image:where(.svelte-vtzw86) {
  max-width: 100%;
  max-height: 100%;
}

.menu-trigger.svelte-vtzw86 {
  appearance: none;
  border: 0;
  background: transparent;
  font-size: 1.5rem;
  line-height: 1;
  padding: 0.25rem 0.5rem;
  border-radius: 0.75rem;
  cursor: pointer;
}
.menu-trigger.svelte-vtzw86:focus-visible {
  outline: 2px solid var(--black);
  outline-offset: 2px;
}

.modal-wrap.svelte-vtzw86 {
  position: relative;
  z-index: 1099;
}

.navigation-modal.svelte-vtzw86 {
  position: fixed;
  top: 105lvh;
  left: 0;
  width: 100dvw;
  height: 100lvh;
  background-color: var(--white);
  z-index: 1010;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 1rem 1rem 0;
  opacity: 0;
  pointer-events: none;
  transition: top 0.25s ease, opacity 0.25s ease;
}

.navigation-modal.visible.svelte-vtzw86 {
  top: 0;
  opacity: 1;
  pointer-events: auto;
}

.login-modal.svelte-vtzw86 {
  position: fixed;
  inset: 0;
  background-color: var(--white);
  z-index: 1011;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  padding: 1rem 1rem 0;
  transition: top 0.25s ease, opacity 0.25s ease;
}

.spacer.svelte-vtzw86 {
  height: 25vh;
}

/* (unused) .register-text {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}*/

.login-modal-content.svelte-vtzw86 {
  width: 100%;
  padding-bottom: 1rem;
}

.navigation-content.svelte-vtzw86 {
  height: 100dvh;
  padding-bottom: 1rem;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.nav-link.svelte-vtzw86 {
  font-size: 2rem;
  padding: 0;
  color: var(--black);
  font-weight: 700;
  text-decoration: none;
}

.sub-nav-link.svelte-vtzw86 {
  font-size: 1.5rem;
  margin: 0.5rem 0;
  color: var(--black);
  font-weight: 500;
  text-decoration: none;
}

.legal-nav-link.svelte-vtzw86 {
  font-size: 1rem;
  margin: 0.25rem 0;
  color: var(--black);
  font-weight: 500;
  opacity: 0.5;
  text-decoration: none;
}

.logo-large.svelte-vtzw86 {
  width: 6rem;
  height: 6rem;
  background-size: cover;
}
.logo-large.svelte-vtzw86 img:where(.svelte-vtzw86) {
  display: block;
  width: 100%;
  height: 100%;
}

.nav-layer.svelte-vtzw86 {
  opacity: 0;
  transform: translateY(8px);
  animation: svelte-vtzw86-navLayerIn 350ms ease forwards;
  will-change: opacity, transform;
}

@keyframes svelte-vtzw86-navLayerIn {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.transition-video.svelte-vtzw86 {
  position: fixed;
  top: -2rem;
  left: 0;
  /* width: 100%; */
  z-index: 102;
  height: 201%;
  opacity: 1;
  transition: top, opacity 0.5s ease-out;
  border-bottom: 2px solid var(--neutral-warm-100);
  pointer-events: none;
}

.video-backdrop.svelte-vtzw86 {
  position: fixed;
  top: -2rem;
  left: 0;
  width: 100dvw;
  background: var(--neutral-warm-50);
  z-index: 101;
  height: 201%;
  transition: top, opacity 1s;
  pointer-events: none;
}

.fade-out.svelte-vtzw86 {
  opacity: 0;
  pointer-events: none;
}

.icon-back.svelte-vtzw86 {
  transform: scaleX(-1);
}nav.svelte-47nzmy {
  position: relative;
}

.nav-inner-wrapper.svelte-47nzmy {
  width: 100%;
}

.nav-link.svelte-47nzmy {
  margin: 0 1rem;
  color: var(--black);
  opacity: 0.7;
  text-decoration: none;
  font-weight: 500;
  font-size: 1.125rem;
  transition: opacity 0.12s ease-in-out;
}
.nav-link.svelte-47nzmy:hover {
  opacity: 1;
}

.logo.svelte-47nzmy {
  height: 3rem;
  width: 10rem;
  background-size: cover;
  display: flex;
  align-items: center;
  justify-content: start;
  flex-direction: row;
}
@media (max-width: 1150px) {
  .logo.svelte-47nzmy {
    width: 2rem;
    height: 2rem;
  }
}
.logo.svelte-47nzmy .logo-image:where(.svelte-47nzmy) {
  max-width: 100%;
  max-height: 100%;
}

.more-offer-overlay.svelte-47nzmy {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem 1rem 2rem 1rem;
  background: white;
  border-top: 1px solid var(--neutral-warm-100);
  color: var(--black);
  position: absolute;
  top: calc(100% - 1px);
  left: 0;
  z-index: 999;
  will-change: transform, opacity;
}

.account-dropdown.svelte-47nzmy {
  position: relative;
}

.user-info.svelte-47nzmy {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  user-select: none;
  -webkit-user-select: none;
  cursor: pointer;
}

.dropdown-menu.svelte-47nzmy {
  position: absolute;
  top: 100%;
  right: 0;
  background: white;
  border: 1px solid var(--neutral-warm-300);
  border-radius: 1.5rem;
  z-index: 1000;
  min-width: 150px;
  transition: all 0.2s ease;
  padding: 1rem;
  width: 28rem;
}

.logout-button.svelte-47nzmy {
  padding: 0;
}

.login-container.svelte-47nzmy {
  width: 100%;
}

.navbar.svelte-47nzmy {
  border-bottom: 1px solid var(--neutral-warm-100);
  background: transparent;
}

.transition-video.svelte-47nzmy {
  height: 160%;
  position: absolute;
  top: -47%;
  left: -3.5rem;
  z-index: 1001;
  opacity: 1;
  transition: opacity 0.5s ease-out;
  pointer-events: none;
}

.animation-container.svelte-47nzmy {
  height: 100%;
  width: 100%;
  position: absolute;
  z-index: 1000;
  inset: 0;
  opacity: 1;
  transition: opacity 0.75s ease-out;
  pointer-events: none;
}

.animation-container-outer.svelte-47nzmy {
  height: 100%;
  width: 100%;
  position: absolute;
  z-index: 999;
  inset: 0;
  opacity: 1;
  transition: opacity 0.75s ease-out;
  overflow: hidden;
  pointer-events: none;
}

.video-backdrop.svelte-47nzmy {
  height: 100%;
  width: 100%;
  position: absolute;
  z-index: -1;
  inset: 0;
  background: var(--neutral-warm-50);
  opacity: 1;
  transition: opacity 0.75s ease-out;
  overflow: hidden;
}

.fade-out.svelte-47nzmy {
  opacity: 0;
  pointer-events: none;
}

@media (max-width: 1150px) {
  .nav-inner-wrapper.svelte-47nzmy {
    max-width: unset;
  }
  .transition-video.svelte-47nzmy {
    height: 160%;
    position: absolute;
    top: -47%;
    left: 0;
    z-index: 100001;
    opacity: 1;
    transition: opacity 0.5s ease-out;
  }
}@media (max-width: 850px) {
  .show-desktop-nav.svelte-fa6lvu {
    display: none;
  }
  .show-mobile-nav.svelte-fa6lvu {
    display: block;
  }
}
@media (min-width: 851px) {
  .show-desktop-nav.svelte-fa6lvu {
    display: block;
  }
  .show-mobile-nav.svelte-fa6lvu {
    display: none;
  }
}.mobile-footer.svelte-x4l7x8 {
  width: 100%;
  padding-bottom: 6rem;
}

.accordion-header.svelte-x4l7x8 {
  width: 100%;
  text-align: left;
  font-weight: bold;
  padding: 1rem;
  background-color: var(--light-gray);
  border: none;
  cursor: pointer;
}

.accordion-content.svelte-x4l7x8 {
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  padding: 0 1rem;
  transition: max-height 0.4s ease, opacity 0.3s ease, padding 0.3s ease;
}

.accordion-content.open.svelte-x4l7x8 {
  max-height: 500px;
  opacity: 1;
}

.accordion-content.svelte-x4l7x8 a:where(.svelte-x4l7x8) {
  display: block;
  margin: 0.5rem 0;
  color: var(--black);
  text-decoration: none;
}

/* (unused) .accordion-content img {
  width: 32px;
  height: 32px;
  margin: 0.25rem;
}*/

.social-links.svelte-x4l7x8 a:where(.svelte-x4l7x8) {
  margin-right: 1rem;
}
    .footer-links.svelte-1nyvf4l{
        a:where(.svelte-1nyvf4l){
            color: var(--black);
            text-decoration: none;
            font-weight: 300;
            transition: 0.1s ease-in-out;
            margin: 0.25rem 0;

            &:hover {
                color: var(--primary-sky);
            }
        }
    }

    .icon.svelte-1nyvf4l{
        padding: 0 1rem 1rem 0;
    }

    .seo-links.svelte-1per2h7 {
        position: absolute;
        left: -9999px;
        width: 1px;
        height: 1px;
        overflow: hidden;
        clip: rect(0, 0, 0, 0);
        white-space: nowrap;
    }

    .seo-links.svelte-1per2h7 h3:where(.svelte-1per2h7) {
        margin-bottom: 1rem;
        font-size: 1.2rem;
    }

    .seo-links.svelte-1per2h7 ul:where(.svelte-1per2h7) {
        list-style: none;
        padding: 0;
        margin: 0;
    }

    .seo-links.svelte-1per2h7 li:where(.svelte-1per2h7) {
        margin-bottom: 0.5rem;
    }

    .seo-links.svelte-1per2h7 a:where(.svelte-1per2h7) {
        color: inherit;
        text-decoration: none;
    }
.dialog-shadow.svelte-1fe6hj7 {
  position: fixed;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.52);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  z-index: 1000;
  display: flex;
  justify-content: center;
  align-items: center;
}

.dialog.svelte-1fe6hj7 {
  background-color: white;
  padding: 1.5rem;
  border-radius: 1rem;
  min-width: 500px;
  min-height: 200px;
  position: relative;
  z-index: 1001;
  display: flex;
  flex-direction: column;
}
@media (width <= 768px) {
  .dialog.svelte-1fe6hj7 {
    min-width: 80%;
    width: 80%;
  }
}

.dialog-actions.svelte-1fe6hj7 {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.x-mark.svelte-1fe6hj7 {
  position: absolute;
  top: 1rem;
  right: 1rem;
  padding: 0;
  font-size: 1.5rem;
  cursor: pointer;
  z-index: 1002;
}
    .page-root.svelte-1ihj7pb {
        min-height: 0;
        overflow: visible;
        contain: none;
        flex: 1; display: flex; flex-direction: column; width: 100%; max-width: 100dvw
    }
