/* Ограничиваем высоту фильтров */
.t-store_filter_options_wrap {
  max-height: 420px;
  overflow: hidden;
  position: relative;
}

/* Градиент снизу */
.t-store_filter_options_wrap::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 50px;
  background: linear-gradient(
    rgba(255,255,255,0),
    rgba(255,255,255,1)
  );
  pointer-events: none;
}

/* Раскрыто */
.t-store_filter_options_wrap.is-open {
  max-height: none;
}
.t-store_filter_options_wrap.is-open::after {
  display: none;
}

/* Кнопка */
.filters-toggle {
  margin-top: 12px;
  width: 100%;
  padding: 10px;
  background: #b71c2c;
  color: #fff;
  border: none;
  border-radius: 6px;
  cursor: pointer;
}