.\#video-player {
  display: block;
  overflow: hidden;
  border-radius: var(--glob-border-radius-base);
}
.\#video-player .plyr {
  height: var(--video-height);
  aspect-ratio: var(--video-ar);
  border-radius: inherit;
  margin-inline: auto;
  max-height: 90vh;
  position: relative;
}
@media (max-width: 991px) {
  .\#video-player .plyr {
    height: var(--video-mobile-height);
  }
}
.\#video-player .plyr__video-wrapper {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  height: auto;
  min-width: 100%;
  min-height: 100%;
}