.modal {
  position: fixed;
  inset: 0;
  /* background: rgba(0,0,0,0.85); */
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}

.modal.hidden {
  display: none;
}

.modal__content {
  overflow-y: scroll;
  height: 100%;
  padding: 50px 30px;
  aspect-ratio: 16 / 9;
  background: transparent;
  position: relative;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  max-width: 100%;
  @media screen and (min-width: 1720px) {
    max-width: 1200px;
    overflow-y: unset;
    width: 90vw;
    padding: 0;
  }
}

.modal__iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

.modal__close {
  position: absolute;
  right: 12px;
  top: 12px;
  background: #00000060;
  color: #fff;
  border: 0;
  width: 36px;
  height: 36px;
  border-radius: 999px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}