/*
  NUR form[data-formstepped-three]
*/

/* Hintergrundbild rechte Hälfte im page-body (Desktop) */
.page-body:has(form[data-formstepped-three]) {
  --bg-image-form: url('/fileadmin/_processed_/5/6/csm_jean-philippe-delberghe-75xPHEQBmvA-unsplash-_1__caac1e7dea.jpg');

  position: relative;
  background: #ffffff;
  overflow: hidden;
}

.page-body:has(form[data-formstepped-three])::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 50%;
  height: 100%;
  background: var(--bg-image-form) center center / cover no-repeat;
  z-index: 0;
}

@media (max-width: 1199px) {
  .page-body:has(form[data-formstepped-three])::before {
    display: none;
  }
}

form[data-formstepped-three] {
  position: relative;
  z-index: 1;

  --clr-white: #ffffff;
  --clr-muted-bg: #F3F3F5;
  --clr-muted-text: #6F6F6F;
  --clr-primary: #446600;
  --clr-primary-hover: #446652;
  --clr-primary-soft: #EFF3E7;
  --clr-ink: #0F1A3D;
  --clr-error: #b30000;
  --clr-error-border: #e74c3c;
  --clr-error-bg: #fff7f7;
}

/* ================= Basics ================= */
form[data-formstepped-three] .invalid-feedback {
  display: none !important;
  color: var(--clr-error);
  margin-top: 2px;
  font-size: .95em;
}

/* Formular-Wrapper */
form[data-formstepped-three] .form-content {
  display: flex;
  flex-wrap: nowrap;
  border: 0;
  position: relative;
  z-index: 2;
}

form[data-formstepped-three] .form-left {
  flex: 2;
  padding: 2em 4em 10em 0;
  background: var(--clr-white);
  position: relative;
  z-index: 2;
}

form[data-formstepped-three] .form-right {
  position: relative;
  z-index: 2;
  flex: 1;
  background: none;
  border: 0;

  /* Layout-Variablen */
  --inset: 4em;
  --rail: 1.6rem;
  --gap: .5rem;
  --check-col: 1.25rem;
  --edge: calc(var(--check-col) + var(--gap));
  --meta-size: .8em;
  --line-height: 1.5rem;

  /* Grid im rechten Bereich */
  display: grid;
  grid-template-columns: var(--rail) 1fr;
  column-gap: var(--gap);
  padding: 10em var(--inset) 10em var(--inset);

  align-content: start;
  align-items: start;
  grid-auto-rows: min-content;
  padding-top: 2em;
}

form[data-formstepped-three] .form-right>* {
  grid-column: 2;
}

form[data-formstepped-three] .form-right .form-navigation {
  margin-top: var(--line-height);
  margin-bottom: var(--line-height);
}

form[data-formstepped-three] .form-navigation button {
  width: 100%;
}

/* ================= Stepper ================= */
form[data-formstepped-three] .stepper-mui {
  width: 100%;
  user-select: none;
}

/* 3-Step Layout */
form[data-formstepped-three] #custom-stepper[data-steps="3"] .stepper-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0;
  position: relative;
  padding-inline: calc((100% - 4 * 129px) / 8) !important;
}

form[data-formstepped-three] #custom-stepper[data-steps="3"] .stepper-dot {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--clr-muted-bg);
  color: var(--clr-muted-text);
  border: 1px solid transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.35em;
  box-sizing: border-box;
  position: relative;
  z-index: 2;
  transition: .2s;
  overflow: hidden;
}

form[data-formstepped-three] #custom-stepper[data-steps="3"] .stepper-dot.completed {
  background: var(--clr-primary-soft);
  border-color: var(--clr-primary);
  color: var(--clr-primary);
  transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

form[data-formstepped-three] #custom-stepper[data-steps="3"] .stepper-dot.completed:hover {
  background: var(--clr-primary-soft);
  border-color: var(--clr-primary-hover);
  color: var(--clr-primary-hover);
  cursor: pointer;
  transform: scale(1.1);
}

form[data-formstepped-three] #custom-stepper[data-steps="3"] .stepper-dot.completed i {
  color: var(--clr-primary);
}

form[data-formstepped-three] #custom-stepper[data-steps="3"] .stepper-dot.active {
  background: var(--clr-muted-bg);
  border-color: var(--clr-primary);
  color: var(--clr-ink);
  cursor: unset !important;
}

form[data-formstepped-three] #custom-stepper[data-steps="3"] .stepper-dot.active i {
  color: var(--clr-ink);
}

form[data-formstepped-three] #custom-stepper[data-steps="3"] .stepper-line {
  height: 1px;
  flex: 1 1 auto;
  background: var(--clr-muted-bg);
  margin: 0 !important;
  border-radius: 999px;
  z-index: 1;
  transition: background .2s;
}

form[data-formstepped-three] #custom-stepper[data-steps="3"] .stepper-line.completed {
  background: var(--clr-primary) !important;
}

form[data-formstepped-three] #custom-stepper[data-steps="3"] .stepper-line.active {
  background: linear-gradient(to right, var(--clr-primary) 0%, var(--clr-muted-bg) 60%, var(--clr-muted-bg) 100%);
}

/* ✅ Labels exakt mittig unter den 3 Punkten */
form[data-formstepped-three] #custom-stepper[data-steps="3"] .stepper-label-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  width: 100%;
  margin-top: 10px;
}

form[data-formstepped-three] #custom-stepper[data-steps="3"] .step-label {
  justify-self: center;
  text-align: center;
  font-size: .9rem;
  color: var(--clr-muted-text);
  font-weight: 500;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  transition: color 0.3s ease;
}

form[data-formstepped-three] #custom-stepper[data-steps="3"] .step-label.active {
  color: var(--clr-ink);
  font-weight: 400;
  cursor: default !important;
  pointer-events: none !important;
  margin-left: 5px;
}

form[data-formstepped-three] #custom-stepper[data-steps="3"] .step-label.completed {
  color: var(--clr-primary);
  font-weight: 400;
}

/* ================= Responsive ================= */
@media (max-width: 900px) {
  form[data-formstepped-three] .form-content {
    flex-direction: column;
  }

  form[data-formstepped-three] .form-left {
    padding: 20px;
  }

  form[data-formstepped-three] .form-right {
    --inset: 20px;
    padding: 20px;
    grid-template-columns: var(--rail) 1fr;
    align-content: start;
    align-items: start;
    grid-auto-rows: min-content;
  }

  /* Stepper vertikal unter 900px */
  form[data-formstepped-three] #custom-stepper[data-steps="3"] .stepper-row {
    flex-direction: column;
  }

  form[data-formstepped-three] #custom-stepper[data-steps="3"] .stepper-dot {
    margin-bottom: 20px;
  }

  form[data-formstepped-three] #custom-stepper[data-steps="3"] .stepper-line {
    width: 6px;
    height: 40px;
    margin: 0 auto !important;
  }

  form[data-formstepped-three] #custom-stepper[data-steps="3"] .stepper-label-row {
    display: none;
  }
}

/* ================= Form Controls ================= */
form[data-formstepped-three] .form-group {
  margin-top: .5em;
}

form[data-formstepped-three] fieldset {
  display: none;
  border: 0;
  padding: 0;
  margin: 0;
}

form[data-formstepped-three] fieldset.active {
  display: block;
}

form[data-formstepped-three] .form-control {
  border-radius: 8px;
  font-size: 1rem;
}

form[data-formstepped-three] .powermail_field {
  position: relative;
}

form[data-formstepped-three] .is-invalid {
  border: 2px solid var(--clr-error-border) !important;
  background: var(--clr-error-bg);
}

/* Schritt 1: Die beiden Selects nebeneinander (weil sie nicht in einer .row sind) */
form[data-formstepped-three] fieldset[data-step="1"]>.col-12.col-sm-12.col-md-6.col-lg-6.col-xl-6 {
  display: inline-block;
  width: calc(50% - 10px);
  vertical-align: top;
}

form[data-formstepped-three] fieldset[data-step="1"]>.col-12.col-sm-12.col-md-6.col-lg-6.col-xl-6+.col-12.col-sm-12.col-md-6.col-lg-6.col-xl-6 {
  margin-left: 20px;
}

@media (max-width: 767px) {
  form[data-formstepped-three] fieldset[data-step="1"]>.col-12.col-sm-12.col-md-6.col-lg-6.col-xl-6 {
    width: 100%;
    margin-left: 0 !important;
    display: block;
  }
}

/* ================= Check & Radio mit Effekten ================= */
form[data-formstepped-three] .checkbox,
form[data-formstepped-three] .radio {
  border: 1pt solid rgba(15, 26, 61, .2);
  border-radius: 5px;
  padding: 5px;
  margin: 0 0 7px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  box-sizing: border-box;
  position: relative;
  overflow: hidden;
  transition: background-color .3s ease, box-shadow .3s ease;
}

form[data-formstepped-three] .checkbox::before,
form[data-formstepped-three] .radio::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background-color: rgba(87, 129, 14, 0.1);
  transition: width 0.5s ease, height 0.5s ease;
  transform: translate(-50%, -50%);
  z-index: 0;
  border-radius: 50%;
}

form[data-formstepped-three] .checkbox:hover,
form[data-formstepped-three] .radio:hover {
  box-shadow: 0 4px 8px rgba(15, 26, 61, .2);
}

form[data-formstepped-three] .checkbox input[type="checkbox"],
form[data-formstepped-three] .radio input[type="radio"] {
  height: 1.5rem;
  width: 1.5rem;
  cursor: pointer;
  margin: 0;
  padding: 0;
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 1;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background-color: var(--clr-white);
  border: 1pt solid var(--clr-primary);
  transition: background 0.3s ease, border 0.3s ease;
}

form[data-formstepped-three] .checkbox input[type="checkbox"] {
  border-radius: 3px;
}

form[data-formstepped-three] .radio input[type="radio"] {
  border-radius: 50%;
}

form[data-formstepped-three] .checkbox input[type="checkbox"]:checked,
form[data-formstepped-three] .radio input[type="radio"]:checked {
  background-color: var(--clr-primary);
  border-color: var(--clr-primary);
}

form[data-formstepped-three] .checkbox input[type="checkbox"]:checked::after {
  content: '\2714';
  color: white;
  font-size: 1rem;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}

form[data-formstepped-three] .radio input[type="radio"]:checked::after {
  content: '';
  background-color: white;
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 50%;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}

form[data-formstepped-three] .checkbox label,
form[data-formstepped-three] .radio label {
  margin: 0;
  text-align: left;
  width: calc(100% - 36px);
  border-radius: inherit;
  padding: inherit;
  transition: color 0.3s;
}

/* ================= Icon Swap ================= */
form[data-formstepped-three] .icon-swap {
  display: inline-block;
  transition: transform .3s cubic-bezier(.4, 2, .6, 1), opacity .2s;
}

form[data-formstepped-three] .icon-swap-leave {
  opacity: 0;
  transform: scale(.4) rotate(-10deg);
  pointer-events: none;
}

form[data-formstepped-three] .icon-swap-enter {
  opacity: 0;
  transform: scale(1.3) rotate(10deg);
  pointer-events: none;
  animation: icon-pop-in .3s cubic-bezier(.4, 2, .6, 1) forwards;
}

@keyframes icon-pop-in {
  0% {
    opacity: 0;
    transform: scale(1.3) rotate(10deg);
  }

  90% {
    opacity: 1;
    transform: scale(1.1);
  }

  100% {
    opacity: 1;
    transform: scale(1) rotate(0);
  }
}

/* ================= Pricing / Utilities ================= */
form[data-formstepped-three] .r-pricing {
  font-size: 3.2rem;
  font-weight: 500;
  line-height: .75;
  color: var(--clr-ink);
  font-variant-numeric: tabular-nums;
  letter-spacing: -.01em;
}

form[data-formstepped-three] .d-flex {
  display: flex;
}

form[data-formstepped-three] .align-items-start {
  align-items: flex-start;
}

form[data-formstepped-three] .ps-1 {
  padding-left: .15rem;
}

/* HR sichtbar und mit einheitlichem Abstand */
form[data-formstepped-three] .form-right hr {
  grid-column: 2;
  border: 0;
  border-top: 2px solid rgba(15, 26, 61, .22) !important;
  margin-top: var(--line-height);
  margin-bottom: var(--line-height);
}

/* ================= Bullet-Liste ================= */
form[data-formstepped-three] .form-right ul.hook {
  list-style: none;
  margin: 0;
  padding: 0 !important;
}

form[data-formstepped-three] .form-right .hook li {
  position: relative;
  margin: 0;
  padding-left: var(--edge);
  font-size: var(--meta-size);
  line-height: var(--line-height);
  display: grid;
  grid-template-columns: 1fr 1.5rem;
  align-items: center;
  column-gap: .5rem;
}

form[data-formstepped-three] .form-right .hook li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: .15em;
  width: var(--check-col);
  text-align: left;
  color: var(--clr-ink);
  line-height: 1.8;
  margin-left: 0 !important;
}

form[data-formstepped-three] .form-right .hook .hook-text {
  grid-column: 1;
}

form[data-formstepped-three] .form-right .hook .info-btn {
  grid-column: 2;
  justify-self: end;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  height: var(--line-height);
  cursor: pointer;
  opacity: 0;
  transition: opacity .18s ease-out, transform .18s ease-out;
  color: var(--clr-ink);
  font-size: 1rem;
  position: relative;
  z-index: 30;
}

form[data-formstepped-three] .form-right:hover .hook .info-btn {
  opacity: 1;
}

form[data-formstepped-three] .form-right .hook .info-btn::after {
  content: attr(data-tip);
  position: absolute;
  right: calc(100% + .5rem);
  top: 50%;
  transform: translateY(-50%) translateX(4px);
  min-width: 16rem;
  max-width: 24rem;
  background: rgba(15, 26, 61, .95);
  color: #fff;
  font-size: var(--meta-size);
  line-height: 1.35;
  padding: .5rem .6rem;
  border-radius: 5px;
  box-shadow: 0 4px 14px rgba(0, 0, 0, .15);
  opacity: 0;
  pointer-events: none;
  transition: opacity .15s ease-out, transform .15s ease-out;
  white-space: normal;
  overflow-wrap: break-word;
  z-index: 35;
}

/* Tooltip-Pfeile */
 form[data-formstepped-three] .form-right .hook .info-btn::before {
  content: "";
  position: absolute;
  right: calc(100% + .2rem);
  top: 50%;
  transform: translateY(-50%);
  width: 0;
  height: 0;
  border: 6px solid transparent;
  border-left-color: rgba(15, 26, 61, .95);
  opacity: 0;
  transition: opacity .15s ease-out;
  z-index: 35;
  margin-right: -8px;
}

form[data-formstepped-three] .form-right .hook .info-btn:hover::after,
form[data-formstepped-three] .form-right .hook .info-btn:focus::after,
form[data-formstepped-three] .form-right .hook .info-btn:focus-visible::after,
form[data-formstepped-three] .form-right .hook .info-btn:active::after {
  opacity: 1;
  transform: translateY(-50%) translateX(0);
}

form[data-formstepped-three] .form-right .hook .info-btn:hover::before,
form[data-formstepped-three] .form-right .hook .info-btn:focus::before,
form[data-formstepped-three] .form-right .hook .info-btn:focus-visible::before,
form[data-formstepped-three] .form-right .hook .info-btn:active::before {
  opacity: 1;
}

form[data-formstepped-three] .form-right:hover,
form[data-formstepped-three] .form-right:focus-within {
  overflow: visible !important;
}

form[data-formstepped-three] .form-right:has(.hook .info-btn:hover),
form[data-formstepped-three] .form-right:has(.hook .info-btn:focus),
form[data-formstepped-three] .form-right:has(.hook .info-btn:focus-visible),
form[data-formstepped-three] .form-right:has(.hook .info-btn:active) {
  overflow: visible !important;
}

@media (hover: none) {
  form[data-formstepped-three] .form-right .hook .info-btn {
    display: none !important;
  }
}

/* ================= Mobile Header / Button ================= */
form[data-formstepped-three] .ks-mobile-head,
form[data-formstepped-three] .form-navigation--mobile,
form[data-formstepped-three] .ks-totals-mobile {
  display: none !important;
}

@media (max-width: 1199px) {

  form[data-formstepped-three] .ks-mobile-head,
  form[data-formstepped-three] .form-navigation--mobile,
  form[data-formstepped-three] .ks-totals-mobile {
    display: block !important;
  }

  form[data-formstepped-three] .form-content {
    flex-direction: column;
  }

  form[data-formstepped-three] .form-left,
  form[data-formstepped-three] .form-right {
    width: 100%;
    padding: 24px 16px;
  }

  form[data-formstepped-three] .ks-mobile-head {
    display: grid !important;
    grid-template-columns: 1fr auto;
    gap: 0px;
    align-items: start;
    margin: -10px 0 16px -16px;
  }

  form[data-formstepped-three] .ks-mobile-title {
    font-size: 1.5em;
    line-height: 1.2;
    margin: 0.15rem 0 0.25rem 0;
  }

  form[data-formstepped-three] .form-navigation--mobile {
    width: 100%;
    padding: 0 16px;
    margin: 0 0 16px 0;
  }

  form[data-formstepped-three] .form-navigation--mobile button {
    width: 100%;
  }

  form[data-formstepped-three] .form-right .form-navigation {
    display: none !important;
  }

  form[data-formstepped-three] .form-right>.meta-label,
  form[data-formstepped-three] .form-right>div[style*="font-size:1.5em"],
  form[data-formstepped-three] .form-right .d-flex.align-items-start.mb-3 {
    display: none !important;
  }

  /* Stepper horizontal in <=1199px */
  form[data-formstepped-three] #custom-stepper[data-steps="3"] .stepper-row {
    flex-direction: row !important;
    justify-content: space-between;
  }

  form[data-formstepped-three] #custom-stepper[data-steps="3"] .stepper-dot {
    width: 40px;
    height: 40px;
    font-size: 1.1em;
    margin-bottom: 0 !important;
  }

  form[data-formstepped-three] #custom-stepper[data-steps="3"] .stepper-line {
    height: 2px !important;
    width: auto !important;
  }

  form[data-formstepped-three] #custom-stepper[data-steps="3"] .stepper-label-row {
    display: none !important;
  }

  form[data-formstepped-three] .form-right {
    border-radius: 16px;
    overflow: hidden;
    position: relative;
    background: none;
  }

  form[data-formstepped-three] .form-right::before {
    content: "";
    position: absolute;
    inset: 0;
    background: var(--bg-image-form) center/cover no-repeat;
    opacity: .18;
    z-index: 0;
  }

  form[data-formstepped-three] .form-right>* {
    position: relative;
    z-index: 1;
  }
}

/* kleine optische Korrektur */
form[data-formstepped-three] fieldset>h3 {
  margin-top: .25rem;
  margin-bottom: 1rem;
}

/* Labels exakt unter den Dots */

form[data-formstepped-three] #custom-stepper[data-steps="3"] .stepper-mui,
form[data-formstepped-three] #custom-stepper[data-steps="3"] {
  position: relative;
}

form[data-formstepped-three] #custom-stepper[data-steps="3"] .stepper-label-row {
  position: relative;
  height: 24px;
  margin-top: 10px;
}

form[data-formstepped-three] #custom-stepper[data-steps="3"] .step-label {
  position: absolute;
  width: max-content;
  max-width: 40%;
  white-space: nowrap;
  transform: translateX(-50%);
  text-align: center;
  left: 0;
}

/* bündig am Icon-Rand ausrichten */

form[data-formstepped-three] #custom-stepper[data-steps="3"] .step-label[data-step="1"] {
  left: 0;
  transform: none;
  text-align: left;
}

form[data-formstepped-three] #custom-stepper[data-steps="3"] .step-label[data-step="2"] {
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
}

form[data-formstepped-three] #custom-stepper[data-steps="3"] .step-label[data-step="3"] {
  right: 0;
  left: auto;
  transform: none;
  text-align: right;
  margin-right: 15px;
}

@media (max-width: 1199px) {

  form[data-formstepped-three] .ks-mobile-head .r-pricing {
    font-size: 1.5em !important;
    line-height: 1.2;
    font-weight: 500;
  }

  form[data-formstepped-three] .ks-mobile-head .preis-wert {
    font-size: 1em;
  }

  form[data-formstepped-three] .form-right>div[style*="margin-top:1rem"] {
    display: none !important;
  }

}

/* ================= Check & Radio mit Effekten (threestepp) ================= */

form[data-formstepped-three] .checkbox,
form[data-formstepped-three] .radio {
    border: 1pt solid rgba(15, 26, 61, .2);
    border-radius: 5px;
    padding: 5px;
    margin: 0 0 7px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-sizing: border-box;
    position: relative;
    overflow: hidden;
    transition: background-color .3s ease, box-shadow .3s ease;
}

form[data-formstepped-three] .checkbox::before,
form[data-formstepped-three] .radio::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background-color: rgba(87, 129, 14, 0.1);
    transition: width 0.5s ease, height 0.5s ease;
    transform: translate(-50%, -50%);
    z-index: 0;
    border-radius: 50%;
}

form[data-formstepped-three] .checkbox:hover,
form[data-formstepped-three] .radio:hover {
    box-shadow: 0 4px 8px rgba(15, 26, 61, .2);
}

form[data-formstepped-three] .checkbox input[type="checkbox"],
form[data-formstepped-three] .radio input[type="radio"] {
    height: 1.5rem !important;
    width: 1.5rem !important;
    cursor: pointer;
    margin: 0 !important;
    padding: 0 !important;
    position: absolute !important;
    right: 10px;
    top: 50%;
    transform: translateY(-50%) !important;
    z-index: 1;
    appearance: none !important;
    -webkit-appearance: none !important;
    -moz-appearance: none !important;
    background-color: white !important;
    border: 1pt solid #446600 !important;
    transition: background 0.3s ease, border 0.3s ease;
    box-shadow: none !important;
    display: block !important;
}

form[data-formstepped-three] .checkbox input[type="checkbox"] {
    border-radius: 3px !important;
}

form[data-formstepped-three] .radio input[type="radio"] {
    border-radius: 50% !important;
}

form[data-formstepped-three] .checkbox input[type="checkbox"]:checked,
form[data-formstepped-three] .radio input[type="radio"]:checked {
    background-color: #446600 !important;
    border-color: #446600 !important;
}

form[data-formstepped-three] .checkbox input[type="checkbox"]:checked::after {
    content: '\2714';
    color: white;
    font-size: 1rem;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}

form[data-formstepped-three] .radio input[type="radio"]:checked::after {
    content: '';
    background-color: white;
    width: 0.5rem;
    height: 0.5rem;
    border-radius: 50%;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}

form[data-formstepped-three] .checkbox label,
form[data-formstepped-three] .radio label {
    margin: 0;
    text-align: left;
    width: calc(100% - 36px);
    border-radius: inherit;
    padding: inherit;
    transition: color 0.3s;
    z-index: 1;
    position: relative;
}

/* Checkbox: input liegt INNERHALB des label → :has() statt +label */
form[data-formstepped-three] .checkbox label:has(input[type="checkbox"]:checked),
form[data-formstepped-three] .radio label:has(input[type="radio"]:checked) {
    color: #446600;
}

/* Ripple auf dem Input selbst (Sweep-Effekt) */
form[data-formstepped-three] .checkbox input[type="checkbox"]::before,
form[data-formstepped-three] .radio input[type="radio"]::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 50%;
    width: 0;
    height: 0;
    background-color: rgba(87, 129, 14, 0.3);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.5s ease, height 0.5s ease;
    z-index: -1;
}

form[data-formstepped-three] .checkbox input[type="checkbox"]:hover::before,
form[data-formstepped-three] .radio input[type="radio"]:hover::before {
    width: 2.5rem;
    height: 2.5rem;
}

form[data-formstepped-three] .checkbox input[type="checkbox"]:checked::before,
form[data-formstepped-three] .radio input[type="radio"]:checked::before {
    width: 10000%;
    height: 10000%;
    background-color: rgba(87, 129, 14, 0.05);
    border-radius: 0;
    transition: width 2s ease, height 2s ease;
}