.ph-table th {
  background: #46975F;
  color: #fff;
  font-weight: 700;
  text-transform: uppercase;
  font-size: 1rem;
  text-align: center;
  padding: 0.5rem .5rem;
  border-bottom: none;
  border-top: 2px solid #CB3F48;
}
.ph-table th.th-product {
  text-align: left;
  padding-left: 40px;
}
.ph-table td {
  color: #0E3655;
  font-weight: 600;
  vertical-align: middle;
  border-top: 1px solid #46975F;
  padding-top: .5rem;
  padding-bottom: .5rem;
  padding-right: .5rem;
  text-align: center;
}
.ph-table tr {
  background-color: #fff;
}
.ph-table tr:hover {
  background-color: #E3FBEB;
  transition: all .3s
}
.ph-table td.ph-product {
  text-align: left;
  max-width: 190px;
}
.ph-table td.ph-product .title {
  font-size: 18px;
  line-height: 1;
  text-transform: uppercase;
  white-space: nowrap;
}
.ph-table td.ph-product .package {
  white-space: nowrap;
}
.ph-table td.ph-product .dosage {
  line-height: 17px;
}
.ph-table td.ph-product .quantity {
  font-size: 16px;
  line-height: 26px;
}
.ph-table td.ph-product .discount {
  line-height: 1.2;
  width: fit-content;
  font-size: .8rem;
  display: flex;
  flex-direction: column;
  gap: 5px;
  font-weight: 700;
  white-space: nowrap;
  text-transform: none;
}
.ph-table td.ph-product .discount-orange {
  color: #EA7E00;
  border: 1px solid #EA7E00;
  padding-left: 2px;
  width: fit-content;
}
.ph-table td.ph-product .discount-orange span {
  color: #FFFFFF;
  background: #EA7E00;
  padding: 0 2px;
}
.ph-table td.ph-product .discount-green {
  color: #8FCC0E;
  border: 1px solid #8FCC0E;
  padding-left: 2px;
  width: fit-content;
}
.ph-table td.ph-product .discount-green span {
  color: #FFFFFF;
  background: #8FCC0E;
  padding: 0 2px;
}
.ph-table td.ph-price {
  background: #FEFBEE;
}
.ph-table .ph-price .save {
  text-decoration: line-through;
  color: #CB3F48;
  display: block;
}
.ph-quantity .decrease {
  all: unset;
  width: 38px;
  height: 38px;
  border-radius: 2px;
  background: #EBF0F5;
  color: #0E3655;
  cursor: pointer;
}
.ph-quantity .increase {
  all: unset;
  width: 38px;
  height: 38px;
  border-radius: 2px;
  background: #46975F;
  color: #ffffff;
  cursor: pointer;
}
.ph-quantity .count {
  display: inline-block;
  padding: 6px 0;
  width: 38px;
  height: 38px;
  color: #0E3655;
  border-top: 1px solid #EBF0F5;
  border-bottom: 1px solid #EBF0F5;
  background: #ffffff;
}
.ph-table .ph-buy {
  max-width: 150px;
}
.ph-buy .btn {
  all: unset;
  display: flex;
  background: #455361;
  color: #FFFFFF;
  font-weight: 600;
  border: none;
  text-transform: uppercase;
  font-size: 1rem;
  border-radius: 3px;
  height: 100%;
  align-items: center;
  line-height: unset;
  padding: 3px;
  margin: 0;
  width: 150px;
}
.ph-buy .btn {
  justify-content: center;
}
.ph-buy .btn .text {
  flex-grow: 1;
}
.ph-buy .btn .icon {
  flex: 0 0 34px;
  width: 34px;
  height: 34px;
  background-color: #46975F;
  border-radius: 2px;
}
.btn-buy-cart-icon {
  display: block;
  background-image: url(../img/cart.svg);
  background-repeat: no-repeat;
  background-size: auto;
  background-position: center;
  width: 34px;
  height: 34px;
}
.ph-cart-box {
  width: 72px;
  height: 72px;
  background: #ffc708 url('/images/dd-icon-cart.png') no-repeat center;
  position: fixed;
  right: 5%;
  bottom: 40px;
  border: 3px solid #455361;
  border-radius: 10px !important;
  cursor: pointer;
  background-size: 60px;
}

.ph-cart-box span {
  position: absolute;
  top: -10px;
  right: -10px;
  height: 28px;
  width: 28px;
  background-color: #ff4545;
  color: #fff;
  font-weight: bold;
  border-radius: 50%;
  text-align: center;
}
.ph-cart-msg {
  position: fixed;
  bottom: 40px;
  z-index: 999;
  right: calc(5% + 77px);
  height: 72px;
  width: calc(155px + 95 * (100vw - 320px) / 448);
  align-items: center;
  gap: 10px;
  padding: 5px;
  background: #ffffff;
  color: #455361 !important;
  border: 3px solid #455361;
  border-radius: 10px;
  opacity: 0;
  display: none;
  transition: opacity 0.3s ease 0s;
}
@media (min-width: 48rem) {
  .ph-cart-msg {
    width: 300px;
    gap: 15px;
  }
}
.ph-cart-msg .icon {
  width: calc(35px + 25 * (100vw - 320px) / 448);
}
.ph-cart-msg .icon img {
  width: 100%;
}
@media (min-width: 48rem) {
  .ph-cart-msg .icon {
    width: 60px;
    height: 60px;
    padding: 10px;
  }
}
.ph-cart-msg .text {
  font-size: calc(15px + 5 * (100vw - 320px) / 448);
  font-weight: 600;
}
.ph-cart-msg .text .arrow {
  font-weight: 500;
}
@media (min-width: 48rem) {
  .ph-cart-msg .text {
    font-size: 20px;
  }
}
.show-cart-msg {
  opacity: 1;
  display: flex;
  cursor: pointer;
  pointer-events: all;
  animation: show_pop 0.6s ease forwards;
}
@keyframes show_pop {
  0% {
    transform: translateY(100%);
  }
  40% {
    transform: translateY(-10%);
  }
  100% {
    transform: translateY(0%);
  }
}
@media (max-width: 767px) {
  .ph-quantity {
    display: none;
  }
}
@media (max-width: 660px) {
  .ph-per-pill {
    display: none;
  }
  .ph-buy .btn {
    width: fit-content;
  }
  .ph-buy .btn .text {
    display: none;
  }
  .ph-table .ph-buy {
    justify-content: center;
    display: flex;
  }
}

.checkout-table {
  border: 1px solid #46975F;
}
.checkout-table thead th {
  vertical-align: bottom;
  border-bottom: 1px solid #46975F;
}
.checkout-table th {
  padding: 0.75rem;
  vertical-align: top;
  border-top: 1px solid #46975F;
}
.checkout-table td {
  padding: 0.75rem;
  vertical-align: top;
  border-top: 1px solid #dee2e6;
}
.checkout-table .ch-item img.product-image {
  max-width: 18px;
  margin: 0 auto;
  padding-bottom: 3px;
}
.ch-quantity div {
  display: flex;
}
.ch-quantity .decrease {
  all: unset;
  width: 38px;
  height: 38px;
  border-radius: 2px;
  background: #EBF0F5;
  color: #0E3655;
  text-align: center;
}
.ch-quantity .decrease:hover,
.ch-quantity .increase:hover {
  cursor: pointer;
}
.ch-quantity .increase {
  all: unset;
  width: 38px;
  height: 38px;
  border-radius: 2px;
  background: #46975F;
  color: #ffffff;
  text-align: center;
}
.ch-quantity .count {
  display: inline-block;
  padding: 6px 0;
  width: 38px;
  height: 38px;
  color: #0E3655;
  border-top: 1px solid #EBF0F5;
  border-bottom: 1px solid #EBF0F5;
  background: #ffffff;
  text-align: center;
}
.ch-remove {
  text-align: center;
}
.ch-remove .remove-item:hover {
  cursor: pointer;
}
.shipping-block, .additional-service-block {
  background-color: #d6f6e4;
  padding: 1rem;
  border-radius: 0.3rem;
  margin-bottom: 1rem;
}
.apply-coupon {
  background-color: #46975f;
  border-color: #46975f;
  color:#fff;
}
.apply-coupon:hover {
  background-color: #317b48;
  border-color: #317b48;
  color:#fff;
}
.total {
  color: #fff;
  background: #46975f;
  border: 0;
  position: relative;
  padding: .75rem 1.25rem;
  margin-bottom: 1rem;
  border-radius: .25rem;
  text-transform: uppercase;
}
.checkout-container .go-billing {
  background-color: #46975f;
  color: #fff;
  width: 100%;
  border: 0;
  padding: 1rem 0;
}
.checkout-container .go-billing:hover {
  background-color: #30794a;
  color: #fff;
}
.checkout-container .input-group-text {
  border-radius: 0.2rem 0 0 0.2rem;
  border-right: 0;
}
.checkout-container .message {
  color: #67b030;
  padding: 1rem 0;
  border: 1px solid #f7fcf4;
  border-radius: 6px;
  background: #f7fcf4;
  margin-bottom: 1rem;
  margin-top: 1rem;
}
.checkout-container .payment-method-img {
  width: 60px;
  height: auto;
}
.checkout-container .label_payment {
  border: 1px solid #c8c8c8;
  border-radius: 5px;
  padding: 14px 20px;
  cursor: pointer;
}
.checkout-container .label_payment img {
  width: 100px;
}
.checkout-container .label_payment:hover {
  border-color: #aaa;
  background-color: #f6f6f6;
}
.checkout-container .label_payment.selected {
  border-color: #007bff;
  background-color: #fff;
}
.checkout-container .discount-price,
.checkout-container .discount-delivery {
  text-decoration: line-through;
  color: #f40036;
}
.checkout-container .discount_order_amount {
  text-decoration: line-through;
}
.checkout-container .checkout-remove {
  display: inline-block;
  width: 20px;
  height: 20px;
  margin-bottom: -0.25rem;
  background: url('/images/remove.svg') left center no-repeat;
  background-size: contain;
}