/**
 * Media
 * - styles for media objects such as iframe, video, embedding codes etc.
 ============================================================================ */

 // Intrinsic Ratios for Video by THIERRY KOBLENTZ
 // http://alistapart.com/article/creating-intrinsic-ratios-for-video
 // See also: http://embedresponsively.com/
 // Wrap video iframes etc in a DIV container with the class "embed-container".
.embed-container {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  max-width: 100%;

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

