.flexbox{
    display: flex;
    flex-direction: row;
    width: 100%;
}


.be-form {
    display: flex;
    flex-direction: row;
    margin-bottom: 20px;
}

.be-datensatz{
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 30px;
    flex-basis: 200px;
    flex-shrink: 1;
    justify-content: space-between;
    border: thin solid #dddddd;
    padding: 10px 20px;
    height: 30px;
    border-radius: 5px;
    vertical-align: middle;
    margin-bottom: 10px;
}

.beschriftung, .schalter{
    margin: 0;
}

.flexbox fieldset {
    border-radius: 5px;
    border: thin solid #dddddd;
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    column-gap: 30px;
    padding: 10px;
}

.apple-switch {
    position: relative;
    display: inline-block;
    width: 42px; /* Anpassen der Breite 80px */
    height: 22px; /* Anpassen der Höhe 44px */
    margin: 0;
  }

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

  .apple-slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    -webkit-transition: .2s;
    transition: .2s;
  }

  .apple-slider:before {
    position: absolute;
    content: "";
    height: 18px; /* Anpassen der Höhe 36px */
    width: 18px; /* Anpassen der Breite 36px */
    left: 2px;  /* Anpassen der Position Knopf 4px */
    bottom: 2px;    /* Anpassen der Position Knopf 4px */
    background-color: white;
    -webkit-transition: .2s;
    transition: .2s;
  }

  input:checked + .apple-slider {
    background-color: #3878ac;
  }

  input:focus + .apple-slider {
    box-shadow: 0 0 1px #2196F3;
  }

  input:checked + .apple-slider:before {
    -webkit-transform: translateX(20px); /* Anpassen der Breite 40px */
    -ms-transform: translateX(20px); /* Anpassen der Breite 40px */
    transform: translateX(20px); /* Anpassen der Breite 40px */
  }

  .apple-slider.round {
    border-radius: 22px; /* Anpassen der Höhe 44px */
  }

  .apple-slider.round:before {
    border-radius: 50%;
  }