.filter-button {
  display: flex;
  flex-direction: column;
  align-items: center;
  box-sizing: border-box;
  margin: 0 0 0 -15px;
  padding: 10px;
  border-radius: 0 10px 10px 0;
  background-color: #F4F4F4;
  cursor: pointer;
  align-self: flex-start;
  position: relative;
}

.filter-button svg {
  width: 20px;
}

.products-filters {
  display: none;
  left: -50%;
  /* flex: 0 0 50%; */
  width: 180px;
  margin: 0 0 0 -15px;
  border-radius: 0 10px 10px 0;
  /* transition: ease 0.4s; */
}

.products-filters-hide-img {
  display: block;
  width: 20px;
  height: 20px;
  fill: rgba(0, 0, 0, 0.2);
  position: absolute;
  top: 10px;
  right: 10px;
  cursor: pointer;
}

.products-list {
  margin: -10px -15px 0 0;
  transition: ease 0.4s;
}

.products-list a {
  flex: 44%;
  min-width: 150px;
  display: block;
  margin: 10px;
}

.product-card {
  max-width: none;
  width: unset;
  padding: 10px 10px;
  border-radius: 10px;
  margin: 0;
  height: 100%;
}

.product-card-img {
  width: unset;
  max-width: 100%;
  max-height: 150px;
  padding: 0 0.5em;
}

.product-card-name {
  font-size: 14px;
  margin: 10px 0 0 0;
}