@charset "utf-8";

html, body {
  overflow: hidden;
}

body {
  margin: 0;
  padding: 0;
}

.videoContainer {
  position: relative;
}

.videoContainer:before {
  content: '';
  display: block;
  padding: 56.25% 0 0;
}

.videoWrap {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.videoWrap iframe {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.videoWrap .video {
  width: 100%;
  height: 100%;
}

