[aria-modal="true"] {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1000;
  background-color: rgba(0, 0, 0, 0.8);
}

@keyframes fade-in {
  from {opacity: 0;}
  to {opacity: 1;}
}

.dialog-content {
  background-color: #ffffff;
  padding: 0.8rem 1.6rem 2rem 1.6rem;
  max-height: 100%;
  width: 80%;
  max-width: 32rem;
  overflow: auto;
  border: 1px solid currentColor;
  animation: fade-in 200ms ease-in;
}

[data-hasmodal] {
  overflow: clip;
}

.centered-middle {
  position: fixed;
  top: 50%;
  bottom: auto;
  left: 50%;
  transform: translate(-50%, -50%);
}

.button-close {
  border: none;
  background: none;
  position: absolute;
  top: 0;
  right: 0.2rem;
  cursor: pointer;
  font-size: 2rem;
  line-height: 1;
  padding: 0.7rem;
  margin: 0;
}