input, select {
  border: none;
  border-bottom: 1px solid #bdc3c7;
  padding: 1em 2em;
  display: block;
  margin: 2em auto;
  transition: .7s ease;
  border-radius: 30px;
  font-size:1em;
  line-height:1.2em;
}

input:hover {
  background-color:#f5f5f5;
}

input::placeholder {
  color: rgba(0,0,0,.4);
}
input:focus, input:hover {
  outline-style:none;
  box-shadow: 0 1px 0 #bdc3c7;
  border-top: transparent;
  transition: 200ms;
}
input[type="radio"] {
  display: none;
  top: 0;
  left: 0;
  z-index: 20;
}

.ce_form {
  background-color: #f0f8fd;
  padding: 2rem 4rem;
  border-radius: 50px;
  box-shadow: 0 0 20px #c0d6e5;
  border: 2px white solid;
  margin-top: 4rem;
}

.ce_form input[type="checkbox"] + label,
.ce_form input[type="radio"] + label {
  background-image:url("/files/img/circles-green.png");
  background-repeat: no-repeat;
  background-position: 0 0;
  padding-left: 48px;
  padding-right: 20px;
  display: inline-block;
  height:40px;
  /*line-height: 40px;*/
  /*padding-top:10px;*/
}

.ce_form input[type="checkbox"]:checked + label,
.ce_form input[type="radio"]:checked + label {
    background-position: 0 -40px;
}

.ce_form input[type="checkbox"],
.ce_form input[type="radio"] {
  width: 0;
  margin: 0;
  padding: 0;
  opacity: 0;
}

fieldset {
	border: 0;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: space-between;
}

fieldset.col-100 {
	flex-direction: column;
  flex-wrap: wrap;
}

fieldset label.datum, label.zeit, fieldset legend {
  color: var(--green);
  font-weight:600;
  font-size:1.5rem;
}

fieldset legend {
  margin:1rem 0 0.8rem;
}

fieldset.flex_column {
  flex-direction:column;
}

fieldset.wrap_flex_column {
  flex-wrap: wrap;
}

fieldset.wrap_flex_column > div.widget {
  width:32%;
  padding-right:1%;
}

fieldset.wrap_flex_column:after {
  content:'';
  width: 32%;
}

.fieldset-flex {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.fieldset-flex div.widget input {
  width:100%;
}


.fieldset-flex widget.anrede label {
  display:block;
}

.fieldset-flex widget.anrede select {
  width:100%;
}

.fieldset-flex div.widget input, .fieldset-flex div.widget select {
  box-sizing: border-box;
}

 .ce_form fieldset {
   margin-top:1em;
 }

.ce_form button {
  margin-top:2em;
  background-color: var(--green);
  padding: 1rem;
  border-radius: 50px;
  width: 100%;
  color: #fff;
  border: none;
  cursor:pointer;
  font-family:'Nunito';
  font-size:1.5rem;
  font-weight:600;
  transition: .7s ease;
}

.ce_form button:hover {
  background-color: var(--darkblue);
}

.ce_form p {font-size:1.2rem; margin-bottom:2em}

.ce_form h2 {margin-bottom:1em}