.section-products-wrapper {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  justify-content: flex-start;
}

.products-filters {
  align-self: flex-start;
  border-radius: 38px;
  background-color: #F4F4F4;
  box-sizing: border-box;
  padding: 1.5em 1em;
  flex: 0 0 350px;
  position: relative;
}

.filter-button {
  display: none;
}

.products-filters-hide-img {
  display: none;
}

.products-filters-name {
  font-size: 22px;
  font-weight: 600;
  padding-bottom: 1em;
  border-bottom: 1px solid rgba(0, 0, 0, 0.25);
  text-align: center;
}

.products-filters-selected-filters-wrapper {
  padding: 0.3em 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.25);
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}

.products-filters-selected-filter {
  padding: 0.3em 0.6em;
  font-size: 16px;
  background-color: #c9c9c9;
  border-radius: 15px;
  margin: 0.3em;
  display: flex;
  flex-direction: row;
  align-items: center;
  cursor: pointer;
  transition: ease 0.4s;
}

.products-filters-selected-filter:hover {
  background-color: #c6c3c3;
}

.products-filters-selected-filter-x-img {
  width: 0.8em;
  height: 0.8em;
  fill: rgba(255, 0, 0, 0.6);
  margin-right: 0.1em;
}

.products-filters-category-name-of-filter {
  font-size: 20px;
  padding: 1em 0;
}

.product-filters-option-list {
  display: flex;
  flex-direction: column;
  font-size: 16px;
}

.product-filters-option {
  display: flex;
  flex-flow: row;
  align-items: center;
  margin: 0.2em 0;
}

.product-filters-option label {
  display: flex;
  align-items: center;
}

.product-filters-checkbox {
  width: 1.4em;
  height: 1.4em;
  margin-right: 0.7em;
}

.products-list {
  display: flex;
  flex-direction: row;
  align-items: stretch;
  flex-wrap: wrap;
  justify-content: center;
  margin: -0.5em 0 0 0.5em;
  width: 100%;
  transition: ease 0.4s;
}

.products-list a {
  display: contents;
}

.product-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  box-sizing: border-box;
  max-width: 15em;
  width: 100%;
  margin: 0.5em;
  padding: 0.4em;
  border-radius: 38px;
  background-color: #F4F4F4;
  /* word-wrap: anywhere; */
  overflow-wrap: anywhere;
  transition: ease 0.15s;
}

.product-card:hover {
  background-color: #E9FCFF;
  transform: scale(105%);
  box-shadow: 0px 7px 14px rgba(0, 0, 0, 0.25);
}

.product-card-img {
  /* width: 100%; */
  max-width: 100%;
  max-height: 170px;
  margin: auto 0;
  padding: 0 1.5em;
  box-sizing: border-box;
}

.product-card-name {
  font-size: 20px;
  text-align: center;
  text-transform: uppercase;
  padding: 0.4em 0 0 0;
}