link-list {
  display: block;
  justify-content: space-around;
  align-items: center;
  position: relative;
  background-color: gray;
  padding-left: 2px;
  min-width: -moz-fit-content;
  min-width: fit-content;
  min-height: -moz-fit-content;
  min-height: fit-content;
  height: 30px;
  border-bottom: 2px solid black;
}
link-list a {
  color: white;
  text-align: center;
  text-decoration: none;
}
link-list #main-link {
  white-space: nowrap;
  overflow: hidden;
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: -moz-fit-content;
  width: fit-content;
  min-height: 30px;
}
link-list #main-link a {
  margin-right: 50px;
}
link-list #sub-links {
  display: none;
  flex-direction: column;
  background-color: gray;
  position: absolute;
  top: 100%;
  right: 0;
  min-width: 100%;
  max-width: -moz-fit-content;
  max-width: fit-content;
  white-space: nowrap;
  overflow: hidden;
  border-top: 2px solid black;
  z-index: 1;
}
link-list #sub-links a {
  width: 100%;
  text-align: start;
  padding: 5px;
}
link-list #sub-links.open {
  display: flex;
}
link-list button {
  width: 30px;
  height: 30px;
  background-color: rgba(0, 0, 0, 0.1);
  color: white;
  border: none;
}

link-list.single button {
  display: none;
}/*# sourceMappingURL=link_list.css.map */