/**
  * overlay
  */
.overlay {
  display: none;
  position: fixed;
  inset:0 auto 0 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  background-color: rgba(0, 0, 0, 0.5);
}

/**
  * modalContent
  */
.modalContent {
  position: absolute;
  inset:0;
  max-width: 90%;
  max-height: 90%;
  margin: auto;
}

/**
  * is-active
  */
.is-active {
  overflow: hidden;
}