.link {
  color: inherit;
}

.link-hover {
  color: inherit;
  text-decoration: none;
}

.toggle-label {
  display: inline-block;
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;

  flex-shrink: 0;

  width: 1em;
  height: 1em;
  overflow: hidden;

  background-color: var(--color-white);
  border-radius: 100%;
}

.toggle {
  display: block;
  width: 0;
  height: 0;
  overflow: hidden;
  opacity: 0;
}

.toggle:checked+.toggle-label {
  display: none;
}

.toggle:not(:checked)+.toggle-label+.detail {
  display: none;
}

.address {
  font-style: normal;
}

.address .link-hover {
  display: inline-flex;
}

.address .link-hover>*:not(:last-child) {
  margin-right: 1ch;
}

.detail {
  flex: 1;
  overflow: auto;
  max-height: 100%;
}
