/*
 * FitVids.
 *
 * Divi loaded jQuery FitVids, which injected this rule set and wrapped every
 * embedded player in `.fluid-width-video-wrapper`. Without it the iframe keeps
 * the height attribute the oEmbed provider set — 608px against a 676px column
 * on the one post that has a video, which is 227px taller than WordPress ever
 * showed and pushes everything below it down the page.
 *
 * The wrapper is written into the markup at conversion time, so the aspect
 * ratio is right on the first paint instead of after a script runs.
 */
.fluid-width-video-wrapper {
  width: 100%;
  position: relative;
  padding: 0;
}

.fluid-width-video-wrapper iframe,
.fluid-width-video-wrapper object,
.fluid-width-video-wrapper embed {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
