/*
@include max($tablet) {
	height: 60px;
}
*/
/*
Beispiel:
@include default_text_specs(
    $css-variable-prepend: "kc-teaser-title",
    $font-weight: 700,
    $line-height: 1,
    $text-align: "center"
);
*/
/*
Beispiel:
@include default_h1_specs(
    $css-variable-prepend: "",
    $font-weight: 700,
    $line-height: 1,
    $text-align: "center"
);
*/
/*
Beispiel:
@include default_h2_specs(
    $css-variable-prepend: "",
    $font-weight: 700,
    $line-height: 1,
    $text-align: "center"
);
*/
/*
Beispiel:
@include css_variable_prepend(
    $property: "font-size",
    $prepend-string: 'kc-teaser-title',
    $default-value: 20px
);
*/
/*
@extend %transition;
*/
/*
@extend %transition-timing;
*/
/*
@include max($tablet) {
	height: 60px;
}
*/
body,
html {
  --group-padding-top: 25px;
  --group-padding-bottom: var(--group-padding-top);
  --block-default-full-inner-padding-left: var(--global-padding);
  --block-default-full-inner-padding-right: var(--global-padding);
}
@media (min-width: 960px) {
  body,
html {
    --group-padding-top: 50px;
  }
}

.group-container .product-collection-container {
  --product-collection-wide-padding-left: 0;
  --product-collection-wide-padding-right: var(
  	--product-collection-wide-padding-left
  );
}
.group-container.with-icons-container {
  position: relative;
  overflow: hidden;
  --group-padding-top: 50px;
}
@media (min-width: 960px) {
  .group-container.with-icons-container {
    --group-padding-top: 100px;
  }
}
.group-container.with-icons-container:before {
  content: "";
  position: absolute;
  top: -1%;
  left: -1%;
  width: 101%;
  max-width: 920px;
  height: 101%;
  background-image: url(./img/background-icons.svg);
  background-position: bottom right;
  background-repeat: no-repeat;
  background-size: cover;
}
.group-container.with-icons-container .wp-block-group {
  position: relative;
  z-index: 10;
}