.filter_gateware * {
  font-family: var(--e-global-typography-primary-font-family);
}

.filter_gateware .filters {
  display: block;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.filter_gateware fieldset {
  border: 0;
}

.filter_gateware fieldset label {
  margin-bottom: 5px;
}

.filter_gateware .results {
  text-align: center;
  display: none;
}

.filter_gateware .reset-filter {
  display: inline-flex;
  margin: 10px;
  padding: 8px 15px;
  background: var(--e-global-color-primary);
  color: white !important;
  font-weight: bold;
  font-family: var(--e-global-typography-primary-font-family);
  cursor: pointer;
  border-radius: 4px;
}
label.text-center {
    text-align: center !important;
    width: 100%;
        font-size: 30px;
}

@media screen and (max-width: 997px) {
  .filter_gateware .filters {
    grid-template-columns: 1fr;
  }
}