/* â”€â”€ Modal overlay â”€â”€ */
.modal {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.9);
  opacity: 0;
  transition: opacity 0.25s ease;
}

.modal[hidden] {
  display: none;
}

.modal--open {
  opacity: 1;
}

.modal__box {
  position: relative;
  width: 90vw;
  max-width: 960px;
  height: 90vh;
  overflow-y: auto;
  transition: transform 0.25s ease, opacity 0.25s ease;
  transform: translateY(12px);
  opacity: 0;
}

.modal--open .modal__box {
  transform: translateY(0);
  opacity: 1;
}

.modal__close {
  color: white;
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 2rem;
  height: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  background: none;
  border: none;
  padding: 0;
  line-height: 1;
  font-size: 5.5rem;
  z-index: 1;
}

.modal__close:focus-visible {
  outline: 2px solid currentColor;
  outline-offset: 2px;
}

.modal__box>hr {
  margin: 20px 0px;
  border: 1px solid #666
}

.dsgvo h4,
.dsgvo h5 {
  padding: 20px 0;
  font-size: 1.1em;
}

.dsgvo ul,
.dsgvo ul li {
  padding: 10px 10px;
}

.modal a {
  color: white;
}