﻿.filters input[type="radio"] + label.button::before {
  content: none;
}
.filters input[type="radio"] + label.button {
  background: none;
  color: var(--text-color);
  width: auto;
  height: auto;
  position: static;
  margin: 0;
  white-space: nowrap;
  padding: 0.5em 1em !important;
}
.filters input[type="radio"]:hover + label.button {
  background: var(--background-off-color);
}
.filters input[type="radio"]:checked + label.button {
  background: var(--text-color) !important;
  color: var(--background-color);
}
.filters,
.subnav {
  list-style: none;
  padding-bottom: 1em;
  display: flex;
  align-items: center;
  overflow-x: scroll;
  max-width: var(--max-width);
}
.filters li,
.subnav li {
  margin-right: 0.25em;
}

.search ~ .button {
  margin-left: 0.5em;
}
.filters input.search {
  background-color: var(--background-off-color);
  background-image: url("/download/834487668900364288/834487668900364289/search-line.svg");
  background-repeat: no-repeat;
  background-size: 1.2em;
  background-position: calc(100% - 0.75em) 0.5em;
  padding: 0.5em 0 0.5em 1em !important;
  width: 2.75em;
  transition: width 0.25s;
  margin: 0 0.5em 0 0;
}
input.search:focus /*,
input:not(:placeholder-shown)*/ {
  width: min(80vw, 25em) !important;
  outline: none !important;
}
