.videoContainer {
  position: relative;
  width: 100%;
}

.videoPlayer {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.videoPlayerOverlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  cursor: pointer;
}

.videoPlayerTextMousePointerOnHover {
  cursor: pointer;
  display:inline-block;
}

.videoContainer {
  --aspect-ratio: 1.77777777778; /* Default aspect ratio for 16:9 */
  padding-bottom: calc(1 / var(--aspect-ratio) * 100%);
}

