.videoplayer_youtube {
  width: var(--baseWidth);
  max-width: var(--maxWidth);
  margin: 0 auto;
}
.videoplayer_youtube .video_frame_outer {
  padding-top: 0;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  background: var(--backgroundColorLight);
}
@media (max-width: 450px) {
  .videoplayer_youtube .video_frame_outer {
    min-height: 220px;
  }
}
.videoplayer_youtube .video_frame_outer.no-bg-img {
  min-height: 0;
  background: transparent;
}
.videoplayer_youtube .video_frame_outer.no-bg-img .video_frame div.infotext_wrap .infotext {
  margin: 0 auto;
  width: 100%;
}
.videoplayer_youtube .video_frame {
  position: relative;
  width: 100%;
}
.videoplayer_youtube .video_frame iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}
.videoplayer_youtube .video_frame img {
  margin: 0 auto;
  display: block;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.videoplayer_youtube .video_frame div.infotext_wrap {
  display: flex;
  align-items: center;
  justify-content: center;
}
.videoplayer_youtube .video_frame div.infotext_wrap span.play_btn {
  position: absolute;
  top: 50%;
  left: 50%;
  display: block;
  width: 48px;
  height: 48px;
  background: url(../../img/play.svg) no-repeat center/100% auto;
  cursor: pointer;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}
.videoplayer_youtube .video_frame div.infotext_wrap .infotext {
  margin: 25px auto;
  width: 90%;
  max-width: 700px;
  overflow: auto;
  background-color: white;
  border-radius: 10px;
  padding: 30px;
  position: relative;
  top: 0;
  transition: opacity 0.2s ease-in-out, visibility 0.2s ease-in-out, top 0.2s ease-in-out;
  box-shadow: 0 5px 12px rgba(0, 0, 0, 0.25);
}
@media screen and (max-width: 768px) {
  .videoplayer_youtube .video_frame div.infotext_wrap .infotext {
    font-size: 14px;
  }
}
@media screen and (max-width: 450px) {
  .videoplayer_youtube .video_frame div.infotext_wrap .infotext {
    font-size: 13px;
    line-height: 125%;
  }
}
.videoplayer_youtube .video_frame div.infotext_wrap .infotext a.button {
  background: var(--mainColor) url("../../img/play.svg") no-repeat left 10px center/ auto calc(100% - 15px);
  padding-left: 50px;
}
.videoplayer_youtube .video_frame div.infotext_wrap .infotext a.button:hover {
  background-color: var(--mainColorDark);
}
@media screen and (max-width: 450px) {
  .videoplayer_youtube .video_frame div.infotext_wrap .infotext p + p {
    margin-top: 5px;
  }
}
.videoplayer_youtube .video_frame .yt_video {
  width: 100%;
  position: relative;
  padding-bottom: 56.25%;
  /* 16:9 */
  padding-top: 25px;
  height: 0;
}
.wp-block-columns .videoplayer_youtube, .px-frame-layout .videoplayer_youtube, .accordion-content .videoplayer_youtube, .tab_wrapper .videoplayer_youtube {
  width: 100%;
}
