.film-modal {
  position: fixed;

  inset: 0;

  z-index: 999999;

    isolation: isolate;

  display: none;

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

  background: rgba(0,0,0,0.92);
  
}

.film-modal.active {
  display: flex;
}

.film-video {
  width: 90vw;

  max-width: 1200px;

  max-height: 90vh;

  display: block;

  background: black;
}

.film-close {
  position: absolute;

  top: 40px;
  right: 40px;

  border: none;

  background: none;

  color: white;

  font-size: 48px;

  cursor: pointer;
}