/*!
 * -------------------------------------------------------------------------------
 * 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;
  box-shadow: inset 0 0 0 1px #EAEAEA;
  border-radius: 4px;
  background-color: #ffffff;
  /* for 9370
  &:not(.oos):not(.byphone):hover {
      position: relative;

      .table-volume-pricing-container {
          display: block;
          position: absolute;
          top: calc(100% - 1px);
          left: 0;
          z-index: 10;
          box-shadow: 0 4px 16px 0 rgba(0, 0, 0, 0.24);
          border-bottom-left-radius: 4px;
          border-bottom-right-radius: 4px;
          padding-bottom: 12px;
          background: base.$white;
      }

  }*/
  /* Bulk Discount Table in PLP and PDP related products/accessories sections */
}
.product-card:hover {
  box-shadow: 0 4px 16px 0 rgba(0, 0, 0, 0.24);
}
.product-card .purchase-cta {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.product-card .quantity_input_block {
  display: flex;
  gap: 16px;
  align-items: center;
}
.product-card .quantity_input_block .btn.add {
  padding: 1px 15px;
  width: 144px;
  font-size: 1.125rem;
  white-space: nowrap;
  height: 40px;
}
.product-card .counter__button {
  height: 1.5rem;
  width: 1.5rem;
  background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none"><circle cx="12" cy="12" r="12" fill="%23F4F4F7"/><path d="M8.51562 12L16.2576 12" stroke="%23293343" stroke-width="1.54839" stroke-linecap="round" stroke-linejoin="round"/></svg>');
}
.product-card .counter__button-plus {
  background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none"><circle cx="12" cy="12" r="12" fill="%23F4F4F7"/><path d="M12.3906 9V15" stroke="%23293343" stroke-width="1.54839" stroke-linecap="round" stroke-linejoin="round"/><path d="M8.51562 12L16.2576 12" stroke="%23293343" stroke-width="1.54839" stroke-linecap="round" stroke-linejoin="round"/></svg>');
}
.product-card .counter__input {
  width: 87.5px;
  padding: 4px;
}
.product-card .qty-error-block {
  position: relative;
  height: 20px;
}
.product-card .qty-error, .product-card .shipping-info {
  position: absolute;
  top: 0px;
  left: 0px;
  height: 20px;
  width: 100%;
  background: #ffffff;
}
.product-card .qty-error {
  z-index: 1;
}
.product-card .shipping-info a {
  color: #555;
  font-size: 0.75rem;
  font-weight: 400;
  line-height: 120%;
  display: inline-flex;
  gap: 4px;
  align-items: center;
  height: 20px;
}
.product-card .table-volume-pricing {
  width: 100%;
}
.product-card .table-volume-pricing-container {
  width: 100%;
  /*display: none; for 9370*/
}
.product-card .table-volume-pricing th, .product-card .table-volume-pricing td {
  padding: 4px 0;
}
.product-card .table-volume-pricing th:first-of-type, .product-card .table-volume-pricing td:first-of-type {
  padding-left: 12px;
}
.product-card .table-volume-pricing th:last-of-type, .product-card .table-volume-pricing td:last-of-type {
  padding-right: 12px;
}
.product-card .table-volume-pricing th {
  font-size: 0.75rem;
  font-weight: 700;
  color: #293343;
  line-height: 120%;
  text-align: center;
  background-color: #F4F4F7;
}
.product-card .table-volume-pricing th:not(:first-of-type) {
  min-width: 65px;
}
.product-card .table-volume-pricing td {
  line-height: 120%;
  color: #333;
  font-size: 0.875rem;
  text-align: center;
}
.product-card .table-volume-pricing tr {
  border-top: 1px solid transparent;
  border-bottom: 1px solid transparent;
}
.product-card .table-volume-pricing tr:nth-child(2) td {
  height: 8px;
  padding: 0;
}
.product-card .table-volume-pricing tr.highlighted td {
  border-top: 1px solid #0680CD;
  border-bottom: 1px solid #0680CD;
  background: rgba(6, 128, 205, 0.12);
  color: #000;
}
.product-img {
  display: flex;
  height: 160px;
  padding: 0 10px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  align-self: stretch;
  margin-bottom: 8px;
}
.product-img-label {
  position: absolute;
  left: -18px;
  top: -15px;
}
.product-img img {
  width: 160px;
}
.product-description {
  display: flex;
  padding: 12px;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 8px;
  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: 576px) {
  .product-card {
    min-width: 246.5px;
    width: calc((100% - 12px) / 2);
  }
  .product-card .quantity_input_block {
    gap: 12px;
  }
  .product-card .quantity_input_block .btn.add {
    padding: 1px 12px;
    width: 110px;
    font-size: 1rem;
  }
  .product-card .counter__input {
    width: 55.5px;
  }
  .product-card .table-volume-pricing td {
    font-size: 0.75rem;
  }
  .product-description {
    gap: 16px;
  }
  .product-description .star_container {
    min-height: 20px;
    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;
    font-size: 1rem;
    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: 40.5px;
  }
  .product-price {
    font-size: 1.125rem;
  }
}
@media (min-width: 845px) {
  .product-card {
    width: calc((100% - 24px) / 3);
  }
}
@media (min-width: 1200px) {
  .product-card {
    min-width: 267px;
  }
  .product-card:not(.oos):not(.byphone):hover {
    /* for 9370
    position: initial;
    */
  }
  .product-card:not(.oos):not(.byphone):hover .table-volume-pricing-container {
    /* for 9370
    position: initial;
    box-shadow: none;
    border: none;
    padding: 0;
    z-index: unset;*/
    display: block;
  }
  .product-card:not(.oos):not(.byphone):hover .product-description > div:first-child, .product-card:not(.oos):not(.byphone):hover .product-price-container {
    display: none;
  }
  .product-card:not(.oos):not(.byphone):hover .select-container {
    display: block;
  }
  .product-card .quantity_input_block {
    gap: 16px;
  }
  .product-card .quantity_input_block .btn.add {
    width: 113px;
  }
  .product-card .counter__input {
    width: 58px;
  }
  .product-card .table-volume-pricing-container {
    display: none; /* remove this for 9370 */
    order: -1;
    margin: 0 -12px;
    width: calc(100% + 24px);
    height: 123.5px;
  }
  .product-card .select-container {
    display: none;
    margin-top: -65.2px;
    margin-bottom: 16px;
  }
  .product-title-link {
    height: 34px;
    font-size: 0.875rem;
  }
  .product-price-container {
    height: 37.5px;
  }
  .product-price {
    font-size: 1rem;
  }
}
@media (min-width: 1440px) {
  .product-card {
    width: calc((100% - 36px) / 4);
    min-width: 246.5px;
  }
  .product-card .quantity_input_block .btn.add {
    width: 103px;
  }
  .product-card .counter__input {
    width: 47.3px;
  }
}
@media (min-width: 1536px) {
  .product-card .quantity_input_block .btn.add {
    width: 111px;
  }
  .product-card .counter__input {
    width: 55.5px;
  }
  .product-card .table-volume-pricing-container {
    height: 126.5px;
  }
  .product-price-container {
    height: 40.5px;
  }
  .product-price {
    font-size: 1.125rem;
  }
}
@media (min-width: 1920px) {
  .product-card .quantity_input_block .btn.add {
    font-size: 1.125rem;
    width: 118px;
  }
  .product-card .counter__input {
    width: 62px;
  }
  .product-card .table-volume-pricing-container {
    height: 132.5px;
  }
  .product-card .table-volume-pricing th:not(:first-of-type) {
    min-width: 80px;
  }
  .product-title-link {
    height: 38px;
    font-size: 1rem;
  }
  .product-price-container {
    height: 42.5px;
  }
  .product-price {
    font-size: 1.25rem;
  }
}
.out-of-stock {
  color: #CF4055;
  font-size: 1rem;
  font-weight: 700;
  line-height: 120%;
  padding-top: 18.4px;
}

.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%;
}

@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;
  }
}

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