/*
@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;
}
*/
.lageplan-3d-container {
  --container-margin-left: 0;
  --container-margin-right: 0;
  width: 100%;
  max-width: 100%;
}

.lageplan-feld {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--linie-karte);
  aspect-ratio: 2.2/1;
  min-height: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--navy);
}
.lageplan-feld img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
  filter: brightness(0.55) saturate(0.7);
  transition: filter 0.5s var(--weich), transform 3s var(--weich);
}
.lageplan-feld:hover img {
  filter: brightness(0.7) saturate(0.85);
  transform: scale(1.02);
}
.lageplan-feld .lageplan-start {
  position: relative;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 26px;
  font-family: var(--sans);
  font-weight: 700;
  font-size: 15.5px;
  text-align: center;
  text-decoration: none;
  background: var(--blau);
  color: var(--weiss);
  border: 1px solid var(--blau);
  transition: background-color 0.3s var(--weich), border-color 0.3s var(--weich), transform 0.3s var(--weich);
}
.lageplan-feld .lageplan-start:hover {
  background: var(--blau-hell);
  border-color: var(--blau-hell);
  color: var(--weiss);
  transform: translateY(-2px);
}

.lageplan-rahmen {
  width: 100%;
  aspect-ratio: 16/9;
  min-height: 360px;
  display: block;
  border: 1px solid var(--linie-karte);
  box-sizing: border-box;
  background: var(--flaeche);
}

.lageplan-rahmen:fullscreen {
  border: 0;
  min-height: 0;
  aspect-ratio: auto;
}

@media (max-width: 900px) {
  .lageplan-feld {
    min-height: 220px;
  }
}

/*# sourceMappingURL=lageplan-3d.css.map*/