@charset "UTF-8";
.aufklappmenu {
  position: relative;
  min-height: 100px;
  cursor: pointer;
}
.aufklappmenu.video {
  margin: 0 auto;
}
.aufklappmenu .vid-holder {
  padding-top: 1rem;
  transition: height 0.35s ease-in-out;
  overflow: hidden;
  width: 100%;
  justify-content: space-around;
  padding-bottom: 1.5rem;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}
.aufklappmenu .vid-holder:not(.active) {
  display: none;
}
.aufklappmenu .vid-holder .ce_player {
  max-width: 350px;
}
.aufklappmenu .openBtn {
  height: 74px;
  width: 74px;
}
.aufklappmenu .openBtn:before {
  content: "";
  position: absolute;
  left: 50%;
  top: 0;
  height: 74px;
  width: 74px;
  text-align: center;
  transform: translate(-50%, 0);
  z-index: 0;
  background-image: url("../css/btn_.png");
  background-repeat: no-repeat;
  background-position: 58% 52%;
  background-size: 100%;
}
.aufklappmenu .openBtn:after {
  content: "Im Film erklärt";
  position: absolute;
  left: 50%;
  top: -25px;
  height: 74px;
  width: 174px;
  font-size: 1.5rem;
  text-align: center;
  color: #462212;
  border-radius: 50%;
  transform: translate(-50%, 0);
}

.overlay {
  position: fixed;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  background-color: rgba(153, 153, 153, 0.8);
  z-index: 999911199;
}

body.video-playing {
  overflow: hidden;
}

#videoPlayerDiv {
  position: fixed;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  max-width: 90vw;
  max-height: 90vh;
  aspect-ratio: 16/9;
  z-index: 9999999999;
  transition: all 0.5s ease-in-out;
  transform: translate(-50%, -50%) scale(0);
  transform-origin: center;
}
#videoPlayerDiv.active {
  transform: translate(-50%, -50%) scale(1);
}

#videoPlayerDiv video {
  max-width: 100%;
  max-height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

#closeButton {
  position: absolute;
  top: -20px;
  right: -20px;
  background-color: #E1B860;
  color: #000;
  cursor: pointer;
  padding: 1px;
  border-radius: 10px;
  text-align: center;
  height: 30px;
  width: 30px;
}
#closeButton p {
  font-weight: bold;
  color: #fff;
}

#mediathek .vid-holder {
  display: flex;
  flex-wrap: wrap;
}
#mediathek .vid-holder .ce_player {
  max-width: 350px;
}

@media screen and (min-width: 200px) {
  .mastercontent .mod_article.film {
    margin-bottom: 0px !important;
  }
}/*# sourceMappingURL=erklaervideos.css.map */