.clickable {
  cursor: pointer;
}

#video-container {
  position: fixed;
  display: none;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  padding: 24px;
  background: rgba( 0, 0, 0, 0.9 );
  color: #fff;
  font-size: 32px;
}

.overlay #video-container {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}

#video-container #close {
  position: fixed;
  right: 24px;
  line-height: 1;
  top: 16px;
  cursor: pointer;
  opacity: .5;
}

#video-container #close:hover {
  opacity: 1;
}

#video-container .embed-limiter {
  width: 100%;
  max-width: 1280px;
}

#video-container .embed-container {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  width: 100%;
}

#video-container .embed-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}