/* LSZ Einsatzkarte */

/* Der Modultitel bleibt normal sichtbar */
.custom-wrapper h3, 
.custom-wrapper .card-header {
  position: relative;
  z-index: 10;
  margin-bottom: 8px !important;
}

/* Wir erstellen einen extra Container-Effekt nur für den Inhalt des Moduls */
.custom-wrapper .card-body,
.custom-wrapper > div:not(.card-header) {
  position: relative;
  overflow: hidden;
  height: 500px; /* Hier die gewünschte sichtbare Höhe des iFrames eintragen */
}

/* Das iFrame darin wird verschoben */
.custom-wrapper iframe {
  position: absolute;
  top: -107px; /* Die oberen 177px wegschneiden */
  left: 0;
  width: 100%;
  height: calc(100% + 107px); /* Höhe ausgleichen */
}