/* Minimal styles for the lite-youtube component */
.yt-lite {
  position: relative;
  display: block;
  width: 100%;
  height: 0;
  padding-bottom: 56.25%; /* 16:9 */
  background-color: #000;
  overflow: hidden;
  cursor: pointer;
}
.yt-lite-container,
.yt-lite-iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none; /* disable user interaction on the video */
}
.yt-lite-thumb {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.yt-lite-playbtn {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 68px;
  height: 48px;
  border: 0;
  border-radius: 14px;
  background-color: rgba(0,0,0,0.6);
  background-repeat: no-repeat;
  background-position: center;
  background-size: 30px 30px;
  cursor: pointer;
}
.yt-lite-playbtn::before {
  content: '';
  display: block;
  width: 0;
  height: 0;
  border-left: 18px solid #fff;
  border-top: 12px solid transparent;
  border-bottom: 12px solid transparent;
  margin-left: 26px;
}
.yt-lite.yt-lite-playing {
  cursor: default;
}
.yt-lite.yt-lite-autoload {
  cursor: default;
}
.yt-lite-autoload .yt-lite-playbtn { display: none; }