.video-embed {
  display: block;
  position: relative;
  max-width: 100%;
  width: 100%;
  height: 0;
  padding-bottom: 56.25%;
  background: #000;
  overflow: hidden;

  /* Display a shape when thumbnail swaps out for iframe */
  background-color: rgba(0,0,0, .75);
  box-shadow: inset 0 0 45px 10px rgba(0,0,0, .5);
}

.video-embed__iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 100;
  background: transparent;
}

.video-embed__img {
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  max-width: 100%;
  width: 100%;
  height: auto;
  border: none;
  cursor: pointer;
  transition: .4s all;
}

.video-embed__play {
  border: 0;
  width: 91px;
  height: 55px;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  background: url('../images/button-youtube.png') no-repeat;
  background-size: contain;
  cursor: pointer;
}

/* Hide play button until embed JS has executed. */
.video-embed--unprocessed .video-embed__play {
  display: none;
}
