.product-list-container {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
}

.produst-list-component {
  width: 100%;
}

.product-list-item-container {
  width: 50%;
  padding: 0 7px;
  margin-bottom: 20px;
}

.product-item-image,
.product-item-add-to-cart {
  user-select: none;
  -webkit-user-select: none;
}

.product-list-item {
  width: 100%;
  padding: 5px;
  position: relative;
}

.product-item-image {
  width: 100%;
  text-align: center;
}

.product-item-image img {
  width: 100%;
}

.product-item-name,
.product-item-price,
.product-item-no-price {
  min-height: 40px;
  display: flex;
  justify-content: center;
  flex-direction: column;
}

.product-item-price h1 {
  font-size: 21px;
  font-weight: 700;
}

.product-item-price h2 {
  color: var(--light-text);
  font-size: 12px;
}

.product-item-unity {
  font-size: 70%;
  color: #888;
  font-weight: 500;
}

.product-item-name {
  margin: 7px 0 5px 0;
}

.product-item-name h1 {
  font-weight: 500;
  color: #666;
}

.product-item-no-price h3 {
  font-size: 16px;
  font-weight: 700;
}

.product-item-discount {
  position: absolute;
  top: 0;
  right: 0;
  pointer-events: none;
}

.product-item-discount h3 {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--secondary);
  color: #fff;
  font-size: 14px;
  font-weight: 600;
}

.product-item-add-to-cart {
  margin-top: 7px;
}

.add-to-cart-container {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  flex-direction: column;
}

.add-to-cart-form {
  flex: 1;
  display: flex;
  align-items: center;
  width: 100%;
  max-width: 120px;
  margin-bottom: 5px;
}

.product-item-add-to-cart .add-to-cart-form {
  max-width: 100%;
}

.product-item-add-to-cart .add-to-cart-btn {
  width: 100%;
}

.add-to-cart-form .display {
  flex: 1;
  border: 1px solid #ccc;
  height: 35px;
  margin: 0 5px;
  text-align: center;
  line-height: 35px;
  font-size: 16px;
  border-radius: 5px;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -ms-border-radius: 5px;
  -o-border-radius: 5px;
}

.add-to-cart-form .minus,
.add-to-cart-form .plus {
  cursor: pointer;
}

.product-item-add-to-cart .add-to-cart-form .minus,
.product-item-add-to-cart .add-to-cart-form .plus {
  width: 30%;
  height: 35px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.product-item-add-to-cart .add-to-cart-form .minus svg,
.product-item-add-to-cart .add-to-cart-form .plus svg {
  color: var(--primary);
}

.add-to-cart-btn {
  height: 45px;
  line-height: 45px;
  display: inline-block;
  padding: 0 7px;
  color: #fff;
  background-color: var(--green);
  border-radius: 5px;
  text-transform: uppercase;
  font-size: 12px;
  font-weight: 500;
  flex: 1;
}

.add-to-cart-buttons {
  display: flex;
  width: 100%;
}

.checkout-remove-product-btn {
  width: 40px;
  margin-right: 5px;
  border-radius: 5px;
  background: var(--red);
  color: #FFF;
}

.add-to-cart-variation {
  text-align: center;
}

.product-item-no-stock {
  padding: 10px;
  background-color: #eee;
}

.product-item-no-stock h3 {
  font-size: 10px;
  line-height: 12px;
  font-weight: 600;
  color: #999;
  display: flex;
  align-items: center;
}

.product-item-no-stock h3 svg {
  margin-right: 5px;
  width: 20px;
  height: 20px;
}

.product-item-no-stock h3 span {
  flex: 1;
}

.empty-product-list-content {
  padding: 80px 20px;
}

.empty-product-list-content h2 {
  text-align: center;
  font-weight: 600;
  color: #888;
  line-height: 18px;
  font-size: 16px;
  max-width: 300px;
  margin: 0 auto 10px auto;
}

.checkout-info-variation {
  display: inline-block;
  padding: 3px 5px;
  background-color: var(--light-text);
  color: #FFF;
  border-radius: 3px;
  font-size: 10px;
  margin-bottom: 5px;
}

.product-item-installment p {
  font-size: 14px;
  margin-top: 3px;
}
.product-item-installment p > b {
  color: var(--secondary);
}