  .cookieconsent-optout-marketing,
  .cookieconsent-optout-statistics {
    background: var(--color-text);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 3rem;
    text-align: center;
    /* Cookiebot sets inline styles - for whatever reason - if the
      "accept marketing cookies"-link is clicked and the coookie layer
      is accepted (again) without accepting marketing cookies.
      So we have to override this the hard way: */
      display: none;
  }

  .cookieconsent-optout-marketing[style*="block"],
  .cookieconsent-optout-statistics[style*="block"] {
      display: block !important;
  }

  .cookieconsent-optout-marketing__inner,
  .cookieconsent-optout-statistics__inner {
    max-width: 100%;
  }

  .cookieconsent-optout-marketing a,
  .cookieconsent-optout-statistics a {
    color: currentColor !important;
    text-decoration: underline !important;
  }

  .cookieconsent-optout-marketing a.cookieconsent-optout-marketing__cookiebot-renew,
  .cookieconsent-optout-statistics a.cookieconsent-optout-statistics__cookiebot-renew {
    font-weight: bold;
  }

  .cookieconsent-optout-marketing__from-src-url,
  .cookieconsent-optout-statistics__from-src-url {
    display: block;
    max-width: 300px;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
    transition-duration: 150ms;
    transition-property: max-width;
  }

  .cookieconsent-optout-marketing:hover .cookieconsent-optout-marketing__from-src-url,
  .cookieconsent-optout-marketing:focus-within .cookieconsent-optout-marketing__from-src-url,
  .cookieconsent-optout-statistics:hover .cookieconsent-optout-statistics__from-src-url,
  .cookieconsent-optout-statistics:focus-within .cookieconsent-optout-statistics__from-src-url {
    max-width: 100%;
  }

  .responsive-embed .cookieconsent-optout-marketing,
  .responsive-embed .cookieconsent-optout-statistics {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
  }
