@charset "UTF-8";
.video-player-container {
  position: relative;
  display: inline-block;
}
.video-player-container video {
  display: block;
  width: 100%; /* ensure it defines the container’s size */
  height: auto;
}
.video-player-container .play-pause-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 3rem;
  color: white;
  z-index: 4; /* above overlay */
  pointer-events: none; /* clicks pass through to overlay/video */
}
.video-player-container .video-click-layer {
  position: absolute;
  inset: 0;
  background: transparent;
  z-index: 3;
}

.has-background-media {
  position: relative;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
  overflow: hidden;
}
.has-background-media video, .has-background-media img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  z-index: 0;
}
.has-background-media .overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  z-index: 1;
}
.has-background-media .overlaid-content {
  position: relative;
  z-index: 2;
}/*# sourceMappingURL=medialibrary.css.map */