dialog {
  position: fixed;
  width: 100vW;
  height: 100vH;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  opacity: 0;
  scale: 0.5;
  background-color: rgba(255, 255, 255, 0.95);
  overflow: auto;
  inset-block-start: disabled;
  inset-block-end: disabled;
  max-width: inherit;
  max-height: inherit;
  visibility: visible;
  margin-top: inherit;
  border-top-style: none;
  border-right-style: none;
  border-bottom-style: none;
  border-left-style: none;
  padding-top: 0em;
  color: inherit;
  -webkit-transition: all 0.5s ease-in-out;
  -moz-transition: all 0.5s ease-in-out;
  -o-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out; }
  dialog[open] {
    opacity: 1;
    scale: 1;
    -webkit-transition: all 0.5s ease-in-out;
    -moz-transition: all 0.5s ease-in-out;
    -o-transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out; }
  dialog:modal {
    inset-block-start: disabled;
    inset-block-end: disabled;
    -webkit-transition: all 0.5s ease-in-out;
    -moz-transition: all 0.5s ease-in-out;
    -o-transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out; }
  dialog a,
  dialog a:visited {
    font-weight: 600;
    text-decoration: underline; }
    dialog a:hover,
    dialog a:visited:hover {
      text-decoration: none; }
  dialog .distance {
    height: 80%;
    width: 80%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    align-content: center; }
    dialog .distance iframe {
      width: 100%;
      height: 100%; }

button.parken {
  background-color: var(--secondary);
  color: var(--zero);
  font-weight: 600;
  padding: 0.7em 1.1em;
  border-radius: 0px;
  border-style: none;
  border: 0px;
  font-size: 1rem;
  text-transform: uppercase;
  border-radius: 0px 10px 0px 10px;
  margin-top: 1em;
  margin-bottom: 1em; }
  button.parken:hover {
    opacity: 0.5; }

.close-x {
  display: block;
  position: fixed;
  top: 15px;
  left: 15px;
  height: 50px;
  width: 50px;
  cursor: pointer;
  background-color: inherit;
  font-weight: 600;
  padding: 0.7em 1.1em;
  border-radius: 0px;
  border-style: none;
  border: 0px;
  transform: rotate(0deg);
  transition: all 1s;
  transition-timing: ease-in-out;
  transform-origin: center; }
  .close-x span {
    background: var(--secondary);
    border: none;
    height: 3px;
    width: 100%;
    position: absolute;
    transform: translateY(0) translateX(-25px) rotate(0deg);
    transition: all .35s ease;
    cursor: pointer; }
    .close-x span.top {
      transform: translateY(0) translateX(-25px) rotate(45deg); }
    .close-x span.middle {
      opacity: 0; }
    .close-x span.bottom {
      transform: translateY(0) translateX(-25px) rotate(-45deg); }
  .close-x:hover {
    transform: rotate(360deg);
    transition: all 1s;
    transition-timing: ease-in-out;
    transform-origin: center; }
