/*!
 * -------------------------------------------------------------------------------
 * Product card styling
 * In PLP, PDP
 * ------------------------------------------------------------------------------- 
*/
@font-face {
  font-family: "bodoni";
  src: url("/fonts/bodoni-72-book.ttf") format("truetype");
}
/*
 * Set up the keyframes to actually describe the begining and end states of 
 * the animation.  The browser will interpolate all the frames between these 
 * points.  Again, remember your vendor-specific prefixes for now!
 */
@-webkit-keyframes loadingRefresh {
  from {
    -webkit-transform: rotate(0deg);
  }
  to {
    -webkit-transform: rotate(180deg);
  }
}
@-moz-keyframes loadingRefresh {
  from {
    -moz-transform: rotate(0deg);
  }
  to {
    -moz-transform: rotate(180deg);
  }
}
@-o-keyframes loadingRefresh {
  from {
    -o-transform: rotate(0deg);
  }
  to {
    -o-transform: rotate(180deg);
  }
}
@keyframes loadingRefresh {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(180deg);
  }
}
/* Variables*/
/* Font Families*/
/* Font settings */
/* Color Palette*/
/* Shadows */
/* Max content width and paddings */
.product-card {
  display: flex;
  min-width: 327px;
  width: 100%;
  flex-direction: column;
  justify-content: flex-start;
  align-items: stretch;
  gap: 8px;
  background: #ffffff;
  position: relative;
}
.product-img {
  display: flex;
  min-height: 327px;
  padding: 10px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 10px;
  align-self: stretch;
  margin-bottom: 8px;
}
.product-img-label {
  position: absolute;
  left: -18px;
  top: -15px;
}
.product-img img {
  max-width: 100%;
}
.product-description {
  display: flex;
  padding: 10px 0px;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 16px;
  align-self: stretch;
}
.product-description .star_container {
  min-height: 0;
}
.product-description .star_container .group-stars {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-top: 16px;
}
.product-description .star_container .group-stars .on {
  width: 36px;
  height: 20px;
  background-repeat: no-repeat;
  background-size: 20px 20px;
}
.product-description .star_container .group-stars .ind_cnt {
  text-align: left;
  font-size: 0.875rem;
  color: #000;
  line-height: 120%;
  padding-left: 6px;
  margin: 0;
  padding-left: 6px !important;
}
.product-description .star_container .group-stars .ind_cnt_desc {
  text-transform: capitalize;
}
.product-title-link {
  color: #000;
  font-size: 1rem;
  font-weight: 700;
  line-height: 120%;
}
.product-price {
  color: #293343;
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 120%;
}
.product-price.reduced {
  color: #CF4055;
}
.product-price.original {
  color: #555;
  font-size: 1rem;
  font-weight: 400;
  text-decoration-line: line-through;
  margin-left: 8px;
}
.product-price-container {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.product-price-sublabel {
  color: #555;
  font-size: 0.75rem;
  line-height: 120%;
}

@media (min-width: 768px) {
  .product-card {
    min-width: 200px;
    width: calc((100% - 48px) / 2);
  }
  .product-img {
    min-height: 200px;
  }
  .product-description {
    padding: 8px;
  }
  .product-description .star_container {
    min-height: 25px;
    margin-top: 16px;
  }
  .product-description .star_container .group-stars {
    width: 100%;
    margin-top: 0;
  }
  .product-description .star_container .group-stars .on {
    width: 20px;
  }
  .product-description .star_container .group-stars .ind_cnt {
    width: auto;
  }
  .product-title-link {
    height: 38px;
    overflow: hidden;
    display: block;
    display: -webkit-box;
    -webkit-line-clamp: 2; /* Number of lines to show */
    -webkit-box-orient: vertical;
    /* Vendor prefix for Firefox */
    /* For modern browsers, the standard property is now widely supported */
    line-clamp: 2;
  }
  .product-title-link span {
    text-overflow: ellipsis;
  }
  .product-price-container {
    height: 42.5px;
  }
}
@media (min-width: 992px) {
  .product-card {
    min-width: 250px;
    width: calc((100% - 48px) / 3);
  }
  .product-img {
    min-height: 250px;
    padding: 8px;
  }
}
@media (min-width: 1920px) {
  .product-card {
    min-width: 364px;
  }
  .product-img {
    min-height: 364px;
  }
  .product-description {
    padding: 12px;
  }
}
.out-of-stock {
  color: #CF4055;
  font-size: 1rem;
  font-weight: 700;
  line-height: 120%;
}

.shipping-info a {
  color: #555;
  font-size: 0.75rem;
  font-weight: 400;
  line-height: 120%;
  display: inline-flex;
  gap: 4px;
  align-items: center;
}

@media (min-width: 768px) {
  .shipping-info {
    min-height: 21px;
  }
}
.add_msg_container {
  display: none;
}
.add_msg_container p {
  padding-left: 20px;
  background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="16" height="17" viewBox="0 0 16 17" fill="none"><path d="M13.3346 4.5L6.0013 11.8333L2.66797 8.5" stroke="%2300884A" stroke-linecap="round" stroke-linejoin="round"/></svg>');
  background-repeat: no-repeat;
  background-position: left center;
  margin-bottom: 8px;
  color: #293343;
  font-size: 0.875rem;
  font-weight: 700;
  line-height: 120%;
}

.purchase-cta {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.quantity_input_block {
  display: flex;
  gap: 8px;
  align-items: center;
}
.quantity_input_block .btn.add {
  font-size: 1.125rem;
  white-space: nowrap;
}

@media (min-width: 1200px) {
  .purchase-cta .btn-primary {
    font-size: 0.875rem;
    padding: 8px;
    height: auto;
  }
  .quantity_input_block .btn.add {
    font-size: 0.875rem;
    padding: 8px;
    height: auto;
  }
}
@media (min-width: 1400px) {
  .purchase-cta .btn-primary {
    font-size: 1rem;
    padding: 8px 12px;
    height: 40px;
  }
  .quantity_input_block .btn.add {
    font-size: 1rem;
    padding: 8px 12px;
    height: 40px;
  }
}
@media (min-width: 1920px) {
  .purchase-cta .btn-primary {
    font-size: 1.125rem;
    padding: 11px 15px;
  }
  .quantity_input_block .btn.add {
    font-size: 1.125rem;
    padding: 11px 15px;
  }
}
/* Bulk Discount Table */
.table-volume-pricing {
  width: 100%;
}
.table-volume-pricing th {
  font-size: 0.75rem;
  padding-bottom: 4px;
  font-weight: 700;
  color: #293343;
  line-height: 120%;
  text-align: center;
}
.table-volume-pricing th:not(:first-of-type) {
  min-width: 97px;
}
.table-volume-pricing td {
  padding: 4px 0px;
  font-size: 0.75rem;
  line-height: 120%;
  color: #333;
  font-size: 0.875rem;
  text-align: center;
}
.table-volume-pricing tr:last-child td {
  padding-bottom: 0;
}
.table-volume-pricing tr.highlighted {
  background: #F4F4F7;
}

@media (min-width: 1200px) {
  .table-volume-pricing th:not(:first-of-type) {
    min-width: 60px;
    padding-left: 4px;
    padding-right: 4px;
  }
}
@media (min-width: 1920px) {
  .table-volume-pricing th:not(:first-of-type) {
    min-width: 100px;
  }
}

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