.morphext > .animated {
  display: inline-block;
}
dialog {
  position: absolute;
  left: 0;
  right: 0;
  height: -moz-fit-content;
  height: -webkit-fit-content;
  height: fit-content;
  margin: auto;
  border: solid;
  padding: 1em;
  background: #fff;
  color: #000;
  display: block;
  border-radius: 3px;
  z-index: 99999;
}
dialog:not([open]) {
  display: none;
}
dialog + .backdrop {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.3);
  z-index: 99999;
}
._dialog_overlay {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 99999;
}
dialog.fixed {
  position: fixed;
  top: 50%;
  transform: translate(0, -50%);
  z-index: 99999;
}
