.pvt-video-thumbnail {
  position: relative;
  padding-bottom: 56.25%;
  padding-top: 0px;
  height: 0;
  overflow: hidden;

  .pvt-video-thumbnail-overlay {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 10;
    background-color: rgba(0, 0, 0, 0);

    transition-duration: 500ms;
    @include transition-property("background-color");
    @include transition-timing-function("ease-in-out");

    display: flex;
    align-items: center;
    justify-content: center;

    &:hover {
      background-color: rgba(0, 0, 0, 0.4);
    }

    .video-icon {
      max-width: 85px;
      height: 85px;
    }
  }

  .pvt-video-thumbnail-src,
  iframe {
    display: none;
  }

  iframe,
  object,
  embed {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
  }
}
