
.videoplayer {
  video {
    width: 100%;
  }

  iframe {
    width: 100%;
  }
}

.videoplayer--cover {
  width: 100%;
  height: 100%;
}

.videoplayer--cover > video,
.videoplayer--cover > iframe{
  aspect-ratio: unset !important;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.videoplayer--contain {
  // width: 100%;
  display: flex;
  justify-content: center;
  height: 100%;
}

.videoplayer--contain > video,
.videoplayer--contain > iframe{
  aspect-ratio: unset !important;
  // width: 100%;
  height: 100%;
  object-fit: contain;
}

