/* Shared */
.vlb-bg, .vimeo-lite {
  position: relative;
  width: 100%;
  overflow: hidden;
}

/* bg_video layout helpers */
.vlb-bg {
  /* You can set a fixed height or use container height */
  display: block;
  background: #000;
}

.vlb-bg .vlb-poster,
.vlb-bg .vlb-poster img {
  display: block;
  width: 100%;
  height: auto;
} 

.vlb-bg .vlb-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Lite Vimeo placeholder */
.vimeo-lite {
  background-color: #000;
  background-size: cover;
  background-position: center center;
  padding-top: 56.25%; /* 16:9 default placeholder ratio */
  cursor: pointer;
}

.vimeo-lite.vlb-bg-lite {
  /* For background-like blocks, allow author to size container via CSS */
  padding-top: 0;
  min-height: 300px;
}

.vimeo-lite .vlb-play {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  border: 0;
  border-radius: 50%;
  width: 68px;
  height: 68px;
  background: rgba(0,0,0,0.5);
  color: #fff;
  font: inherit;
  line-height: 1;
  text-indent: -9999px;
}

.vimeo-lite .vlb-play:before {
  content: '';
  position: absolute;
  left: 26px;
  top: 20px;
  width: 0;
  height: 0;
  border-left: 18px solid #fff;
  border-top: 12px solid transparent;
  border-bottom: 12px solid transparent;
}

.vimeo-lite-iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

/* Respect users that prefer reduced data (modern browsers) */
@media (prefers-reduced-data: reduce) {
  .vlb-bg .vlb-video { display: none; }
}
@media only screen and (max-width: 600px) {
.vlb-bg.fp1-bg {
  display: none;
}
}
