@import url('https://fonts.googleapis.com/css2?family=Quicksand:wght@300..700&display=swap');

body {
  max-width: 700px;
  margin: auto;
  padding: 10px;
  font-family: "Quicksand", sans-serif;
}

fieldset {
  border: 1px #4989ee solid;
  display: block;
  border-radius: 10px;
  margin-top: 10px;
  padding: 5px;
}

fieldset legend {
  font-weight: bold;
  margin-left: 5px;
}

#search_text {
  width: 100%;
}

#search_tags tag, #search_items item {
  display: inline-block;
  margin: 2px;
  padding: 5px 8px;
  background-color: #4989ee;
  border-radius: 10px;
}

#search_tags input, #search_items input {
  margin-right: 5px;
}

shop {
  display: none;
  border: 1px solid #4989ee;
  margin: 10px 0px;
  padding: 10px;
  border-radius: 10px;
}

shop.filtered {
  display: block;
}

shop > name {
  font-weight: bold;
}

shop tags {
  float: right;
  display: block;
}

shop tag {
  margin-left: 4px;
}

shop.expanded tag {
  border: solid 1px #4989ee;
  border-radius: 10px;
  padding: 2px 4px;
}

shop:not(.expanded) tag name {
  display: none;
}

shop tag name {
  margin-left: 4px;
}

shop:not(.expanded) iframe {
  display: none;
}

shop iframe {
  width: 100%;
  height: 300px;
  margin-top: 10px;
}

shop expand {
  display: block;
  text-align: center;
  margin-top: 10px;
  background-color: #4989ee;
  cursor: pointer;
}

shop expand::before {
  content: "▾";
}

shop.expanded expand::before {
  content: "▴";
}