/** Shopify CDN: Minification failed

Line 47:0 Unexpected "}"
Line 57:0 Unexpected "}"

**/
.product-card-features {
  display: flex;
  flex-direction: column;
  list-style: none;
  margin: 5px 10px 5px 0;
  padding: 5px 8px 5px 5px;
  background-color: var(--color-footer-bg, #f6f6f6);
  border-radius: 8px;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 0;
  overflow: visible;
  width: fit-content;
}
.product-card-features .trust-bar__item {
  display: flex;
  align-items: center;
  gap: 5px;
  margin: 0;
}
.product-card-features .trust-bar__item:not(:last-child) {
  margin-bottom: 4px;
}
.product-card-features .trust-bar__item::after {
  display: none;
}
/* MOBILE PHONE VIEW */
@media only screen and (max-width: 767px) {
  .product-card-features {
    overflow: visible;
  }
  .product-card-features .trust-bar__icon {
  width: 16px;
  height: 16px;
}
  .product-card-features .trust-bar__item {
  font-size: 12px;
  
}
  }
}

/* Visibility helpers */
[data-layout=list] .hide-on-list {
  display: none;
}

[data-layout=grid] .hide-on-grid {
  display: none;
}
}