html {
    --shadow-soft: 0 8px 24px rgba(7, 17, 31, 0.08);
    --line: #dce5f3;
    --blue-dark: #0344ad;
    --color-neutral-200: #999999;
    --v-hcart: 32px;
}
.transition-all {
    transition-property: all;
    transition-timing-function: cubic-bezier(.4, 0, .2, 1);
    transition-duration: .15s;
}
.cart-layout, .checkout-layout {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
    align-items: start;
}
.cart-region {
    margin-bottom: 15px;
    position: relative;
    padding-bottom: 0;
}
.ffz {
    font-size: 13px;
    color: var(--color-neutral-200);
    font-weight: 400;
}
.pro-name {
    text-align: left;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    font-size: 16px;line-height:1.6;
    color: var(--primary-color);
}
.t-numvv {
    border-radius: calc((var(--radius-d)) * 2);
    overflow: hidden;
    border: 1px solid #ddd;
}
    .t-numvv .bt-numcart {
        color: #8c9196;
        border: none;
        background-color: #fff;
        font-weight: bold;
        height: var(--v-hcart);
        width: var(--v-hcart);
        font-size: 2em;
        padding: 0;
        border-radius: 0;
    }
    .t-numvv .d-table-cell:nth-child(2) {
        width: 100%;
    }
    .t-numvv .bt-numcart {
        color: #8c9196;
        border: none;
        background-color: #fff;
        font-weight: bold;
        height: var(--v-hcart);
        width: var(--v-hcart);
        font-size: 2em;
        padding: 0;
        border-radius: 0;
        line-height: var(--v-hcart);
    }
        .t-numvv .bt-numcart span{
            position:relative;
            top:-2px;
        }
        .edit-cartdd, #txtnumc {
            width: 100%;
            color: #333;
            text-align: center;
            border: none;
            font-size: 14px;
            height: var(--v-hcart);
        }
.summary-row, .summary-total {
    display: flex;
    justify-content: space-between;
    gap: 16px;
    padding: 14px 0;
    border-top: 1px solid var(--line);
}
.summary-total {
    align-items: center;
    color: var(--blue-dark);
    font-size: 1.18rem;
    font-weight: 900;
}
@media (max-width: 640px) {
    .cart-item {
        grid-template-columns: 86px 1fr;
    }
    .cart-item-actions {
        grid-column: 1 / -1;
        justify-items: stretch;
    }
}
.cart-left, .cart-right {
    padding: 0;
    bottom: 0;
    width: 0;
    position: fixed;
    top: 0;
    opacity: 0;
    z-index: -2;overflow:auto;
}
.cart-left {
    left: 0;
    background: rgba(0,0,0,.2);
}
    .cart-right{
        background:#fff;
        right:0;
    }
.cart-left.act, .cart-right.act {
    width: 60%;
    opacity: 1;
    padding: 20px;
    z-index: 99;
}
        .cart-right.act {
            width: 100%;
        }
@media (min-width:767px) {
    .cart-right.act {
        width: 40%;
    }
}
    .sanphammoinhatId-clsr {
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(0, 0, 0, .2);
        z-index: 2;
        border: none;
        outline: none;
    }
.tite-modal {
    font-weight: bold;
    font-size: 24px;
}
#shopcartCnt .closr {
    position: absolute;
    right: 10px;
    top: 50%;
    color: #333;
    border: 1px solid var(--color-neutral-100);
    width: 35px;
    height: 35px;
    font-size: var(--primary-font-size);
    border-radius: 50%;
    transform: translate(0, -50%);
}
.bt-ds {
    background: #fff;
    color: var(--primary-color);
    font-size: 1.6em;
    display: block;
    text-align: center;
    margin-top: 15px;
    width: 100%;
    border: none;
    background: none;
    padding: 12px 0;
    border-radius: 5px;
}
    .bt-ds.bt-ds-s {
        background-color: var(--primary-color);
        color: #fff;
        padding: 12px 15px;
    }
/*checkbill*/
.step-bt {
    padding: 15px 0;
}
    .step-bt a {
        font-size: 1.4em;
        align-items: center;
        color: #ccc;
        display: inline-flex;
    }
        .step-bt a:first-of-type {
            margin-left: 0;
        }
        .step-bt a.current, .step-bt a:hover {
            color: var(--primary-color);
        }
        .step-bt a .breadcrumb-step {
            background-color: #ccc;
            border-radius: 99px;
            color: #fff;
            display: inline-block;
            font-size: 1em;
            font-weight: bolder;
            height: 2em;
            line-height: 2em;
            margin: 0 .5em;
            position: relative;
            text-align: center;
            width: 2em;
        }
        .step-bt a.current .breadcrumb-step {
            background-color: var(--primary-color);
        }
    .step-bt .divider {
        margin: 0 .5em 0 1em;
        display: inline-flex;
        align-items: center;
    }
.title-cart {
    font-size: 18px;
    line-height: 1.1;
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 15px;
    text-transform: uppercase;
}
.shop-cart-ass {
    border: 2px solid var(--primary-color);
    position: sticky;
    top: 0;
}
    .shop-cart-ass .shop-cart-ass-body {
        padding: 2em;
    }