.product_list_filters {
  display: flex;
  flex-wrap: wrap;
  padding: 0px 30px;
  margin-top: 30px;
  gap: 25px;
}
@media (max-width: 850px) {
  .product_list_filters {
    flex-direction: column;
  }
}
.product_list_filters .search_bar {
  background-color: #3E3D40;
  border-radius: 10px;
  height: 50px;
  display: flex;
  gap: 15px;
  align-items: center;
  padding: 0px 10px;
  width: -moz-fit-content;
  width: fit-content;
  max-width: 100%;
}
.product_list_filters .search_bar input {
  text-align: left;
  border-radius: 5px;
  width: 350px;
  height: 34px;
  background-color: #302F32;
  border: none;
  color: white;
}
.product_list_filters .search_bar i {
  font-size: 16px;
  color: #8c8c8c;
  margin-right: 5px;
}
.product_list_filters .filter_button {
  transition: border 0.2s ease, background-color 0.2s ease, color 0.2s ease;
  background-color: transparent;
  border-radius: 10px;
  height: 50px;
  display: flex;
  gap: 15px;
  align-items: center;
  padding: 0px 20px;
  width: -moz-fit-content;
  width: fit-content;
  color: #888888;
  cursor: pointer;
  border: 1px solid transparent;
}
.product_list_filters .filter_button.selected {
  background-color: #3E3D40;
  color: white;
}
.product_list_filters .filter_button:hover {
  border: 1px solid #2b2b2b;
  color: white;
}
.product_list_filters .filter_button:hover.selected {
  border: 1px solid transparent;
}

#product_cards_parent {
  width: -moz-fit-content;
  width: fit-content;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-content: center;
  gap: 20px;
  padding: 10px;
  padding-left: 0px;
  padding-right: 0px;
}
#product_cards_parent .product_card_directive {
  min-width: 360px;
  max-width: 480px;
  width: calc(25% - 20px);
  margin-bottom: 20px;
}
@media screen and (max-width: 1640px) {
  #product_cards_parent {
    justify-content: center;
  }
}
@media screen and (max-width: 1260px) {
  #product_cards_parent .product_card_directive {
    width: calc(33.33% - 20px);
  }
}
@media screen and (max-width: 880px) {
  #product_cards_parent .product_card_directive {
    width: calc(50% - 20px);
  }
}
@media screen and (max-width: 440px) {
  #product_cards_parent .product_card_directive {
    width: calc(100% - 20px);
  }
}/*# sourceMappingURL=hub_style.css.map */