#product-list #ajax {
  min-height: 60vh;
}

.filter {
  background: #F2F2F2;
}
.filter .filter-sorted {
  position: relative;
  z-index: 1;
  padding: 15px 0px;
}
.filter .filter-btn,
.filter .sort-btn {
  cursor: pointer;
  transition: 0.5s all;
}
.filter .filter-btn:hover,
.filter .sort-btn:hover {
  opacity: 0.8;
}
.filter .sorted-content.show,
.filter .filter-content.show {
  display: block;
}
.filter .sorted-content,
.filter .filter-content {
  display: none;
  background: #FFFFFF;
  position: absolute;
  z-index: 1;
  left: 0px;
  top: 100%;
  box-shadow: rgba(149, 157, 165, 0.2) 0 8px 24px;
  padding: 15px;
  border-radius: 5px;
  min-width: 300px;
}
.filter .sorted-content .btn-close,
.filter .filter-content .btn-close {
  position: absolute;
  right: 10px;
  top: 10px;
}
.filter .sorted-content .title,
.filter .filter-content .title {
  font-size: 1.1rem;
  font-weight: 800;
}
.filter .sorted-content .option,
.filter .filter-content .option {
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 5px;
}
.filter .sorted-content .option:active i.icon-box,
.filter .filter-content .option:active i.icon-box {
  box-shadow: inset 0px 0px 4px 1px rgba(0, 0, 0, 0.1);
}
.filter .sorted-content .option i.icon-box,
.filter .filter-content .option i.icon-box {
  display: inline-block;
  width: 20px;
  aspect-ratio: 1/1;
  border: 1px solid #d3d3d3;
  border-radius: 5px;
  padding: 1px;
}
.filter .sorted-content .option.active i.icon-box span,
.filter .filter-content .option.active i.icon-box span {
  display: block;
  width: 100%;
  height: 100%;
  border-radius: 4px;
  background: #000;
}
.filter .sorted-content .option:last-child,
.filter .filter-content .option:last-child {
  margin-bottom: 0px;
}

.filter-item {
  margin-bottom: 25px;
}
.filter-item .filter-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  text-transform: uppercase;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
}
.filter-item.filter-item-check-img .group-options {
  display: flex;
  flex-wrap: wrap;
}
.filter-item.filter-item-check-img .group-options .option {
  flex-direction: column;
  flex: 0 0 33.33%;
}
.filter-item.filter-item-check-img .group-options .option img {
  width: 50px;
  aspect-ratio: 1/1;
  margin: 0 auto;
  border-radius: 50%;
  border: 1px solid #FFF;
}
.filter-item.filter-item-check-img .group-options .option .title {
  display: block;
  font-size: 0.8rem;
  font-weight: 400;
}
.filter-item.filter-item-check-img .group-options .option.active img {
  border: 1px solid #000;
}

.category {
  list-style: none;
  margin: 0px;
  padding: 0px;
}
.category li {
  margin-bottom: 5px;
  padding-bottom: 5px;
  border-bottom: 1px solid #e5e5e5;
}
.category li a {
  color: #000;
  font-size: 18px;
  text-decoration: none;
}
.category li:last-child {
  border-bottom: none;
  margin-bottom: 0px;
  padding-bottom: 0px;
}

.product-item .product-img {
  width: 100%;
  aspect-ratio: 1/1;
  overflow: hidden;
}
.product-item .product-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.3s ease;
  transform: scale(0.98);
}
.product-item .product-info .product-title {
  font-size: 18px;
  text-align: center;
  margin-top: 10px;
}
.product-item .product-info .product-title a {
  color: #000;
  text-decoration: none;
}
.product-item .product-info .product-price {
  font-size: 16px;
  text-align: center;
  margin-top: 5px;
  font-weight: 800;
}
.product-item .product-info .product-price a {
  color: #000;
  text-decoration: none;
}
.product-item:hover .product-img img {
  transform: scale(1);
}

/*# sourceMappingURL=product-list.css.map */
