.h5p-leitbild-container {
  background: #fff;
  overflow: hidden;
}

.h5p-leitbild {
  box-sizing: border-box;
  margin: 0 auto;
  max-width: 1000px;
  width: 100%;
}

.h5p-leitbild *,
.h5p-leitbild *::before,
.h5p-leitbild *::after {
  box-sizing: border-box;
}

.h5p-leitbild__stage {
  line-height: 0;
  overflow: hidden;
  position: relative;
  width: 100%;
}

.h5p-leitbild__background,
.h5p-leitbild__info-image {
  display: block;
  height: auto;
  max-width: none;
  user-select: none;
  width: 100%;
}

.h5p-leitbild .h5p-leitbild__hotspot {
  appearance: none;
  background-color: rgba(255, 255, 255, 0) !important;
  background-image: none !important;
  border: 0 !important;
  border-radius: 0 !important;
  box-shadow: none !important;
  clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
  color: transparent !important;
  cursor: pointer;
  margin: 0;
  min-height: 0;
  min-width: 0;
  padding: 0;
  position: absolute;
  transform: translateY(0) scale(1);
  transform-origin: center center;
  transition: filter 150ms ease, transform 150ms cubic-bezier(0.2, 0.75, 0.25, 1);
  z-index: 2;
}

.h5p-leitbild .h5p-leitbild__hotspot:hover {
  background-color: rgba(255, 255, 255, 0) !important;
  background-image: none !important;
  border: 0 !important;
  box-shadow: none !important;
  filter: none;
  transform: translateY(2.2%) scale(0.988);
}

.h5p-leitbild .h5p-leitbild__hotspot:active {
  background-color: rgba(255, 255, 255, 0) !important;
  background-image: none !important;
  border: 0 !important;
  box-shadow: none !important;
  transform: translateY(3.1%) scale(0.978);
}

.h5p-leitbild .h5p-leitbild__hotspot:focus {
  background-color: rgba(255, 255, 255, 0) !important;
  background-image: none !important;
  border: 0 !important;
  box-shadow: none !important;
  outline: none !important;
}

.h5p-leitbild .h5p-leitbild__hotspot:focus-visible {
  background-color: rgba(255, 255, 255, 0) !important;
  background-image: none !important;
  border: 0 !important;
  box-shadow: none !important;
  filter: drop-shadow(0 0 5px #0b39d8) drop-shadow(0 0 2px #fff);
}

.h5p-leitbild__hotspot-visual {
  background-repeat: no-repeat;
  inset: 0;
  opacity: 0;
  pointer-events: none;
  position: absolute;
  transition: opacity 70ms ease;
}

.h5p-leitbild__hotspot-visual::after {
  box-shadow: inset 0 7px 10px rgba(0, 24, 99, 0.16), inset 0 -2px 3px rgba(255, 255, 255, 0.14);
  content: '';
  inset: 0;
  pointer-events: none;
  position: absolute;
}

.h5p-leitbild .h5p-leitbild__hotspot:hover .h5p-leitbild__hotspot-visual,
.h5p-leitbild .h5p-leitbild__hotspot:active .h5p-leitbild__hotspot-visual {
  opacity: 1;
}

.h5p-leitbild__overlay {
  align-items: center;
  background: rgba(0, 24, 99, 0.58);
  display: flex;
  inset: 0;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  position: absolute;
  transition: opacity 210ms ease;
  visibility: hidden;
  z-index: 10;
}

.h5p-leitbild__overlay--visible {
  opacity: 1;
  pointer-events: auto;
  visibility: visible;
}

.h5p-leitbild__dialog {
  line-height: normal;
  max-height: 100%;
  max-width: 100%;
  position: relative;
  transform: scale(0.965) translateY(0.7%);
  transition: transform 240ms cubic-bezier(0.2, 0.8, 0.2, 1);
  width: 100%;
}

.h5p-leitbild__overlay--visible .h5p-leitbild__dialog {
  transform: scale(1) translateY(0);
}

.h5p-leitbild__close {
  align-items: center;
  appearance: none;
  background: #fff;
  border: 3px solid #0b39d8;
  border-radius: 50%;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.24);
  color: #06247d;
  cursor: pointer;
  display: flex;
  font: 700 clamp(24px, 4vw, 44px)/1 Arial, sans-serif;
  height: clamp(42px, 7vw, 68px);
  justify-content: center;
  margin: 0;
  padding: 0 0 0.08em;
  position: absolute;
  right: clamp(12px, 2.6%, 28px);
  top: clamp(12px, 2.2%, 28px);
  transition: background-color 140ms ease, color 140ms ease, transform 140ms ease;
  width: clamp(42px, 7vw, 68px);
  z-index: 12;
}

.h5p-leitbild__close:hover {
  background: #0b39d8;
  color: #fff;
  transform: scale(1.06);
}

.h5p-leitbild__close:focus-visible {
  outline: 4px solid #ffb348;
  outline-offset: 3px;
}

.h5p-leitbild__sr-only {
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  white-space: nowrap;
  width: 1px;
}

@media (prefers-reduced-motion: reduce) {
  .h5p-leitbild__hotspot,
  .h5p-leitbild__overlay,
  .h5p-leitbild__dialog,
  .h5p-leitbild__close {
    transition-duration: 0.01ms !important;
  }
}

