.video-component {
  position: relative; }
  .video-component video {
    width: 100%;
    border-radius: 10px;
    position: relative; }
  .video-component .play-btn {
    position: absolute;
    z-index: 2;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    background-color: #04939e;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer; }
    .video-component .play-btn:after {
      content: '';
      width: 0;
      height: 0;
      border-top: 20px solid transparent;
      border-bottom: 20px solid transparent;
      border-left: 26px solid white;
      transform: translateX(5px); }
  .video-component.playing .play-btn {
    display: none; }
