:root {
  color-scheme: light;
  forced-color-adjust: none;

  --color-bg: #eaeaea;
  --color-card: #f5f5f5;
  --color-text: #212121;
  --color-error-msg: #212121;

  --color-border: #212121;
  --color-border-soft: #ccc;

  --color-accent: #eaf205;
  --color-accent-contrast: #212121;

  --color-success: #28a745;
  --color-success-soft: #6db784;

  --color-error: #eaf205;

  --color-switch: #f5f5f5;
  --color-bg-switch-on: #4cd964;
  --color-bg-switch: #ccc;

  --color-ball1: #eaf205;

  --color-beta-bg: #eaf205;
  --color-beta-border: #212121;
  --color-beta-text: #212121;

  --btn-bg: #212121;
  --btn-bg-hover: #eaf205;
  --btn-text: #f5f5f5;
  --btn-text-hover: #212121;

  --btn-close-bg: #f5f5f5;
  --btn-close-border: #212121;
  --btn-close-text: #212121;

  --checkbox-checked-bg: #eaf205;
  --checkbox-checked-border: #212121;
  --checkbox-checked-text: #212121;

  --shadow-card1: rgba(50, 50, 93, 0.25);
  --shadow-card2: rgba(0, 0, 0, 0.3);

  --shadow-strong: rgba(0, 0, 0, 0.3);
  --shadow-soft: rgba(50, 50, 93, 0.25);

  --face-color: currentColor;
  --eye-color: #000000;
}



html,
body {
  box-sizing: border-box;
  border: 4px solid var(--color-accent);
  background-color: var(--color-bg);
  width: 100%;
  height: 100%;
  margin: 0;
  font-family: "Epilogue", sans-serif;
}

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

p,
h1,
h2,
h3,
h4,
h5,
h6,
ul,
a {
  margin: 0;
  padding: 0;
  color: var(--color-text);
}

.abadi-condensed-extra-bold {
  font-family: "abadi-condensed", sans-serif;
  font-weight: 800;
  font-style: normal;
}

p,
li,
a,
address {
  font-size: 1rem;
  font-weight: 300;
  line-height: 1.15;
}

h2 {
  font-size: 1rem;
  font-weight: 300;
}

address {
  font-style: normal;
  color: var(--color-text);
}

ul {
  list-style: none;
}

a {
  text-decoration: none;
  transition: all 0.3s ease;
}

a:hover {
  text-decoration: underline;
  text-decoration-style: wavy;
  -moz-text-decoration-style: wavy;
  -webkit-text-decoration-style: wavy;
}

/* GRID-LAYOUT FÜR HTML STRUKTUR */
.l-grid {
  position: relative;
  padding: 16px;
  display: grid;
  grid-template-areas:
    "header"
    "main"
    "footer";
  grid-template-columns: 1fr;
  grid-template-rows: auto 1fr auto;
}

.l-grid__header {
  grid-area: header;
}

.l-grid__main {
  position: relative;
  grid-area: main;
  display: flex;
  justify-content: center;
  align-items: center;
}

.l-grid__footer {
  grid-area: footer;
}

.c-main__index,
.c-main__impressum,
.c-main__datenschutz,
.c-main__404,
.c-main__403 {
  position: relative;
  width: 85vw;
  height: calc(85vw * 1.4);
  padding: 20px;
}

.c-rotated-wrapper {
  position: absolute;
  inset: 0;
  padding: 20px;
  border-radius: inherit;
  transform: rotate(1deg);
  overflow: scroll;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border: 1px solid var(--color-border-soft);
  border-radius: 8vw;
  background-color: var(--color-card);
  box-shadow: var(--shadow-card1) 0px 50px 100px -20px,
    var(--shadow-card2) 0px 30px 60px -30px;
}

.c-main__index {
  overflow: unset;
}

.c-main__impressum {
  transform: rotate(-2deg);
}

.c-main__datenschutz {
  transform: rotate(1deg);
}

.c-rotated-wrapper--404,
.c-rotated-wrapper--403 {
  background-color: var(--color-error);
  transform: rotate(-2deg);
  animation: shake 1s cubic-bezier(0.36, 0.07, 0.19, 0.97) both;
}

.c-main__index h1 {
  font-size: 11vw;
}

.c-response {
  position: absolute;
  inset: 0;
  padding: 20px;
  border-radius: 8vw;
  background-color: var(--color-success);
  border: 1px solid var(--color-border-soft);

  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;

  transform: rotate(1deg);
  z-index: 21;
}

@media (min-width: 480px) {
  .c-main__index,
  .c-main__impressum,
  .c-main__datenschutz,
  .c-main__404,
  .c-main__403 {
    width: 360px;
    height: calc(360px * 1.4);
    border-radius: 22px;
  }

  .c-response {
    border-radius: 22px;
  }

  .c-rotated-wrapper {
    border-radius: 22px;
  }

  .c-main__index h1 {
    font-size: 3.93vw;
  }
}

.c-response--error {
  background-color: var(--color-error);
}

.c-response--sent {
  background-color: var(--color-success);
}

.is-open__flex {
  display: flex !important;
}

.is-open__block {
  display: block !important;
}

.arrow {
  --color: #212121;
  --duration: 0.3s;
  --ripple-duration: 0.4s;
  width: 32px;
  height: 32px;
  padding: 0;
  margin: 0;
  display: block;
  outline: none;
  border: none;
  background: none;
  cursor: default;
  -webkit-appearence: none;
  -webkit-tap-highlight-color: transparent;
  transform: rotate(var(--rotate));
  position: sticky;
  bottom: 0;
  right: 0;
  margin-left: auto;
}

.arrow.top {
  --rotate: 90deg;
  --direction: -1;
}

.arrow.right {
  --rotate: 180deg;
  --direction: -1;
}

.arrow.bottom {
  --rotate: 270deg;
  --direction: -1;
}

.arrow:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  transform: scale(0.25);
  opacity: 0;
  border-radius: 50%;
  background: var(--color-text);
}

.arrow div,
.arrow div:before,
.arrow div:after {
  width: var(--w, 24px);
  height: 2px;
  border-radius: 1px;
  background: var(--color-text);
  position: var(--p, relative);
}

.arrow div {
  margin: 15px 4px;
}

.arrow div:before,
.arrow div:after {
  content: "";
  --w: 13px;
  --p: absolute;
  --r: 135deg;
  --m: 1;
  transform-origin: 1px 1px;
  top: var(--t, -8px);
  left: 8px;
  transform: rotate(calc(var(--r) * var(--m)));
}

.arrow div:after {
  --t: 8px;
  --m: -1;
}

.c-main__index h2 {
  line-height: 1.15;
  font-weight: 900;
  font-size: 1.1rem;
}

.c-main__impressum h2,
.c-main__datenschutz h2,
.c-main__404 h2,
.c-main__403 h2 {
  font-weight: 900;
  font-size: 1.1rem;
}

.c-main__datenschutz h3 {
  font-weight: 900;
  font-size: 1rem;
}

.c-headline {
  width: 100%;
}

.c-beta {
  position: absolute;
  top: -15px;
  right: -3px;
  background-color: var(--color-beta-bg);
  border-radius: 100px;
  border: 2px solid var(--color-beta-border);
  cursor: default;
}

.c-beta p {
  padding: 5px 6px 2px 6px;
  color: var(--color-beta-text);
  font-size: 1rem;
  font-weight: 900;
}

.c-email {
  position: relative;
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.c-email p,
.c-email a {
  font-size: 0.83rem;
}

.c-header-logo {
  position: relative;
  margin-right: 14px;
  width: 40px;
  height: 40px;
}

/* LISTEN */
.c-list {
  position: relative;
  height: 100%;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
}

.c-list--footer,
.c-list--header {
  flex-direction: row;
  font-size: 0.9rem;
}

.c-list__item {
  position: relative;
  cursor: pointer;
}

.c-list__item--logo {
  display: flex;
  align-items: center;
}

/* FORMULAR */
.c-form,
.c-fieldset {
  position: relative;
  width: 100%;
  margin-top: -0.5rem;
}

@media (min-width: 480px) {
  .c-form {
    margin-top: -1rem;
  }
}

.c-fieldset {
  padding: 0;
  margin: 0;
  border: none;
}

.c-form__datenschutz a {
  font-size: 0.83rem !important;
}

.c-form__label {
  position: relative;
}

.c-form__label--email,
.c-form__label--eingabezeitpunkt,
.c-form__label--firma {
  position: absolute;
  left: -9999px;
}

.c-form__label--datenschutz {
  display: block;
  font-weight: normal;
}

.c-form__label--datenschutz a {
  line-height: normal;
}

.c-form__input {
  position: relative;
  padding: 15px 20px 15px 20px;
  margin-left: -2px;
  margin-right: -2px;
  outline: none;
  z-index: 1;
  background: none;
  width: 100%;
  border: 2px solid var(--color-text);
  border-radius: 100px;
  color: var(--color-text);
  background-color: var(--color-card);
  transition: all 0.3 ease;
  font-size: 1em;
}

.c-form__input--eingabezeitpunkt,
.c-form__input--firma {
  position: absolute;
  left: -9999px;
}

.c-form__input--datenschutz {
  padding: 0;
  margin: 0;
}

.c-form__input--submit {
  position: absolute;
  top: 6.25px;
  right: 10.25px;
  width: 40px;
  height: 40px;
  border-radius: 100%;
  border: none;
  padding: 0;
  background-color: var(--btn-bg);
  color: var(--btn-text);
  font-size: 2.5rem;
  transition: all 0.2s ease-in-out;
  cursor: pointer;
}

.c-form__input--submit:hover {
  background-color: var(--btn-bg-hover);
  color: var(--btn-text-hover);
}

.c-form__input::placeholder {
  font-family: "Epilogue", sans-serif;
  font-size: 0.9em;
}

.c-form__message {
  position: absolute;
  width: auto;
  height: 75px;
  bottom: 12px;
  left: 12px;
  right: 12px;
  background-color: var(--color-error);
  border-radius: 20px;
  z-index: 22;
  display: none;
  justify-content: center;
  align-items: center;
  transform: rotate(1deg);
}

.c-form__message h3 {
  font-size: 1rem;
  color: var(--color-error-msg);
}

.c-close {
  position: absolute;
  top: 8px;
  right: 8px;
  width: 20px;
  height: 20px;

  border: 2px solid var(--btn-close-border);
  color: var(--btn-close-text);
  background-color: var(--btn-close-bg);
  border-radius: 50%;
  z-index: 21;
  cursor: pointer;
  font-size: 0.8rem;
  font-weight: bold;
  transition: transform 0.2s ease-in-out;
  display: flex;
  justify-content: center;
  align-items: center;
}

.c-close:hover {
  transform: scale(1.1);
}

.c-close--ok {
  top: unset;
  bottom: 8px;
  width: 30px;
  height: 30px;
}

/* ANIMATION DER FEHLERSEITE */
.c-error {
  position: relative;
  height: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-direction: column;
}

.c-error__text {
  position: relative;
}

.c-error__animation {
  position: relative;
  left: -2em;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: auto;
  box-sizing: content-box;
  font-size: 0.8rem;
}

.c-error__animation .gesicht,
.arm {
  border: 0.6em solid transparent;
  border-right: 0.6em solid;
}

.c-error__animation .gesicht {
  border-left: 0.6em solid;
}

.c-error__animation .auge,
.mund,
.arm {
  position: absolute;
}

.c-error__animation .auge,
.arm {
  border-radius: 50%;
}

.c-error__animation .gesicht {
  position: relative;
  border-radius: 30% / 60%;
  width: 13em;
  height: 8em;
}

.c-error__animation .gesicht .auge {
  position: absolute;
  border: 0.6em solid;
  width: 1em;
  height: 1em;
  top: 15%;
  left: 45%;
  animation: auge__rechts 3s linear infinite;
}

.c-error__animation .gesicht .auge + .auge {
  left: 80%;
  animation: auge__links 2.5s linear infinite;
}

.c-error__animation .gesicht .mund {
  position: absolute;
  box-shadow: 0 0 0 0.4em currentColor inset;
  width: 1.6em;
  height: 1.6em;
  top: 48%;
  left: 64%;
  animation: mund 2s cubic-bezier(0.17, 0.81, 0.29, 0.94);
}

.c-error__animation .gesicht .arm {
  position: absolute;
  width: 3.2em;
  height: 4.5em;
  top: -7%;
  left: -15%;
  transform-origin: 80% 80%;
  transform: rotate(45deg);
  animation: arme 1.9s cubic-bezier(0, 1, 0, 1);
}

.c-error__animation .gesicht .arm + .arm {
  left: 90%;
  animation: arme 2s cubic-bezier(0, 1, 0, 1);
}

@keyframes auge__links {
  from,
  30%,
  38%,
  70% {
    background: currentColor;
    border: 0;
    transform: translate(0.4em, 0.4em) scale(1, 1);
  }

  34% {
    background: currentColor;
    border: 0;
    transform: translate(0.4em, 0.4em) scale(1, 0);
  }

  74.9% {
    background: currentColor;
    border: 0;
    transform: translate(0.4em, 0.4em) scale(1.5, 0);
  }

  75%,
  to {
    background: transparent;
    border: 0.4em solid;
    transform: translate(0, 0);
  }
}

@keyframes auge__rechts {
  from,
  30%,
  38%,
  70% {
    background: currentColor;
    border: 0;
    transform: translate(0.4em, 0.4em) scale(1, 1);
  }

  34% {
    background: currentColor;
    border: 0;
    transform: translate(0.4em, 0.4em) scale(1, 0);
  }

  74.9% {
    background: currentColor;
    border: 0;
    transform: translate(0.4em, 0.4em) scale(1.5, 0);
  }

  75%,
  to {
    background: transparent;
    border: 0.5em solid;
    transform: translate(0, 0);
  }
}

@keyframes mund {
  from,
  75% {
    height: 0.2em;
    transform: translateY(0.8em);
  }

  87.5%,
  to {
    height: 1.6em;
    transform: translateY(0);
  }
}

@keyframes arme {
  from,
  75% {
    transform: rotate(155deg);
  }

  to {
    transform: rotate(45deg);
  }
}

.c-ok__animation {
  position: relative;
  left: -2em;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: auto;
  box-sizing: content-box;
  font-size: 0.8rem;
  color: var(--color-text);
}

/* Grundform: identisch wie bei Fehler */
.c-ok__animation .gesicht,
.c-ok__animation .arm {
  border: 0.6em solid transparent;
  border-right: 0.6em solid;
}

.c-ok__animation .gesicht {
  border-left: 0.6em solid;
}

.c-ok__animation .auge,
.c-ok__animation .mund,
.c-ok__animation .arm {
  position: absolute;
}

.c-ok__animation .auge,
.c-ok__animation .arm {
  border-radius: 50%;
}

.c-ok__animation .gesicht {
  position: relative;
  border-radius: 30% / 60%;
  width: 13em;
  height: 8em;

  animation: none;
}

/* Augen – leichtes Blinzeln */
.c-ok__animation .gesicht .auge {
  border: 0.5em solid;
  width: 1em;
  height: 1em;
  top: 20%;
  left: 40%;
  animation: auge-blink 3s ease-in-out infinite;
}

.c-ok__animation .gesicht .auge + .auge {
  left: 70%;
  animation-duration: 3.4s;
}

/* Smile */
.c-ok__animation .gesicht .mund {
  width: 1.6em;
  height: 1em;
  top: 55%;
  left: 55%;
  border: 0.5em solid currentColor;
  border-radius: 0 0 50% 50%;

  /* Sanftes Reinpoppen */
  animation: smile-pop 1.2s cubic-bezier(0.26, 0.44, 0.45, 1.21);
}

/* Arme – ruhige, kleine Bewegung */
.c-ok__animation .gesicht .arm {
  width: 3em;
  height: 4em;
  top: -8%;
  left: -12%;
  transform-origin: 70% 80%;
  transform: rotate(25deg);
  animation: arm-wave 1s ease-in-out infinite;
}

.c-ok__animation .gesicht .arm + .arm {
  left: 92%;
  transform: rotate(15deg);
  animation-delay: 0.2s;
}

/* --- Keyframes --- */

@keyframes auge-blink {
  0%,
  94% {
    transform: scaleY(1);
  }
  96%,
  98% {
    transform: scaleY(0.2);
  }
  100% {
    transform: scaleY(1);
  }
}

@keyframes smile-pop {
  0% {
    transform: scale(1) translateY(0%);
    opacity: 1;
  }
  100% {
    transform: scale(1) translateY(0);
    opacity: 1;
  }
}

@keyframes arm-wave {
  from,
  75% {
    transform: rotate(15deg);
  }

  to {
    transform: rotate(45deg);
  }
}

.c-sending__animation {
  position: relative;
  left: -2em;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  box-sizing: content-box;
  font-size: 0.8rem;
}

/* Grundstruktur */
.c-sending__animation .gesicht,
.c-sending__animation .arm {
  border: 0.6em solid transparent;
  border-right: 0.6em solid;
}

.c-sending__animation .gesicht {
  border-left: 0.6em solid;
}

.c-sending__animation .auge,
.c-sending__animation .mund,
.c-sending__animation .arm {
  position: absolute;
}

.c-sending__animation .auge,
.c-sending__animation .arm {
  border-radius: 50%;
}

.c-sending__animation .gesicht {
  position: relative;
  border-radius: 30% / 60%;
  width: 13em;
  height: 8em;
}

/* Augen – horizontales “Scannen” */
.c-sending__animation .gesicht .auge {
  border: 0.5em solid;
  background-color: var(--eye-color);
  width: 0.3em;
  height: 0.3em;
  top: 20%;
  left: 40%;
  animation: scan-eye 1.5s ease-in-out infinite;
}

.c-sending__animation .gesicht .auge + .auge {
  left: 70%;
  animation-delay: 0.1s;
}

/* Mund – neutraler Strich */
.c-sending__animation .gesicht .mund {
  width: 1.6em;
  height: 0.5em;
  top: 52%;
  left: 58%;
  border-bottom: 0.6em solid currentColor;
  /* border-radius: 2em; */
  opacity: 0.9;
}

/* Arme – dezenter Puls (als ob es “arbeitet”) */
.c-sending__animation .gesicht .arm {
  width: 3em;
  height: 4em;
  top: -8%;
  left: -12%;
  transform-origin: 70% 80%;
  transform: rotate(5deg);
  animation: arm-pulse 1s ease-in-out infinite;
}

.c-sending__animation .gesicht .arm + .arm {
  left: 92%;
  transform: rotate(15deg);
  animation-delay: 0.4s;
}

/* --- Keyframes --- */

@keyframes scan-eye {
  0% {
    transform: translateX(0);
  }
  50% {
    transform: translateX(0.5em);
  }
  100% {
    transform: translateX(0);
  }
}

@keyframes arm-pulse {
  0%,
  100% {
    transform: rotate(5deg) scale(1);
  }
  50% {
    transform: rotate(18deg) scale(1);
  }
}

/* HELPERS */
.is-centered {
  text-align: center;
}

.mt-8px {
  margin-top: 8px;
}

.mt-18px {
  margin-top: 18px;
}

.mt-24px {
  margin-top: 24px;
}

.mb-48px {
  margin-bottom: 48px;
}

.mb-32px {
  margin-bottom: 32px;
}

.mb-24px {
  margin-bottom: 24px;
}

.mb-16px {
  margin-bottom: 16px;
}

.mb-8px {
  margin-bottom: 8px;
}

.has-hyphonation {
  hyphens: auto;
}

.nowrap {
  white-space: nowrap;
}

/* hüpfender Ball */

.ball {
  width: 33px;
  height: 33px;
  border-radius: 50%;
  background-image: radial-gradient(
    at 60% 30%,
    rgba(255, 255, 255, 0.7) 0%,
    rgba(255, 255, 255, 0) 40%,
    rgba(0, 0, 0, 0.2) 80%
  );
  float: left;
  position: relative;
  z-index: 10;
}

.bnr1 {
  background-color: var(--color-ball1);
}

.ballwrapper {
  position: absolute;
  top: -32px;
  left: 2.1rem;
  z-index: 25;
}

.ballwrapper .ball {
  animation: bounce 1s linear infinite;
}

@media (min-width: 480px) {
  .ball {
    width: 40px;
    height: 40px;
  }

  .ballwrapper {
    top: -39px;
  }
}

@keyframes bounce {
  0%,
  100% {
    transform: translateY(0%) scaleX(1.05);
    animation-timing-function: cubic-bezier(0.05, 0.6, 0.45, 0.95);
  }
  50% {
    transform: translateY(-300%) scaleX(0.95);
    animation-timing-function: cubic-bezier(0.5, 0, 0.9, 0.2);
  }
}

@keyframes shake {
  10%,
  90% {
    transform: rotate(-2deg) translate3d(-1px, 0, 0);
  }

  20%,
  80% {
    transform: rotate(-2deg) translate3d(2px, 0, 0);
  }

  30%,
  50%,
  70% {
    transform: rotate(-2deg) translate3d(-4px, 0, 0);
  }

  40%,
  60% {
    transform: rotate(-2deg) translate3d(4px, 0, 0);
  }
}

.c-switch {
  display: none;
  position: absolute;
  top: 62px;
  right: 15px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 15px;
}

.switch {
  position: relative;
  display: inline-block;
  width: 49px;
  height: 25px;
  z-index: 29;
}

.switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

.slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: var(--color-bg-switch);
  border-radius: 34px;
  transition: 0.3s;
  outline: 2px solid var(--color-text);
}

.slider:before {
  position: absolute;
  content: "";
  height: 21px;
  width: 21px;
  left: 2px;
  bottom: 2px;
  background-color: var(--color-switch);
  border-radius: 50%;
  transition: 0.3s;
}

/* Zustand: eingeschaltet */
input:checked + .slider {
  /* background-color: #4cd964;  */
  background-color: var(--color-bg-switch-on); /* iOS-Grün */
}

input:checked + .slider:before {
  transform: translateX(24px);
}

/* CUSTOM CHECKBOX*/
.c-form__datenschutz {
  margin-top: 0.75rem;
  margin-left: 3px;
  display: grid;
  grid-template-columns: auto 1fr;
  grid-template-rows: auto;
  align-items: start;
  width: 100%;
  font-size: 0.83rem;
}

/* Klickbare Touchzone (44x44) */
.c-checkbox {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  cursor: pointer;
  position: relative;
  user-select: none;
  margin-left: -15px;
  margin-top: -15px;
}

/* Native input bleibt im DOM, ist für AT vorhanden, aber unsichtbar */
.c-checkbox__input {
  position: absolute;
  opacity: 0;
  width: 1px; /* klein, damit iOS native Darstellung nicht versucht zu skalieren */
  height: 1px;
  margin: 0;
  pointer-events: none;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.c-checkbox__label {
  color: var(--color-text);
}

/* Sichtbare Checkbox (24px) */
.c-checkbox__checkbox {
  width: 14px;
  height: 14px;
  border: 2px solid var(--color-text);
  border-radius: 4px;
  background: var(--color-card);
  box-sizing: border-box;
}

/* checked visual (JS setzt Zustand auf wrapper und input) */
.c-checkbox[aria-checked="true"] .c-checkbox__checkbox {
  /* background: #0066ff;
  border-color: #0066ff; */
  background: var(--checkbox-checked-bg);
  border-color: var(--checkbox-checked-border);
}
.c-checkbox[aria-checked="true"] .c-checkbox__checkbox::after {
  content: "";
  position: absolute;
  width: 4px;
  height: 8px;
  border: solid var(--checkbox-checked-text);
  border-width: 0 2px 2px 0;
  transform: translate(-50%, -50%) rotate(45deg);
  top: 47%;
  left: 50%;
}
