#isis-popup {
  width: 100vw;
  height: 100vh;

  display: none;
  background-color: rgba(0, 0, 0, 0.5);

  #close-button {
    width: 50px;
    height: 50px;

    cursor: pointer;

    position: absolute;
    top: 170px;
    right: 200px;

    display: flex;
    align-items: center;
    justify-content: center;

    background-color: #FFF;
    border-radius: 50%;

    span {
      font-size: 20px;
      color: #333;
    }
  }
}

#isis-popup.open {
  display: block;

  position: fixed;
  top: 0;
  left: 0;
  z-index: 12;

  display: flex;
  align-items: center;
  justify-content: center;
}

#isis-popup .video-container {
  width: 400px;
  margin-top: 40px;
  
  video {
    height: 400px;
  }
}
