/** Shopify CDN: Minification failed

Line 25:12 Unexpected "{"
Line 25:21 Expected ":"
Line 26:16 Expected identifier but found whitespace
Line 26:18 Unexpected "{"
Line 26:27 Expected ":"
Line 26:78 Expected ":"
Line 27:19 Expected identifier but found whitespace
Line 27:21 Unexpected "{"
Line 27:30 Expected ":"
Line 27:84 Expected ":"
... and 10 more hidden warnings

**/


/* CSS from section stylesheet tags */
body,
  main#MainContent,
  .template-page {
    background-color: #000 !important;
  }

  .section-{{ section.id }}-padding {
    padding-top: {{ section.settings.padding_top | times: 0.75 | round: 0 }}px;
    padding-bottom: {{ section.settings.padding_bottom | times: 0.75 | round: 0 }}px;
  }

  @media screen and (min-width: 750px) {
    .section-{{ section.id }}-padding {
      padding-top: {{ section.settings.padding_top }}px;
      padding-bottom: {{ section.settings.padding_bottom }}px;
    }
  }

  .b2b-wrapper {
    background: #000;
    color: #fff;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 0 40px rgba(255, 255, 255, 0.1);
    max-width: 700px;
    margin: 2rem auto;
    border: 1px solid #fff;
  }

  .b2b-info-text {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    color: #ddd;
  }

  .contact__button {
    margin-top: 1.5rem;
  }

  .b2b-wrapper input,
  .b2b-wrapper textarea {
    background-color: #111;
    color: #fff;
    border: 1px solid #888;
  }

  .b2b-wrapper input:focus,
  .b2b-wrapper textarea:focus {
    border-color: #fff;
  }

  .field__label::after {
    content: '*';
    color: #ff4d4d;
    margin-left: 4px;
    font-weight: bold;
  }

  /* Ausnahme für optionale Felder */
  .field.optional .field__label::after {
    content: '';
  }