component-video {
  max-height: 100%;
}

component-video button,
component-video .hide-when-playing {
  z-index: 1;
  opacity: 1;
  visibility: visible;
  transition: opacity 150ms ease-in-out, visibility 150ms ease-in-out;
}

component-video[playing] button,
component-video[playing] .hide-when-playing {
  opacity: 0;
  visibility: hidden;
}

component-video[playing] video {
  cursor: pointer;
}
