.demo-video-popup {
  align-items: center;
  background-color: rgba(0, 94, 147, 0.25);
  display: none;
  height: 100%;
  justify-content: center;
  left: 0;
  opacity: 0;
  position: fixed;
  top: 0;
  visibility: hidden;
  width: 100%;
  z-index: 100000;
}

.demo-video-popup.is-open {
  display: flex;
  opacity: 1;
  visibility: visible;
}

.demo-video {
  aspect-ratio: 16 / 9;
  background-color: #ffffff;
  margin: 0 auto;
  max-width: 100%;
  padding: 1rem;
  position: relative;
  width: 100%;
}

.demo-video video {
  border-radius: 1.25rem;
  height: auto;
  width: 100%;
}

/* Prevent scroll when popup is open */

body.demo-video--open {
  overflow: hidden;
}

/* HubSpot Video */

.demo-video--hubspot {
  height: 0;
  opacity: 0;
  overflow: hidden;
  visibility: hidden;
  width: 0;
}

/* YouTube - Responsive iFrame */

#youtubePlayer {
  height: 0;
  padding-bottom: 56.25%; !important;
  position: relative;
}

#youtubePlayer > iframe {
  height: 100%;
  left: 0;
  margin: 0 auto;
  position: absolute;
  right: 0;
  top: 0;
  width: 100%;
}

@media (min-width: 1096px) {
  .demo-video {
    margin: 0 auto;
    width: 75%;
  }
}