.product-manager__product-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}
@media (min-width: 768px) {
  .product-manager__product-list {
    grid-template-columns: repeat(2, 1fr);
  }
}
.product-manager__product-list .product-item {
  background-color: #eee;
  height: min-content;
}
.product-manager__product-list .product-item .product-item__header {
  background-color: #0057b8;
  color: #fff;
  padding: 5px 10px;
  display: flex;
  justify-content: space-between;
}
.product-manager__product-list .product-item .product-item__header .product-item__cart:hover {
  cursor: pointer;
}
.product-manager__product-list .product-item .product-item__header p {
  margin: 0;
}
.product-manager__product-list .product-item table {
  width: 100%;
}
.product-manager__product-list .product-item table tr {
  border-bottom: 1px solid #d3dade;
}
.product-manager__product-list .product-item table tr th {
  align-content: start;
}
.product-manager__product-list .product-item table tr th, .product-manager__product-list .product-item table tr td {
  padding: 10px;
}
.product-manager__product-list .product-item table td {
  text-align: right;
}
.product-manager__product-list .product-item table td p.application_hint {
  position: relative;
  margin-right: 10px;
}
.product-manager__product-list .product-item table td p.application_hint:after {
  content: "1";
  position: absolute;
  right: -10px;
  top: 0;
  font-size: 12px;
}
.product-manager__product-list .product-item .product-item__download {
  text-align: center;
  text-transform: uppercase;
  display: block;
  background-color: #8c8c8c;
  color: #fff;
  padding-block: 0.35rem;
}

.product__icon {
  height: 8px;
  width: 8px;
  display: inline-block;
  margin-bottom: 1px;
}
.product__icon.product__icon--water {
  background: #0087b5;
  border-radius: 100%;
}
.product__icon.product__icon--solvent {
  background: #be0015;
}
.product__icon.product__icon--solid {
  width: 0px;
  height: 0px;
  -webkit-transform: rotate(360deg);
  border-style: solid;
  border-width: 0 4px 6.9px 4px;
  border-color: transparent transparent #000000 transparent;
}

#product-manager__filter {
  width: 100%;
  display: flex;
  flex-direction: row;
  gap: 0.2rem;
  background-color: #f1f1f1;
  padding: 0.2rem;
  margin-bottom: 3rem;
}
#product-manager__filter .product-manager__filter-option {
  width: 100%;
  text-align: center;
  background-color: rgb(230, 234, 236);
  padding: 0.5rem 0.1rem;
  color: #000;
}
#product-manager__filter .product-manager__filter-option:hover, #product-manager__filter .product-manager__filter-option.active {
  background-color: #0057b8;
  color: #fff;
  cursor: pointer;
}

.product-manager__cart-items {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 2rem;
}
.product-manager__cart-items .product-manager__cart-item {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  background-color: #0057b8;
  color: #fff;
  padding: 0.25rem 0.5rem;
  gap: 0.5rem;
}
.product-manager__cart-items .product-manager__cart-item .cart-item__remove:hover {
  cursor: pointer;
}
.product-manager__cart-items .product-manager__cart-item p, .product-manager__cart-items .product-manager__cart-item span {
  margin: 0;
}

.icon {
  display: inline-block;
  background-size: contain;
  background-repeat: no-repeat;
}
.icon.icon-cart {
  width: 24px;
  height: 24px;
  background-image: url(../Icons/icon-cart.svg);
}
.icon.icon-x {
  width: 18px;
  height: 18px;
  background-image: url(../Icons/icon-x.svg);
}

/*# sourceMappingURL=Frontend.css.map */
