.vehica-filter-heading {
  grid-column: 1 / -1;
  flex: 0 0 100%;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 24px 0 8px;
  padding-bottom: 6px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.15);
  font-size: 16px;
  font-weight: 700;
  line-height: 1.3;
  cursor: pointer;
  user-select: none;
}
.vehica-filter-heading:first-child {
  margin-top: 0;
}
.vehica-filter-heading::after {
  content: "";
  width: 8px;
  height: 8px;
  margin-right: 4px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg);
  transition: transform 0.2s;
}
.vehica-filter-heading.is-closed::after {
  transform: rotate(-45deg);
}
.vehica-filter-heading:focus-visible {
  outline: 2px solid currentColor;
  outline-offset: 2px;
}
[data-vfh-more] {
  display: none !important;
}
