/** dd cart **/
.ph-nav {
    border-color: #fff;
}
.ph-nav button {
    border-radius: 10px 10px 0 0 !important;
}
.ph-table {
    margin-bottom: 20px;
    font-size: 1rem;
    line-height: 1.6;
    color: #141b30;
}
.ph-table tr {
    cursor: pointer;
    background-color: #fff;
}

.ph-table tr:hover {
    transition: all .3s;
    background: #ABFCE2;
}

.ph-table thead tr th {
    color: #fff;
    background: linear-gradient(#151F2B,#2D4460);
    text-align: center;
    padding: 0.5rem .5rem;
    white-space: nowrap;
    font-weight: 600;
}

.ph-table td {
    vertical-align: middle;
    font-weight: 500;
    font-size: 16px;
    color: #0F2851;
}

.ph-table .title,
.ph-table .dosage,
.ph-table .quantity {
    font-weight: 600;
    color: #0F2851;
}

.ph-table .title {
    font-size: 18px;
    line-height: 10px;
    text-transform: uppercase;
}

.ph-table .ph-product {
    white-space: nowrap;
    text-align: right;
}

.ph-table .dosage {
    line-height: 10px;
}

.ph-table .quantity {
    font-size: 16px;
    line-height: 10px;
}

.ph-table td.ph-per-pill {
    background: #F4FDCB;
    font-size: 16px;
    color: #0F2851;
    text-align: center;
}

.ph-table td.ph-price {
    text-align: center;
}

.ph-table td.ph-price .save {
    text-decoration: line-through;
    color: #d95448;
    display: block;
}

.ph-table td.ph-quantity div,
td.ch-quantity div {
    display: flex;
    justify-content: center;
    font-weight: 700;
    font-size: 16px;
    text-align: center;
}
td.ch-quantity div {
    width: fit-content;
}

.ph-table td.ph-quantity .decrease,
.ph-table td.ph-quantity .increase,
td.ch-quantity .decrease,
td.ch-quantity .increase {
    all: unset;
    background-color: unset;
    background-image: unset;
    background-position-x: unset;
    background-position-y: unset;
    background-repeat: unset;
    background-attachment: unset;
    background-clip: unset;
    background-origin: unset;
    background-size: unset;
    color: unset;
    cursor: unset;
    width: 38px;
    height: 38px;
}

.ph-table td.ph-quantity .decrease,
td.ch-quantity .decrease {
    background: #F4FDCB;
    color: #363636;
    cursor: pointer;
}

.ph-table td.ph-quantity .increase,
td.ch-quantity .increase {
    background: #069B6C;
    color: #ffffff;
    cursor: pointer;
}

.ph-table td.ph-quantity .count,
td.ch-quantity .count {
    padding: 6px 0;
    width: 50px;
    height: 38px;
    color: #0F2851;
    border-top: 1px solid #EBF0F5;
    border-bottom: 1px solid #EBF0F5;
    background: #ffffff;
    line-height: 1.6;
}

.ph-table td .package {
    direction: ltr;
    text-transform: uppercase;
    display: block;
    line-height: 10px;
    margin-bottom: 10px;
}

.ph-table td.ph-buy .btn {
    all: unset;
    display: flex;
    background: #F55B4A;
    color: #FFFFFF;
    font-weight: 600;
    border: none;
    text-transform: uppercase;
    font-size: 1rem;
    height: 100%;
    align-items: center;
    justify-content: center;
    line-height: unset;
    margin: 0 auto;
    width: 80px;
    padding: 2px 0 0;
    direction: ltr;
}
.ph-table td.ph-buy .btn .fa-shopping-cart {
    background-image: url(/img/price-table/cart_circle.svg);
    background-repeat: no-repeat;
    background-size: auto;
    background-position: center;
    width: 30px;
    height: 30px;
}
.ph-table td.ph-buy .text {
    padding: 5px 10px 5px 0;
    font-weight: 700;
    white-space: nowrap;
    position: relative;
    text-align: center;
}

.ph-table td.ph-buy .icon i  {
    display: block;
    background-image: url(/images/checkout/cart.svg);
    background-repeat: no-repeat;
    background-size: auto;
    background-position: center;
    width: 30px;
    height: 36px;
    z-index: 3;
}

.ph-table .discount-blue,
.ph-table .discount-green {
    display: flex;
    flex-direction: column;
    gap: 5px;
    font-weight: 700;
    font-size: 12px;
    line-height: 14px;
    white-space: nowrap;
    text-transform: none;
}

.ph-table .discount-green,
.ph-table .discount-blue {
    align-self: flex-start;
    max-width: 100%;
}

.ph-table .discount-green {
    display: block;
    float: none;
    width: fit-content;
    padding: 0 30px 0.1rem 2rem;
    background-repeat: no-repeat;
    background-size: 20px 100%;
    color: #F55B4A;
    font-size: .86rem;
    line-height: 1.5em;
    font-weight: 600;
    background-color: #fdc1c0;
    border-radius: 0;
    margin-bottom: .2rem;
    background-image: url(/img/price-table/present.svg);
    background-position: right;
}

.ph-table .discount-blue {
    display: block;
    width: fit-content;
    padding: 0 30px 0.1rem 2rem;
    background-image: url(/img/price-table/delivery.svg);
    background-repeat: no-repeat;
    background-size: 20px 100%;
    background-position: right;
    color: #151F2B;
    font-size: .86rem;
    line-height: 1.5em;
    font-weight: 600;
    background-color: #F4FDCB;
    border-radius: 0;
    float: none;
    margin-bottom: .2rem;
}
@media (max-width: 768px) {
    .ph-buy .btn {
        height: 30px;
        width: 38px;
        padding: .4rem 0 !important;
    }
    .ph-buy .btn .text {
        display: none;
    }
    .ph-table .ph-buy span::before,
    .ph-table .ph-buy span::after {
        position: unset;
    }
    .ph-quantity {
        display: none;
    }
    .ph-per-pill {
        display: none;
    }
}

@media (min-width: 660px) {
    .ph-table tr:hover td.ph-buy .icon::after,
    .ph-table tr:hover td.ph-buy .icon::before {
        background-color: #D6EBFC;
    }
}

.ph-cart-box {
    width: 72px;
    height: 72px;
    background: #069b6c url('/img/dd-icon-cart.svg') no-repeat center;
    position: fixed;
    right: 5%;
    bottom: 40px;
    cursor: pointer;
}

.ph-cart-box span {
    position: absolute;
    top: -10px;
    right: -10px;
    height: 28px;
    width: 28px;
    background-color: #e56155;
    color: #fff;
    font-weight: 500;
    border-radius: 50%;
    text-align: center;
    line-height: 1.7;
}

.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 1rem;
    background: #069b6c;
    color: #fff !important;
    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: 50px;
        height: 50px;
    }
}
.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%);
    }
}

.ch-item img.product-image {
    max-width: 18px;
    margin: 0 auto;
    padding-bottom: 3px;
}

.discount-price,
.discount-delivery {
    text-decoration: line-through;
    color: #f40036;
}

.discount_order_amount {
    text-decoration: line-through;
}

.checkout-container {
    background-color: #fff;
    padding: 1rem 1rem;
    min-height: 400px;
}

.checkout-container h4 {
    font-size: 1.5rem;
    color: #0D4EBA;
    font-weight: 600;
    margin-bottom: 1rem;
}

.checkout-container label {
    font-size: 1rem;
}
.payment-method-img {
    width: 60px;
    height: auto;
}
.label_payment {
    border: 1px solid #c8c8c8;
    border-radius: 5px;
    padding: 14px 20px;
    cursor: pointer;
}
.label_payment img {
    width: 100px;
}
.label_payment:hover {
    border-color: #aaa;
    background-color: #f6f6f6;
}
.label_payment.selected {
    border-color: #007bff;
    background-color: #fff;
}
.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 .input-group-text {
    border-radius: 0 .25rem .25rem 0;
    border: 0;
}
.checkout-container .remove-item {
    cursor: pointer;
}
.checkout-container .checkout-remove {
    display: inline-block;
    width: 20px;
    height: 20px;
    margin-bottom: -0.25rem;
    background: url('/img/remove.svg') left center no-repeat;
    background-size: contain;
}

.checkout-container input.shipping_method,
.checkout-container input.insurance {
    float: right;
    margin: 0 0 0 1rem;
}

.guarantee-block .form-check {
    text-align: right;
}

.insurance-block p {
    margin-bottom: 0;
    font-weight: 600;
}

.insurance {
    margin-top: .4rem;
}

.checkout-message {
    text-align: center;
    padding: 20px;
    background-color: #fff;
    border: 3px solid #3C9FDC;
    border-radius: 0.25rem;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    margin-bottom: 1rem;
}

.checkout-message .headline,
.checkout-message .text {
    text-align: left;
    line-height: 1.6;
    color: #0F2851;
    font-size: 1rem;
}
.checkout-container .table thead th {
    text-align: center;
}
.checkout-container .table thead th:first-child,
.checkout-container .table thead th:nth-child(2) {
    text-align: right;
}
.checkout-container .go-billing {
    background-color: #069B6C;
    color: #fff;
    width: 100%;
    border: 0;
    padding: .5rem 0 .6rem;
    font-weight: 600;
    text-transform: uppercase;
}

.checkout-container .go-billing:hover {
    background-color: #069B6C;
    color: hsl(202.5, 21.1%, 92.5%);
}

.checkout-container .input-group > .form-control {
    border-radius: 0;
}

.checkout-container .order_amount {
    font-weight: bold;
}
.apply-coupon {
    background-color: #293148 !important;
    color: #fff !important;
    line-height: 1.5 !important;
    border-radius: .2rem 0 0 .2rem !important;
}
.bonus {
    color: #323a50;
    font-size: 1.2rem;
    font-weight: bold;
}
.total {
    background: #F4FDCB;
    border: 0;
    position: relative;
    padding: .75rem 1.25rem;
    margin-bottom: 1rem;
    border-radius: .25rem;
}
.ch-remove {
    text-align: center;
}
.remove-item:hover {
    cursor: pointer;
}
.shipping-block {
    background-color: #e6f5ff;
    padding: 1rem;
    border-radius: 10px;
    margin-bottom: 1rem;
}
.additional-block {
    background-color: #FFF9EB;
    padding: 1rem;
    border-radius: 10px;
    margin-bottom: 1rem;
}
.payment-method {
    color: #0D4EBA;
    font-size: 1.2rem;
    font-weight: bold;
}
.checkout-container .payment-method .input-group-text {
    padding: 0 .5rem;
}
.checkout-container .payment-method .icon img {
    width: 50px;
}
iframe {
    display: none;
}
/** dd cart */