body {
    background-color: white;
    font-family: "Roboto", sans-serif;
}

.hidden {
    display: none !important;
}

.kd-bogen {
    background-image: url("../images/kd_bgr-UqtLXAk.jpg");
    width: 1000px;
    height: 1413px;
    font-size: 12px;
    overflow: hidden;
}

.kd-trenner {
    width: 140px;
    float: left;
    height: auto;
}

.kd-content {
    width: 860px;
    float: right;
    height: auto;
}

.text-trenner {
    padding-left: 10px;
    padding-right: 10px;
}

/* RADIO BUTTONS */  
.toggle-buttons input[type="radio"]{
    visibility:hidden;
}
.toggle-buttons label {
    margin-left: auto;
    margin-right: auto;
  display: block;
  width: 60vw;
  border: 1px solid #333;
  border-radius: 0.5em;
  padding: 0.5em;
}
 
.toggle-buttons input:checked + label {
  background: #ae1122;
  color: #ffffff;
  box-shadow: none;
}

/* WEITER BUTTON*/
.checkout-btn {
    width: 80%;
    height: 34px;
    padding: 0;
    font-weight: bold;
    color: white;
    text-align: center;
    text-shadow: 0 -1px 1px rgba(black, .2);
    border: 1px solid;
    border-color: #ae1122;
    background: #ae1122;
    border-radius: 10px;
  
    &:active {
      text-shadow: 0 1px 1px rgba(black, .2);
      border-color: #ae1122;
    }
}

.switch {
    position: relative;
    display: inline-block;
    width: 40px;
    height: 20px;
    background-color: rgba(0, 0, 0, 0.25);
    border-radius: 20px;
    transition: all 0.3s;
}
.switch::after {
    content: '';
    position: absolute;
    width: 18px;
    height: 18px;
    border-radius:50%;
    background-color: white;
    top: 1px;
    left: 1px;
    transition: all 0.3s;
}
  
.checkbox:checked + .switch::after {
    left : 20px;
}

.checkbox:checked + .switch {
    background-color: #65bd63;
}
  
.checkbox {
    display : none;
}      

.step-indicator {
    display: flex;
    justify-content: space-between;
    margin-bottom: 1rem;
  }
  
  .step-circle {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    border: 2px solid #ccc;
    background-color: white;
    transition: background-color 0.3s, border-color 0.3s;
  }
  
  .step-circle.done {
    background-color: #ae1122; /* grün gefüllt */
    border-color: #ae1122;
  }
  
  .step-circle.current {
    border-color: #ae1122; /* blauer Rand */
  }

  .centered-button {
    display: block;
    margin: 2rem auto;
    padding: 1rem 2rem;
    font-size: 1.2rem;
    background-color: #005fc1;
    color: white;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    transition: background-color 0.2s ease;
  }
  
  .centered-button:hover {
    background-color: #004799;
  }

  .btn-submit {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.6em 1.2em;
    font-size: 1rem;
    cursor: pointer;
    border: none;
    border-radius: 5px;
    background-color: #ae1122; /* 100TOP Rot */
    color: white;
    position: relative;
  }

  .spinner {
    width: 1em;
    height: 1em;
    border: 2px solid transparent;
    border-top: 2px solid white;
    border-radius: 50%;
    margin-right: 0.5em;
    animation: spin 0.6s linear infinite;
  }

  .d-none {
    display: none;
  }

  @keyframes spin {
    to {
      transform: rotate(360deg);
    }
  }
