@charset "UTF-8";
form {
  --form-input-border-color: #ffffff;
  --form-label-color: #8d8d8d;
  --form-input-padding: 15px 30px;
  /*Inputs*/
  /*Select*/
  /*ItemFields*/
}
form textarea,
form select,
form input {
  border: 1px solid var(--form-input-border-color);
  padding: var(--form-input-padding);
}
form select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}
form .nf-before-field {
  display: none;
}
form .nf-after-field {
  top: 11px;
  position: absolute;
  right: 0;
}
form .nf-field {
  z-index: 1;
  margin-bottom: 0 !important;
  /*Label*/
}
form .nf-field .nf-field-label {
  margin-bottom: 0 !important;
  top: 35px;
  left: 15px;
  z-index: 1;
  transition: all 0.3s ease;
}
form .nf-field .nf-field-label label {
  font-weight: 400;
  color: var(--form-label-color);
}
form .nf-field .focus-input .nf-field-label {
  top: 4px;
  left: 0px;
}
form .nf-field .field-wrap.list-select-wrap .nf-field-element:after {
  position: absolute;
  content: "\f282";
  font-family: var(--fontBootstrap);
  color: var(--mainFontColor);
  right: 10px;
  top: 17px;
  z-index: 2;
  font-size: 24px;
}
form form .nf-field input[type=submit] {
  background-color: var(--wp--preset--color--quaternary);
  text-transform: uppercase;
  padding: 5px 20px;
  text-align: left;
  cursor: pointer;
  line-height: 1.2;
}
form form .nf-field input[type=submit]:hover {
  background-color: var(--wp--preset--color--primary);
}

/*Woocommerce*/
body.mein-konto form,
body.kasse form {
  --form-input-border-color: #c4c4c4;
  --form-label-color: #8d8d8d;
  /* Fügt einen Kreis in der Mitte hinzu */
  /* Fügt ein Häkchen hinzu */
}
body.mein-konto form .nf-form-content,
body.kasse form .nf-form-content {
  --form-input-border-color: #ffffff;
}
body.mein-konto form #customer_details,
body.kasse form #customer_details {
  display: flex;
  flex-direction: column;
  margin-bottom: var(--mbfse--margin-bottom-inline);
}
body.mein-konto form #customer_details h4,
body.kasse form #customer_details h4 {
  margin-top: 0;
  font-weight: 700;
}
body.mein-konto form #customer_details #billing_kontaktheading_field,
body.kasse form #customer_details #billing_kontaktheading_field {
  margin-top: calc(2 * var(--mbfse--margin-bottom-inline));
}
body.mein-konto form #customer_details > div,
body.kasse form #customer_details > div {
  float: none;
  width: 100%;
  margin-bottom: var(--mbfse--margin-bottom-inline);
}
body.mein-konto form #customer_details > div p,
body.kasse form #customer_details > div p {
  margin-bottom: 10px;
  padding: 0;
}
body.mein-konto form #customer_details > div p label,
body.kasse form #customer_details > div p label {
  margin-bottom: 0;
}
body.mein-konto form #customer_details .woocommerce-billing-fields h3,
body.mein-konto form #customer_details .woocommerce-shipping-fields,
body.kasse form #customer_details .woocommerce-billing-fields h3,
body.kasse form #customer_details .woocommerce-shipping-fields {
  display: none;
}
body.mein-konto form .woocommerce-checkout-review-order-table,
body.kasse form .woocommerce-checkout-review-order-table {
  width: 100%;
}
body.mein-konto form .woocommerce-checkout-review-order-table .cart-subtotal,
body.kasse form .woocommerce-checkout-review-order-table .cart-subtotal {
  display: none;
}
body.mein-konto form .wc-gzd-checkbox-placeholder,
body.mein-konto form .woocommerce-terms-and-conditions-wrapper,
body.mein-konto form .woocommerce-privacy-policy-text,
body.kasse form .wc-gzd-checkbox-placeholder,
body.kasse form .woocommerce-terms-and-conditions-wrapper,
body.kasse form .woocommerce-privacy-policy-text {
  margin-bottom: var(--mbfse--margin-bottom-inline);
}
body.mein-konto form #payment,
body.kasse form #payment {
  background-color: rgba(212, 212, 212, 0.14);
}
body.mein-konto form #payment .payment_box,
body.kasse form #payment .payment_box {
  background-color: rgba(226, 226, 226, 0.2705882353);
}
body.mein-konto form #payment .payment_box::before,
body.kasse form #payment .payment_box::before {
  border: 1em solid rgba(212, 212, 212, 0.14);
  border-right-color: transparent;
  border-left-color: transparent;
  border-top-color: transparent;
}
body.mein-konto form input[type=radio],
body.kasse form input[type=radio] {
  padding: 7px;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  width: 20px;
  height: 20px;
  border: 1px solid var(--wp--preset--color--primary); /* Rahmenfarbe */
  border-radius: 50%;
  margin-right: 10px;
  cursor: pointer;
  top: 4px;
}
body.mein-konto form input[type=radio]:checked,
body.kasse form input[type=radio]:checked {
  background-color: var(--wp--preset--color--primary); /* Hintergrundfarbe, wenn die Radiobox ausgewählt ist */
  border-color: var(--wp--preset--color--primary); /* Rahmenfarbe, wenn die Radiobox ausgewählt ist */
}
body.mein-konto form input[type=radio]:checked::after,
body.kasse form input[type=radio]:checked::after {
  content: "";
  display: block;
  background-color: var(--wp--preset--color--tertiary); /* Kreisfarbe */
  border-radius: 50%;
  position: absolute;
  width: 7px;
  height: 7px;
  top: 5.5px;
  left: 5.5px;
}
body.mein-konto form input[type=checkbox]:not([name=terms]),
body.kasse form input[type=checkbox]:not([name=terms]) {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  width: 20px;
  height: 20px;
  border: 1px solid var(--wp--preset--color--primary); /* Rahmenfarbe */
  border-radius: 4px;
  margin-right: 10px;
  cursor: pointer;
  padding: 15px;
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
}
body.mein-konto form input[type=checkbox]:checked,
body.kasse form input[type=checkbox]:checked {
  background-color: var(--wp--preset--color--primary); /* Hintergrundfarbe, wenn die Checkbox ausgewählt ist */
  border-color: var(--wp--preset--color--primary); /* Rahmenfarbe, wenn die Checkbox ausgewählt ist */
}
body.mein-konto form input[type=checkbox]:checked::after,
body.kasse form input[type=checkbox]:checked::after {
  content: "\f633";
  font-family: "bootstrap-icons";
  display: block;
  color: var(--wp--preset--color--tertiary);
  background-color: transparent;
  position: relative;
  font-size: 28px;
}
@media (max-width: 601px) {
  body.mein-konto form .form-row-last,
  body.mein-konto form .form-row-first,
  body.kasse form .form-row-last,
  body.kasse form .form-row-first {
    width: 100% !important;
  }
}/*# sourceMappingURL=formular.css.map */