/* Diese Styles sind nur im Frontend, nicht im Builder sichtbar*/
.service-detail-card-wrapper .service-detail-card {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--sd-transition-500);
}
.service-detail-card-wrapper .service-detail-card.active {
  opacity: 1;
  pointer-events: auto;
}
