/* === Neue Variablen === */
/* === Alte Variablen === */
.vocatium-video {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: stretch;
}
@media screen and (min-width: 900px) {
  .vocatium-video {
    flex-direction: row;
  }
}
.vocatium-video-teaser {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  width: 100%;
  padding: 1rem;
  background-color: #b5dbf1;
  color: #004177;
  border-radius: 0 0 0.25rem 0.25rem;
}
@media screen and (min-width: 900px) {
  .vocatium-video-teaser {
    width: 50%;
    padding: 1.5rem;
    border-radius: 0 0.5rem 0.5rem 0;
  }
}
.vocatium-video-teaser span {
  font-size: 1rem;
}
@media screen and (min-width: 900px) {
  .vocatium-video-teaser span {
    font-size: 1.5rem;
  }
}
.vocatium-video-teaser-subheader {
  font-weight: 400;
}
.vocatium-video-OptIn {
  width: 100%;
  aspect-ratio: 16/9;
  border-radius: 0.25rem 0.25rem 0 0;
}
@media screen and (min-width: 900px) {
  .vocatium-video-OptIn {
    border-radius: 0.5rem 0 0 0.5rem;
  }
}
.vocatium-video-playIcon {
  position: relative;
  width: 100%;
  height: 100%;
  background-size: 50px, 100%;
  background-position: center, center;
  background-repeat: no-repeat;
  cursor: pointer;
  z-index: 10;
  pointer-events: auto;
  border-radius: 0.25rem 0.25rem 0 0;
}
@media screen and (min-width: 900px) {
  .vocatium-video-playIcon {
    background-size: 75px, 100%;
    border-radius: 0.5rem 0 0 0.5rem;
  }
}

.datapolice {
  width: 100%;
  aspect-ratio: 16/9;
  display: flex;
  align-items: center;
  text-align: center;
  position: relative;
  color: #004177;
}
.datapolice .dsgvo-info {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background-color: #b5dbf1;
  height: 100%;
  border-radius: 0.25rem 0 0 0.25rem;
}
@media screen and (min-width: 900px) {
  .datapolice .dsgvo-info {
    border-radius: 0.5rem 0 0 0.5rem;
  }
}
@media screen and (max-width: 500px) {
  .datapolice p {
    font-size: 0.75rem;
    margin-bottom: 0.25rem;
  }
}
.datapolice .switch-opt-in {
  position: relative;
  display: inline-block;
  width: 3.75rem;
  height: 2.125rem;
}
.datapolice .switch-opt-in input {
  opacity: 0;
  width: 0;
  height: 0;
}
.datapolice .switch-opt-in.active input + .slider:before {
  transform: translateX(1.625rem);
}
.datapolice .switch-opt-in .slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #ffffff;
  transition: 0.4s;
}
.datapolice .switch-opt-in .slider:before {
  position: absolute;
  content: "";
  height: 1.625rem;
  width: 1.625rem;
  left: 0.25rem;
  bottom: 0.25rem;
  transition: 0.4s;
}
.datapolice .switch-opt-in .slider.round {
  border-radius: 2.125rem;
}
.datapolice .switch-opt-in .slider.round:before {
  border-radius: 50%;
  background-color: #e5007d;
}