@charset "UTF-8";
#orderForm #app {
  width: 150%;
}
#orderForm #app h2 {
  margin-left: -2px;
}
#orderForm #app h3 {
  font-size: 16px;
  font-weight: bold;
  margin-top: 60px;
  margin-bottom: 30px;
  text-transform: none;
}
#orderForm #app h4 {
  font-family: libre_franklinregular, "Helvetica Neue", Helvetica, Roboto, Arial, sans-serif;
  font-size: 14px;
  font-weight: bold;
  text-transform: none;
}
#orderForm #app h4 span {
  font-weight: normal;
}
#orderForm #app input:-moz-read-only {
  border: 0;
}
#orderForm #app input:read-only {
  border: 0;
}
#orderForm #app input[type=number] {
  padding: 5px;
  border: 1px solid #EEE;
}
#orderForm .divider {
  height: 60px;
}
#orderForm .divider.small {
  height: 30px;
}
#orderForm .small {
  font-size: 12px;
}
#orderForm button {
  color: #718f87;
  border: 2px solid #718f87;
  padding: 10px 20px;
  font-size: 12px;
  text-transform: uppercase;
  text-align: right;
}
#orderForm button.forward, #orderForm button.submit {
  float: right;
  margin-top: 60px;
}
#orderForm button.back {
  margin-top: 60px;
}
#orderForm input[type=number]::-webkit-inner-spin-button,
#orderForm input[type=number]::-webkit-outer-spin-button {
  opacity: 1;
}
#orderForm .checkbox-outer {
  display: block;
  position: relative;
  padding-left: 35px;
  margin-bottom: 12px;
  cursor: pointer;
  font-weight: bold;
  -webkit-user-select: none;
  user-select: none;
}
#orderForm .checkbox-outer a {
  color: #718f87;
  text-decoration: none;
}
#orderForm .checkbox-outer input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}
#orderForm .checkbox-outer input:checked ~ .checkmark:after {
  display: block;
}
#orderForm .checkbox-outer input.error ~ .checkmark {
  border: 2px solid red;
}
#orderForm .checkmark {
  position: absolute;
  top: 0;
  left: 0;
  height: 22px;
  width: 22px;
  background-color: #fff;
  border: 2px solid #718f87;
}
#orderForm .checkmark:after {
  content: "x";
  position: absolute;
  display: none;
  font-weight: bold;
  color: #718f87;
  left: 5px;
  top: -2px;
  width: 5px;
  height: 10px;
}
#orderForm .mobile-only {
  display: none !important;
}
#orderForm .error {
  background-color: #FFDFDF !important;
}
#orderForm .error.-msg {
  width: 150%;
  margin-top: 30px;
  background-color: transparent !important;
  color: red;
  font-weight: bold;
  text-align: right;
}
#orderForm .list-tabs.active {
  display: flex !important;
}
#orderForm .list-tabs .tab {
  flex-grow: 1;
  color: #CCC;
  border-bottom: 2px solid #EEE;
  padding-bottom: 15px;
}
#orderForm .list-tabs .tab:nth-child(1) {
  padding-left: 10px;
}
#orderForm .list-tabs .tab:nth-child(2) {
  text-align: center;
}
#orderForm .list-tabs .tab:nth-child(3) {
  padding-right: 10px;
  text-align: right;
}
#orderForm .list-tabs .tab.-active {
  font-weight: bold;
  color: #718f87;
  border-bottom: 2px solid #718f87;
}

#orderForm #app > .products > .product-heading {
  display: flex;
  justify-content: space-between;
  font-size: 12px;
  font-weight: bold;
  border-top: 2px solid #EEE;
  border-bottom: 2px solid #EEE;
  padding: 5px 0;
}
#orderForm #app > .products > .product-heading > div:nth-child(1) {
  width: 50%;
  padding-left: 10px;
}
#orderForm #app > .products > .product-heading > div:nth-child(2) {
  width: 15%;
}
#orderForm #app > .products > .product-heading > div:nth-child(3) {
  width: 15%;
  text-align: right;
}
#orderForm #app > .products > .product-heading > div:nth-child(4) {
  width: 20%;
  text-align: right;
}
#orderForm #app > .products .product {
  position: relative;
  display: flex;
  justify-content: space-between;
  margin-top: 15px;
  padding-bottom: 15px;
  border-bottom: 2px solid #EEE;
}
#orderForm #app > .products .product[data-enabled=false] .outStock {
  color: #cbb45f;
}
#orderForm #app > .products .product[data-enabled=false] .productDes {
  display: none;
}
#orderForm #app > .products .product[data-enabled=false] .pro-title {
  width: 90%;
}
#orderForm #app > .products .product[data-enabled=false] .pro-price,
#orderForm #app > .products .product[data-enabled=false] .pro-quantity,
#orderForm #app > .products .product[data-enabled=false] .pro-total {
  display: none;
}
#orderForm #app > .products .product[data-enabled=true] .outStock {
  display: none;
}
#orderForm #app > .products .product img.image {
  width: 10%;
  height: 10%;
}
#orderForm #app > .products .product .pro-price,
#orderForm #app > .products .product .pro-quantity,
#orderForm #app > .products .product .pro-unit,
#orderForm #app > .products .product .pro-title,
#orderForm #app > .products .product .pro-total {
  display: flex;
  align-items: center;
}
#orderForm #app > .products .product .pro-title {
  width: 40%;
  padding-left: 15px;
  font-weight: bold;
  flex-wrap: wrap;
}
#orderForm #app > .products .product .pro-title input {
  width: 100%;
}
#orderForm #app > .products .product .pro-quantity {
  width: 10%;
}
#orderForm #app > .products .product .pro-quantity input {
  max-width: 90%;
}
#orderForm #app > .products .product .pro-price {
  width: 20%;
  justify-content: flex-end;
}
#orderForm #app > .products .product .pro-total {
  width: 20%;
  justify-content: flex-end;
}
#orderForm #app > .products .product .outStock,
#orderForm #app > .products .product .productDes {
  width: 100%;
}
#orderForm #app > .products .all-total {
  margin-top: 15px;
  padding-bottom: 15px;
  text-align: right;
  border-bottom: 2px solid #EEE;
}
#orderForm #app > .products .pro-plz {
  border: 0;
  border-bottom: 2px solid #718f87;
  width: 80px;
  font-size: 18px;
  text-align: center;
}
#orderForm #app > .products .pro-city {
  display: inline-block;
  margin-left: 10px;
}
#orderForm #app > .products p.citySelect {
  font-weight: bold;
  margin-top: 30px;
}
#orderForm #app > .products select.citySelect {
  border: 0;
  border-bottom: 2px solid #718f87;
  width: auto;
}
#orderForm #app > .products .shipping-zones-block .shipping-zones {
  display: flex;
  border-top: 2px solid #EEE;
}
#orderForm #app > .products .shipping-zones-block .shipping-zones:nth-child(9) {
  border-bottom: 2px solid #EEE;
}
#orderForm #app > .products .shipping-zones-block .shipping-zones > div {
  text-align: center;
  line-height: 14px;
  border-right: 2px solid #EEE;
  padding: 10px 0;
}
#orderForm #app > .products .shipping-zones-block .shipping-zones > div span {
  display: block;
  font-size: 12px;
}
#orderForm #app > .products .shipping-zones-block .shipping-zones > div.zactive {
  background-color: #EEE;
}
#orderForm #app > .products .shipping-zones-block .shipping-zones > div:nth-child(1) {
  width: 14%;
  display: flex;
  align-items: center;
  font-weight: bold;
}
#orderForm #app > .products .shipping-zones-block .shipping-zones > div:nth-child(n+2) {
  width: 7.8%;
}
#orderForm #app > .products .shipping-zones-block .shipping-zones > div:nth-child(12) {
  border-right: 0;
}
#orderForm #app > .products .shipping-zones-block .shipping-zones.-heading {
  border-bottom: 2px solid #EEE;
}
#orderForm #app > .products .shipping-zones-block .shipping-zones.-heading > div {
  text-align: center;
  line-height: 14px;
  border-right: 2px solid #EEE;
  padding: 10px 0;
}
#orderForm #app > .products .shipping-zones-block .shipping-zones.-heading > div span {
  display: block;
  font-size: 12px;
}
#orderForm #app > .products .shipping-zones-block .shipping-zones.-heading > div.zactive {
  background-color: #EEE;
}
#orderForm #app > .products .shipping-zones-block .shipping-zones.-heading > div:nth-child(2) {
  color: #de182a;
}
#orderForm #app > .products .shipping-zones-block .shipping-zones.-heading > div:nth-child(3) {
  color: #f8a647;
}
#orderForm #app > .products .shipping-zones-block .shipping-zones.-heading > div:nth-child(4) {
  color: #ffdb05;
}
#orderForm #app > .products .shipping-zones-block .shipping-zones.-heading > div:nth-child(5) {
  color: #62a841;
}
#orderForm #app > .products .shipping-zones-block .shipping-zones.-heading > div:nth-child(6) {
  color: #287a2a;
}
#orderForm #app > .products .shipping-zones-block .shipping-zones.-heading > div:nth-child(7) {
  color: #1fa7e4;
}
#orderForm #app > .products .shipping-zones-block .shipping-zones.-heading > div:nth-child(8) {
  color: #004796;
}
#orderForm #app > .products .shipping-zones-block .shipping-zones.-heading > div:nth-child(9) {
  color: #513584;
}
#orderForm #app > .products .shipping-zones-block .shipping-zones.-heading > div:nth-child(10) {
  color: #d272aa;
}
#orderForm #app > .products .shipping-zones-block .shipping-zones.-heading > div:nth-child(11) {
  color: #93400f;
}
#orderForm #app > .products .shipping-zones-block .shipping-zones.-heading > div:nth-child(12) {
  color: #747575;
  border-right: 0;
}
#orderForm #app > .products .shipping-heading {
  display: flex;
  justify-content: space-between;
  font-size: 12px;
  font-weight: bold;
  border-top: 2px solid #EEE;
  border-bottom: 2px solid #EEE;
  padding: 5px 0;
}
#orderForm #app > .products .shipping-heading > div:nth-child(1) {
  width: 60%;
  padding-left: 10px;
}
#orderForm #app > .products .shipping-heading > div:nth-child(2) {
  width: 20%;
}
#orderForm #app > .products .shipping-heading > div:nth-child(3) {
  width: 20%;
  text-align: right;
}
#orderForm #app > .products .shipping-map {
  text-align: center;
  margin: 30px auto 0;
  width: 60%;
}
#orderForm #app > .products .shipping-total {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  border-bottom: 2px solid #EEE;
  padding-top: 15px;
}
#orderForm #app > .products .shipping-total > div {
  display: flex;
  align-items: center;
}
#orderForm #app > .products .shipping-total > div:nth-child(2) {
  width: 10%;
}
#orderForm #app > .products .shipping-total > div:nth-child(3) {
  width: 50%;
  padding-left: 15px;
}
#orderForm #app > .products .shipping-total > div:nth-child(4) {
  width: 20%;
}
#orderForm #app > .products .shipping-total > div:nth-child(5) {
  width: 20%;
  justify-content: flex-end;
}
#orderForm #app > .products .shipping-total > div:nth-child(6) {
  width: 100%;
  display: block;
  text-align: right;
  border-top: 2px solid #EEE;
  padding: 15px 0;
  margin-top: 15px;
}
#orderForm #app > .products .price-total {
  font-size: 16px;
}
#orderForm #app > .products .shipping-conditions {
  display: inline-block;
  width: 40%;
  margin-bottom: 0;
}
#orderForm #app .list-tabs {
  display: flex;
}
#orderForm #app .list-tabs.onlySummary {
  display: none;
}

#orderForm #app .contactInfo {
  padding-bottom: 20px;
}
#orderForm #app .contactInfo .billAdr {
  display: none;
}
#orderForm #app .contactInfo .billAdr.active {
  display: flex;
}
#orderForm #app .contactInfo .shippingAdr {
  display: flex;
}
#orderForm #app .contactInfo .billAdr,
#orderForm #app .contactInfo .shippingAdr {
  flex-wrap: wrap;
}
#orderForm #app .contactInfo .billAdr h3,
#orderForm #app .contactInfo .shippingAdr h3 {
  width: 100%;
}
#orderForm #app .contactInfo .billAdr label,
#orderForm #app .contactInfo .shippingAdr label {
  width: 50%;
  font-weight: bold;
  font-size: 12px;
  margin-bottom: 15px;
}
#orderForm #app .contactInfo .billAdr input,
#orderForm #app .contactInfo .shippingAdr input {
  width: 40%;
  margin-right: 10%;
  margin-bottom: 30px;
  border: 0;
  border-bottom: 2px solid #718f87;
}
#orderForm #app .contactInfo .billAdr textarea,
#orderForm #app .contactInfo .shippingAdr textarea {
  border: 2px solid #718f87;
  width: 90%;
  height: 120px;
  padding: 15px;
  margin-bottom: 30px;
}
#orderForm #app .contactInfo .list-tabs {
  display: flex;
}

#orderForm #app {
  display: flex;
  flex-wrap: wrap;
}
#orderForm #app > .contactInfo,
#orderForm #app > .products,
#orderForm #app > .orderSummary {
  width: 100%;
}
#orderForm #app > .products {
  order: 2;
}
#orderForm #app > .contactInfo {
  order: 3;
}
#orderForm #app > .orderSummary {
  order: 4;
}
#orderForm #app > .orderSummary.active {
  padding-bottom: 20px;
  order: 1;
}
#orderForm #app > .orderSummary.active .billAdrSum,
#orderForm #app > .orderSummary.active .shippingAdrSum,
#orderForm #app > .orderSummary.active h3 {
  width: 49%;
  display: inline-block;
}
#orderForm #app > .orderSummary.active p {
  margin-bottom: 0.2rem;
}

#orderForm .orderSummary.active {
  width: 150%;
}

@media screen and (max-width: 1400px) {
  body.bestell-form .container {
    max-width: 100%;
    padding: 0 15px;
  }
  body.bestell-form .container .row {
    max-width: 100%;
  }
  body.bestell-form .container .row #orderForm #app {
    width: 100%;
  }
  body.bestell-form .container .row #orderForm .error {
    width: 100%;
  }
  body.bestell-form .container .row #orderForm .orderSummary.active {
    width: 100%;
  }
}
@media screen and (max-width: 992px) {
  body.bestell-form .container .row #orderForm #app .mobile-only {
    display: block;
  }
  body.bestell-form .container .row #orderForm #app h2 {
    margin: 0 0 2rem;
  }
  body.bestell-form .container .row #orderForm #app .list-tabs .tab {
    display: none;
    text-align: left;
  }
  body.bestell-form .container .row #orderForm #app .list-tabs .tab.-active {
    display: block;
    padding-left: 0;
  }
  body.bestell-form .container .row #orderForm #app .divider {
    height: 30px;
  }
  body.bestell-form .container .row #orderForm #app .products .product-heading {
    display: none;
  }
  body.bestell-form .container .row #orderForm #app .products .product {
    flex-wrap: wrap;
    padding-bottom: 0;
  }
  body.bestell-form .container .row #orderForm #app .products .product:first-child {
    border-top: 2px solid #EEE;
  }
  body.bestell-form .container .row #orderForm #app .products .product .image {
    width: 35%;
  }
  body.bestell-form .container .row #orderForm #app .products .product .pro-title {
    width: 65%;
  }
  body.bestell-form .container .row #orderForm #app .products .product .pro-price,
body.bestell-form .container .row #orderForm #app .products .product .pro-quantity,
body.bestell-form .container .row #orderForm #app .products .product .pro-total {
    width: 100%;
    justify-content: flex-end;
    padding: 15px 0;
    border-top: 2px solid #EEE;
  }
  body.bestell-form .container .row #orderForm #app .products .product .pro-price:before,
body.bestell-form .container .row #orderForm #app .products .product .pro-quantity:before,
body.bestell-form .container .row #orderForm #app .products .product .pro-total:before {
    position: absolute;
    font-weight: bold;
    left: 25px;
  }
  body.bestell-form .container .row #orderForm #app .products .product .pro-price:before {
    content: "Stückpreis";
  }
  body.bestell-form .container .row #orderForm #app .products .product .pro-quantity:before {
    content: "Menge";
  }
  body.bestell-form .container .row #orderForm #app .products .product .pro-total before {
    content: "Total";
  }
  body.bestell-form .container .row #orderForm #app .products .shipping-zones-block .shipping-zones > div {
    display: none;
  }
  body.bestell-form .container .row #orderForm #app .products .shipping-zones-block .shipping-zones > div.zactive, body.bestell-form .container .row #orderForm #app .products .shipping-zones-block .shipping-zones > div:first-child {
    width: 50%;
    display: block;
  }
  body.bestell-form .container .row #orderForm #app .products .shipping-map {
    width: 100%;
  }
  body.bestell-form .container .row #orderForm #app .products .shipping-heading {
    display: none;
  }
  body.bestell-form .container .row #orderForm #app .products .shipping-total {
    position: relative;
  }
  body.bestell-form .container .row #orderForm #app .products .shipping-total .mobile-only {
    display: block !important;
    width: 100%;
    font-weight: bold;
    padding: 10px 0;
    border-top: 2px solid #EEE;
    border-bottom: 2px solid #EEE;
  }
  body.bestell-form .container .row #orderForm #app .products .shipping-total > div:nth-child(2) {
    width: 35%;
    padding-top: 30px;
  }
  body.bestell-form .container .row #orderForm #app .products .shipping-total > div:nth-child(3) {
    width: 65%;
    padding-top: 30px;
  }
  body.bestell-form .container .row #orderForm #app .products .shipping-total > div:nth-child(4) {
    position: relative;
    justify-content: flex-end;
    width: 100%;
    border-top: 2px solid #EEE;
    border-bottom: 2px solid #EEE;
    padding: 15px 0;
    height: 55px;
  }
  body.bestell-form .container .row #orderForm #app .products .shipping-total > div:nth-child(4):before {
    position: absolute;
    content: "Mengenrabatt";
    font-weight: bold;
    display: block;
    left: 0;
  }
  body.bestell-form .container .row #orderForm #app .products .shipping-total > div:nth-child(5) {
    position: relative;
    width: 100%;
    padding: 15px 0;
  }
  body.bestell-form .container .row #orderForm #app .products .shipping-total > div:nth-child(5):before {
    position: absolute;
    content: "Lieferkosten";
    font-weight: bold;
    display: block;
    left: 0;
  }
  body.bestell-form .container .row #orderForm #app .products .shipping-total > div:nth-child(6) {
    margin-top: 0;
  }
}

body.bestell-form .button-eu {
  position: absolute;
  display: block;
  top: 26vw;
  right: 300px;
  width: 225px;
  height: 225px;
  border-radius: 50%;
  background-color: #E11A27;
  color: white;
  font-size: 11px;
  z-index: 100;
}
body.bestell-form .button-eu img {
  position: absolute;
  width: 50px;
  left: 50%;
  top: 15px;
  transform: translate(-50%, 0);
}
body.bestell-form .button-eu .inner {
  position: absolute;
  width: 65%;
  left: 50%;
  top: 75px;
  transform: translate(-50%, 0);
  text-align: center;
}
@media screen and (max-width: 992px) {
  body.bestell-form .button-eu {
    position: relative;
    display: block;
    top: -42px;
    right: 0;
    width: 100%;
    padding: 15px;
    height: auto;
    border-radius: 0;
    font-size: 14px;
  }
  body.bestell-form .button-eu img {
    position: relative;
    display: block;
    margin: 0 auto;
    width: 50px;
    top: 0;
    left: 0;
    padding: 10px 0;
    transform: translate(0, 0);
  }
  body.bestell-form .button-eu .inner {
    position: relative;
    width: 100%;
    top: 0;
    left: 0;
    transform: translate(0, 0);
    text-align: center;
  }
}

/* Filter */

#orderForm .product-filters {
    display: flex;
    flex-wrap: wrap;
    margin-inline: -10px;
    margin-bottom: 20px;
}

#orderForm .product-filters .product-filter {
    width: 100%;
    padding-inline: 10px;
    position: relative;
    cursor: pointer;
}

#orderForm .product-filters .product-filter img {
    width: 100%;
    height: auto;
    display: block;
}

#orderForm .product-filters .product-filter span {
    background-color: #7B978F;
    color: white;
    display: flex;
    align-items: center;
    position: absolute;
    bottom: 0;
    inset-inline: 10px;
    padding: 4px 10px;
}

#orderForm .product-filters .product-filter:hover span,
#orderForm .product-filters .product-filter.active span {
    background-color: #3c4c44;
}

@media (min-width: 768px) {
    #orderForm .product-filters .product-filter {
        width: 50%;
    }
}

@media (min-width: 1199px) {
    #orderForm .product-filters .product-filter {
        width: 25%;
    }
}

.product.filtered_hide {
    display: none !important;
}
