/* dd-cart */
.ph-table {
    border-top: none rgb(224, 228, 244);
    margin-bottom: 20px;
    font-size: 1rem;
    line-height: 1.6;
    color: #141b30;
}

.ph-table tr {
    cursor: pointer;
    background-color: #fff;
}

.ph-table tr:hover td {
    background-color: #D6EBFC;
}

.ph-table thead tr th {
    background-color: #213a96;
    color: #fff;
    font-weight: 600;
    font-size: 1rem;
    text-align: center;
    padding-top: 0.4rem;
    padding-bottom: 0.4rem;
    white-space: nowrap;
    text-transform: uppercase;
}

.ph-table thead tr th {
    border-top: 0;
}

.ph-table td {
    vertical-align: middle;
    font-size: .9rem;
    color: #013466;
    font-weight: 400;
    text-transform: uppercase;
}

.ph-table .title {
    font-size: 1rem;
}

.ph-table .title {
    color: #013466;
    text-transform: uppercase;
    font-weight: 700;
}

.ph-table .dosage {
    color: #013466;
    text-transform: none;
    font-size: .7rem;
    font-weight: 600;
}

.ph-table .quantity {
    font-weight: 600;
    font-size: 1rem;
}

.ph-table td.ph-per-pill {
    background: #FFF8EA;
    font-size: 16px;
    color: #283050;
    text-align: center;
    width: 70px;
    font-weight: 600;
    white-space: nowrap;
}

.ph-table td.ph-price {
    width: 120px;
    text-align: center;
    color: #283050;
    font-weight: 600;
}

.ph-table td.ph-price .save {
    text-decoration: line-through;
    color: #F40050;
    font-size: .9rem;
    display: block;
}

.ph-table td.ph-quantity div,
td.ch-quantity div {
    display: flex;
    font-weight: 700;
    font-size: 16px;
    text-align: center;
    margin-top: .2rem;
}

.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: 34px;
    height: 34px;
}

.ph-table td.ph-quantity .decrease,
td.ch-quantity .decrease {
    background: #D8E5F1;
    color: #013466;
    cursor: pointer;
}

.ph-table td.ph-quantity .increase,
td.ch-quantity .increase {
    background: #213a96;
    cursor: pointer;
    color: #fff;
}

.ph-table td.ph-quantity .count,
td.ch-quantity .count {
    padding: 6px 0;
    width: 50px;
    height: 38px;
    color: #2B418A;
    border-top: 1px solid #EBF0F5;
    border-bottom: 1px solid #EBF0F5;
    background: #ffffff;
}
.ph-table td.ph-buy {
    text-align: center;
}
.ph-table td.ph-buy .btn {
    background-color: #f40050;
    text-transform: uppercase;
    font-size: 1rem;
    background-image: none;
    padding: 0.3rem 2rem 0.3rem;
    border-radius: 0;
    color: #fff !important;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    border: 0;
}
.ph-table .btn-buy-icon {
    display: inline-block;
    width: 18px;
    height: 18px;
    margin-bottom: -0.25rem;
    margin-right: 4px;
    background: url('/img/cart.svg') left center no-repeat;
    background-size: contain;
}
.ph-table .discount {
    display: flex;
    flex-direction: column;
    gap: 5px;
    font-weight: 700;
    font-size: 9px;
    line-height: 11px;
    white-space: nowrap;
    text-transform: none;
}
.ph-table .discount-red {
    align-self: flex-start;
    max-width: 100%;
    color: #F40050;
    border: 1px solid #F40050;
    line-height: 1;
    padding-bottom: .1rem;
}
.ph-table .discount-blue {
    align-self: flex-start;
    color: #213a96;
    border: 1px solid #213a96;
    line-height: 1;
    padding-bottom: .1rem;
}
.ph-table .discount-blue span {
    padding-left: 2px;
    margin-left: 2px;
    background-color: #213a96;
    color: #ffffff;
    line-height: 1;
    padding-bottom: .1rem;
}
.ph-table .discount-red span {
    padding-left: 2px;
    background-color: #F40050;
    color: #ffffff;
    line-height: 1;
    padding-bottom: .1rem;
}

.ph-table .discount-green {
    display: flex;
    flex-direction: column;
    gap: 5px;
    font-weight: 700;
    font-size: 9px;
    line-height: 14px;
    white-space: nowrap;
    text-transform: none;
}

.ph-table .discount-green {
    align-self: flex-start;
    max-width: 100%;
}

.ph-table .discount-green {
    color: #149024;
    background: #d7ecd9;
    border-radius: 4px;
    padding: 2px 4px;
    width: fit-content;
    font-size: 12px;
    margin-bottom: .1rem;
}
@media (max-width: 768px) {
    .ph-buy .btn {
        font-size: 0 !important;
        height: 30px;
        width: 38px;
        padding: .4rem 0 !important;
    }
    .ph-table .ph-buy span::before,
    .ph-table .ph-buy span::after {
        position: unset;
    }
    .ph-quantity {
        display: none;
    }
    .ph-per-pill {
        display: none;
    }
}
.ph-cart-box {
    width: 72px;
    height: 72px;
    background: #fff url('/img/dd-icon-cart.png') no-repeat center;
    position: fixed;
    right: 5%;
    bottom: 40px;
    border: 3px solid #cfcfcf;
    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;
    line-height: 1.8;
}

.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: #283050 !important;
    border: 2px solid #283050;
    border-radius: 4px;
    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;
    }
}
.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;
}
.gt-box .checkout {
    background-color: #e8edf0;
    padding: 2rem;
    min-height: 200px;
}
.gt-box .container h4 {
    text-transform: uppercase;
}
.checkout-container {
    padding: 1rem 1rem;
    min-height: 70vh;
}

.checkout-container h4 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.checkout-container label {
    font-size: 1rem;
    line-height: 1.8;
}
.checkout-container .shipping-block,
.checkout-container .guarantee-block {
    background-color: #D8E5F1;
    padding: 1rem;
    border-radius: 0.3rem;
    margin-bottom: 1rem;
}
.guarantee-block p {
    margin-bottom: 0;
    font-weight: 600;
    color: #013466;
}

.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: #2B418A;
    font-size: 1rem;
}

.checkout-container .go-billing {
    background-color: #f40050;
    color: #fff;
    width: 100%
}

.checkout-container .go-billing:hover {
    background-color: hsl(346.5, 92.3%, 35.9%);
    color: hsl(202.5, 21.1%, 92.5%);
}

.checkout-container .order_amount {
    font-weight: bold;
}
.apply-coupon {
    background-color: #f40050 !important;
    color: #fff !important;
    padding: .25rem .5rem !important;
    font-size: .875rem !important;
    line-height: 1.5 !important;
    border-radius: 0 .2rem 0.2rem 0 !important;
}
.total {
    color: #fff;
    background: #213a96;
    border: 0;
    position: relative;
    padding: .75rem 1.25rem;
    margin-bottom: 1rem;
    border-radius: .25rem;
    text-transform: uppercase;
}
#order-amount {
    font-weight: 700;
}
.go-billing, .go-billing:hover {
    background-color: #c62743;
    color: #fff;
    border: 0;
    width: 100%;
    text-transform: uppercase;
}
.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: rgba(255, 255, 255, 0.52);
}
.label_payment.selected {
    border-color: #007bff;
    background-color: #fff;
}
.checkout-container .message {
    color: #67b030;
    padding: 1rem 0;
    border: 1px solid #ced4da;
    border-radius: 6px;
    background: #f6f6f6;
    margin-bottom: 1rem;
    margin-top: 1rem;
}
.checkout-container .input-group-text {
    border-radius: .25rem 0 0 .25rem;
    border: 0;
}
.checkout-container .remove-item {
    cursor: pointer;
}
.sector_mein .section .table_price .class_table_link .nav-tabs {
    margin-bottom: 0 !important;
}
.ch-remove {
    text-align: center;
}
/* dd-cart */