/** Shopify CDN: Minification failed

Line 69:0 Unexpected "{"
Line 69:1 Expected identifier but found "%"
Line 71:1 Expected identifier but found "%"
Line 101:0 Unexpected "{"
Line 101:1 Expected identifier but found "%"
Line 103:1 Expected identifier but found "%"

**/
.accordion summary {
  display: flex;
  position: relative;
  line-height: 1;
  padding: 1.5rem 0;
}

.accordion .summary__title {
  display: flex;
  flex: 1;
}

.accordion .summary__title + .icon-caret {
  height: calc(var(--font-heading-scale) * 0.6rem);
}

.accordion + .accordion {
  margin-top: 0;
  border-top: none;
}

.accordion {
  margin-top: 2.5rem;
  margin-bottom: 0;
  border-top: 0.1rem solid rgba(var(--color-foreground), 0.08);
  border-bottom: 0.1rem solid rgba(var(--color-foreground), 0.08);
}

.accordion__title {
  display: inline-block;
  max-width: calc(100% - 6rem);
  min-height: 1.6rem;
  margin: 0;
  word-break: break-word;
}

.accordion .svg-wrapper {
  align-self: center;
  fill: rgb(var(--color-foreground));
  height: calc(var(--font-heading-scale) * 2rem);
  margin-right: calc(var(--font-heading-scale) * 1rem);
  width: calc(var(--font-heading-scale) * 2rem);
}

.accordion details[open] > summary .icon-caret {
  transform: rotate(180deg);
}

.accordion__content {
  margin-bottom: 1.5rem;
  word-break: break-word;
  overflow-x: auto;
  padding: 0 0.6rem;
}

.accordion__content img {
  max-width: 100%;
}
{%- comment -%}
Start Picto für Gefahren und Sicherheitshinweise
{%- endcomment -%}

.gs-pictos{
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 12px;
  align-items: start;
  margin-top: 12px;
}
.gs-picto{
  display: flex;
  justify-content: center;
  align-items: center;
}

.gs-picto img{
  width: 100%;
  max-width: 90px;
  height: auto;
  display: block;
}

@media (max-width: 990px){
  .gs-pictos{ grid-template-columns: repeat(3, minmax(0, 1fr)); }
}

@media (max-width: 600px){
  .gs-pictos{ grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .gs-picto img{ max-width: 80px; }
}
{%- comment -%}
End Picto für Gefahren und Sicherheitshinweise
{%- endcomment -%}