/*
@include max($tablet) {
	height: 60px;
}
*/
/*
@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;
*/
body,
html {
  --button-border: 2px solid #e0e0e0;
  --button-font-family: var(--secondary-font);
  --button-color: var(--secondary-blue);
  --button-padding: 18px 40px;
  --button-border-radius: var(--border-radius);
  --button-font-size: 15px;
  --button-font-weight: 600;
  --button-background: white;
}
@media (max-width: 768px) {
  body,
html {
    --button-padding: 14px 30px;
  }
}
body .primary,
html .primary {
  --button-background: var(--gradient-3);
  --button-color: var(--white);
  --button-border: none;
}
body .button-container.text-container,
html .button-container.text-container {
  --button-padding: 0;
  --button-background: transparent;
  --button-border: none;
  --button-font-family: var(--primary-font);
  --button-font-weight: 500;
  --button-transition: color 0.5s;
}
body .button-container.text-container:hover,
html .button-container.text-container:hover {
  --button-color: #fff;
}