.video-overlay {
  position: fixed;
  z-index: 10002;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background-color: rgba(13, 24, 41, 0.6);
  pointer-events: none;
  opacity: 0;
  transition: opacity 250ms ease-out;
  padding: $gutter;
  display: flex;
  justify-content: center;
  align-items: center;

  &.js-show {
    pointer-events: all;
    opacity: 1;
  }

  &__content {
    position: relative;
    width: 100%;
    max-height: calc(100vh - 44px);
    max-width: 1400px;
  }

  &__iframe {
    padding-top: 56.5%;
    max-height: 100%;

    & > iframe {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

  &__close {
    position: absolute;
    top: 16px;
    right: 16px;
  }
}
