/* ------------------------------------ */
.btn.disabled,
.btn:disabled {
    cursor: not-allowed;
    pointer-events: none;
}


/* ------------------------------------ */
.cart-main.empty {
    height: 50vh;
}
.cart-main.success {
    display: flex;
    align-items: center;
    justify-content: center;
}
.cart-main * {
    font-size: 0.81rem;
    /* background-color: #ccc5; */
    /* box-sizing: border-box; */
}
.cart-main .btn {
    line-height: 1;
}
.cart-main .form-group {
    margin-bottom: unset;
}
.cart-main .form-control {
    border-radius: 0;
    height: calc(1.5em + 0.75rem + 8px);
    height: 40px;
}
.cart-main .form-control:focus {
    -webkit-box-shadow: unset;
    box-shadow: unset;
    border-color: var(--c-01);
}
.cart-main input[type=number]::-webkit-outer-spin-button, 
.cart-main input[type=number]::-webkit-inner-spin-button {
    -webkit-appearance: none;
}
.cart-main textarea {
    resize: vertical;
    field-sizing: content;
    min-height: calc(14px + 19.4px * 3) !important;
}
@media (max-width: 768px) {
    .cart-main.empty {
        height: 60vh;
    }
}

/* ------------------------------------ */
/* 購物車(佈局) */
.cart-col {
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, 11fr) minmax(0, 5fr);
    gap: 20px;
}
.cart-col .cart-col-1 {

}
.cart-col .cart-col-2 {
    position: sticky;
    top: calc(70px + 50px + 20px);
}
@media (max-width: 992px) {
    .cart-col {
        display: flex;
        flex-direction: column;
        gap: 20px;
    }
}


/* ------------------------------------ */
/* 購物車 */
.cart-list {
    padding: 30px 0 50px;
    min-height: 65vh;
}
.price::before { content: '¥'; }
.price.sub::before { content: '-¥'; }
.en .price::before { content: 'US $'; }
.en .price.sub::before { content: 'US -$'; }
.price-total {
    font-size: 1.8rem;
    color: var(--c-01);
    font-weight: 600;
}
.price-subtotal {
    font-size: 1.4rem;
    font-weight: 600;
}
.cart-shopping-header,
.cart-shopping-item,
/* .cart-summary, */
/* .cart-form-block, */
.cart-form-block.step-2-submit-area,
.cart-summary-block
 {
    /* box-shadow: 0 0 7px 3px #5551; */
    /* border: 1px solid #ddda; */
    border: 1px solid #c3c3c366;
}



/* ------------------------------------ */
/* .cart-shopping */
.cart-shopping {
    border-radius: 10px;
}
.cart-shopping-header,
.cart-shopping-item,
.cart-summary {
    /* box-shadow: 0 0 7px 3px #5551; */
    /* border: 1px solid #ddd8; */
}
.cart-shopping-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 15px;
    /* border-bottom: 1px solid #eee; */
    background-color: #ffffff;
    border-top-left-radius: 5px;
    border-top-right-radius: 5px;
}
.cart-shopping-header-1 {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.2rem;
    line-height: 1;
}
.cart-shopping-header-1 .form-group {
    display: flex;
    align-items: center;
    gap: 5px;
}
.cart-shopping-header-2 {
    
}
.cart-shopping-body {
    /* padding-left: 0px; */
    /* padding-right: 0px; */
}
.cart-shopping-item {
    /* padding-top: 10px; */
    margin-top: 8px;
    background-color: #ffffff;
    padding: 1px;
}
.cart-shopping-item * {
    /* font-size: 0.81rem; */
}
.cart-shopping-item.active {
    border: 2px solid var(--c-01);
    padding: 0;
}
.cart-shopping-item + .cart-shopping-item {

}
.shopping-item-col {
    display: grid;
    grid-template-columns: minmax(0, 20px) minmax(0, 100px) minmax(0, 1fr);
    line-height: 1.2;
    gap: 15px;
    padding-left: 20px;
    padding-right: 20px;
}
.shopping-item-col-1 {

}
.shopping-item-col-2 {
    display: flex;
    justify-content: space-between;
    justify-content: center;
}
.shopping-item-col-3 {
    display: flex;
    flex-direction: column;
    justify-content: space-between
}
.shopping-item-col-4 {
    display: flex;
    align-items: flex-end;
    justify-content: flex-end;
}
.shopping-item-top,
.shopping-item-bottom {
    padding: 15px 15px;
}
.shopping-item-top {
    
}
.shopping-item-bottom {
    padding-top: 6px;
    padding-bottom: 6px;
    border-top: 1px solid #eee;
    align-items: center;
}
.shopping-item-bottom .shopping-item-col-2 * {
    text-decoration: unset;
}
.cart-shopping-item.is-disabled .shopping-item-col-4 {
    opacity: 0.4;
}
.shopping-item-checkbox {
    width: 18px;
    height: 18px;
}
.shopping-item-img {
    width: 100px;
    height: 100px;
    border-radius: 5px;
    object-fit: cover;
    border: 1px solid #ddda;
}
.shopping-item-title {
    
}
.shopping-item-title a {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--c-01);

    --row: 2;
    max-height: calc(var(--row) * 19.19px);
    display: -webkit-box;
    -webkit-line-clamp: var(--row);
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}
.shopping-item-title a:hover {
    color: var(--c-02);
    /* text-decoration: underline !important; */
}
.shopping-item-content {

}
.shopping-item-content p {
    margin-bottom: 0;
    line-height: 1;
}
.shopping-item-content p + p {
    margin-top: 8px;
}
.shopping-item-tag-list {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    margin-top: 8px;
    margin-bottom: 12px;
    gap: 2px;
}
.shopping-item-tag-item {
    color: var(--c-05);
    line-height: 1;
    /* font-size: 80%; */
}
.shopping-item-tag-item + .shopping-item-tag-item:before {
    content: ', ';
}
.shopping-item-tag-item.tag-new {
    color: #fff;
    background-color: var(--c-03);
}
.shopping-item-tag-item.tag-sale {
    color: #fff;
    background-color: var(--c-01);
}
.shopping-item-subtotal {
    font-size: 1.1rem;
    font-weight: 600;
    line-height: 1.5;
    text-align: right;
}
.shopping-item-subtotal::before {
    /* content: 'SGD $'; */
}
@media (max-width: 768px) {
    .shopping-item-img {
        width: 100%;
        max-width: 200px;
    }
    .shopping-item-col.shopping-item-top {
        grid-template-columns: minmax(0, 20px) minmax(0, 1fr) minmax(0, 1fr);
        padding-bottom: 5px;
    }
    .shopping-item-col.shopping-item-top .shopping-item-col-2 {
        grid-column: 2 / -1;
    }
    .shopping-item-col.shopping-item-top .shopping-item-col-3,
    .shopping-item-col.shopping-item-top .shopping-item-col-4 {
        grid-column: 1 / -1;
    }
}


/* .cart-summary */
.cart-summary {
    background-color: #fff;
    border-radius: 10px;
    padding: 15px 15px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    text-align: centers;
}
.cart-summary + .cart-summary {
    margin-top: 20px;
}
.cart-summary-content {
    color: var(--c-01);
    font-size: 1rem;
    text-align: end;
}
.cart-summary-content span {
    font-size: 1rem;
    font-weight: 700;
}
.cart-summary-subtotal {
    font-size: 1.6rem;
    font-weight: 600;
    line-height: 1.5;
    text-align: end;
}
.cart-summary-subtotal::before {
    /* content: 'SGD $'; */
}
.cart-summary-btn {
    display: block;
    padding: 0.8rem 1.2rem;
    line-height: 1;
    border-radius: 8px;
    color: #fff;
    background-color: var(--c-01);
    font-size: 1.2rem;
    width: 100%;
    height: auto;
}


/* 進度條 */
.cart-progress {
    border-top: 1px solid #3331;
    background-color: #ffffff;
    box-shadow: 0 1px 10px 0 #0002;
}
.cart-progress-bar {
    display: flex;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: space-between;
    padding: 14px 0 10px;
}
.cart-progress-item {
    display: flex;
    align-items: center;
    flex-direction: column;
    font-size: 1.2rem;
    width: 104px;
    row-gap: 5px;
    /* background-color: #ddd8; */
}
.cart-progress-item + .cart-progress-item span:after {
    --base-width: 588px;
    content: '';
    position: absolute;
    width: calc(var(--base-width) - 8px * 2);
    height: 2px;
    right: calc(100% + 5px);
    top: calc(40px / 2);
    background-color: #BBB;
}
.cart-progress-item + .cart-progress-item.pass span:after,
.cart-progress-item + .cart-progress-item.here span:after {
    background-color: var(--c-01);
}
.cart-progress-item span {
    position: relative;
    -moz-osx-font-smoothing: grayscale;
    -webkit-font-smoothing: antialiased;
    display: var(--fa-display,inline-block);
    font-style: normal;
    font-variant: normal;
    line-height: 1;
    text-rendering: auto;
    font-family: "Font Awesome 7 Free";
    font-weight: 900;
    background-color: #BBB;
    border-radius: 50%;
    width: 34px;
    height: 34px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.cart-progress-item font {
    font-weight: 600;
    font-size: 14px;
    text-align: center;
    line-height: 1.2;
    max-width: 100%;
    max-height: 33.6px;
    overflow: hidden;
    text-overflow: ellipsis;
}
.cart-progress-item:not(.pass):not(.here) font {
    color: #BBB;
}
.cart-progress-item:not(.pass):not(.here) span:before {
    font-size: 0.9rem;
    font-family: Noto Sans SC, PingFang SC, Microsoft YaHei, Heebo, sans-serif;
    color: #fff;
}
.cart-progress-item:nth-child(1) span:before { content: "1"; }
.cart-progress-item:nth-child(2) span:before { content: "2"; }
.cart-progress-item:nth-child(3) span:before { content: "3"; }
.cart-progress-item.pass {

}
.cart-progress-item.pass span {
    color: #fff;
    background-color: var(--c-01);
}
.cart-progress-item.pass span:before {
    content: "\f00c";
}
.cart-progress-item.pass font {

}
.cart-progress-item.here {

}
.cart-progress-item.here span {
    color: #fff;
    background-color: var(--c-01);
}
.cart-progress-item.here span:before {
    content: "\f07a";
    font-size: 0.8rem;
    padding-top: 2px;
}
.cart-progress-item.here font {

}
@media (max-width: 576px) {
    .cart-progress-item + .cart-progress-item span:after {
        --base-width: 24vw;
    }
}
@media (min-width: 576px) {
    .cart-progress-item + .cart-progress-item span:after {
        --base-width: 179px;
    }
}
@media (min-width: 768px) {
    .cart-progress-item + .cart-progress-item span:after {
        --base-width: 269px;
    }
}
@media (min-width: 992px) {
    .cart-progress-item + .cart-progress-item span:after {
        --base-width: 389px;
    }
}
@media (min-width: 1200px) {
    .cart-progress-item + .cart-progress-item span:after {
        --base-width: 499px;
    }
}
@media (min-width: 1400px) {
    .cart-progress-item + .cart-progress-item span:after {
        --base-width: 498px;
    }
}


/* .cart-form-block */
.cart-form-block {
    font-size: 1.2rem;
    /* border-top-left-radius: 10px; */
    /* border-top-right-radius: 10px; */
    /* overflow: hidden; */
}
.cart-form-block + .cart-form-block {
    margin-top: 20px;
}
.cart-form-block-header {
    padding: 15px 5px;
    /* border-bottom: 1px solid #eee; */
    background-color: #ffffff;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    font-weight: 600;
    font-size: 1.4rem;
}
.cart-form-block-body {
    padding: 5px 5px;
    background-color: #ffffff;
}
.cart-form-block.step-2-submit-area {
    margin-bottom: 15px;
}
.cart-form-block.step-2-submit-area .cart-form-block-header,
.cart-form-block.step-2-submit-area .cart-form-block-body {
    padding: 15px 20px;

}
.promo-code-message {
    line-height: 1.2;
}


/* .cart-selected-item */
.cart-selected-item {
    display: grid;
    /* align-items: center; */
    grid-template-columns: minmax(0, 100px) 1fr;
    gap: 15px;
    padding: 20px 0;
}
.cart-selected-item:first-child {
    padding-top: 0;
}
.cart-selected-item:last-child {
    padding-bottom: 0;
}
.cart-selected-item + .cart-selected-item {
    border-top: 1px solid #eee;
}
.cart-selected-item-1 {

}
.cart-selected-item-2 {

}
.cart-selected-item-img {
    border-radius: 5px;
    object-fit: cover;
    aspect-ratio: 1 / 1;
}
.cart-selected-item-title {
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 5px;
}
.cart-selected-item-content {

}
.cart-selected-item-tag-list {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    margin-top: 10px;
    gap: 5px;
    font-size: 1rem;
}
.cart-selected-item-tag {
    padding: 5px 7px;
    color: #fff;
    background-color: var(--c-03);
    border-radius: 3px;
    line-height: 1;
    font-size: 80%;
}
.cart-selected-item-tag.tag-new {
    color: #fff;
    background-color: var(--c-03);
}
.cart-selected-item-tag.tag-sale {
    color: #fff;
    background-color: var(--c-01);
}


/* .cart-form-group */
.cart-form-group {
    margin-bottom: 1.5rem;
}
.form-check-label,
.cart-form-group label {
    font-weight: 500;
    height: 19px;
}


#agree_the_terms {
    width: 18px;
    height: 18px;
}
[for="agree_the_terms"] {
    font-weight: normal !important;
}


/* .cart-summary-block */
.cart-summary-block {
    padding: 20px 20px 15px;
    border-radius: 10px;
    background-color: #ffffff;
    font-size: 1.2rem;
    line-height: 1.4;
}
.cart-summary-block.item {
    border: 2px solid var(--c-05);
}
.cart-summary-block.sticky {
    position: sticky;
    top: calc(70px + 20px);
}
.cart-summary-block + .cart-summary-block,
.cart-summary-list + .cart-summary-block {
    margin-top: 20px;
}
.cart-summary-block-txt-1 {
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 10px;
    line-height: 1.2;
}
.cart-summary-block-txt-2 {

}
.cart-summary-block-hr {
    width: 100%;
    height: 1px;
    background-color: #eee;
    margin: 1rem 0;
}
.cart-summary-block-col {
    display: grid;
    /* align-items: center; */
    grid-template-columns: minmax(0, 150px) 1fr;
    gap: 15px;
}
.cart-summary-block-col + .cart-summary-block-col {
    margin-top: 10px;
}
.cart-summary-block-col-1 {
    font-weight: 500;
}
.cart-summary-block-col-2 {
    text-align: right;
}
.cart-summary-block-col-2.flex {
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
}
.shipping-fee-col:not(.active) {
    display: none;
}


/* 刪除 */
.cart-shopping-delete-btn {
    border-color: var(--danger);
    color: var(--danger);
    border-radius: 3px;
    line-height: 1;
    width: auto;
    height: auto;
    padding: 9px 10px 7px;
}
.cart-shopping-reload-btn {
    background-color: var(--c-01);
    border-color: var(--c-01);
    width: 40px;
    height: auto;
    border-radius: 3px;
}
.cart-item-page-btn {
    color: var(--c-03);
}
.cart-item-page-btn:hover {
    
}


/* 數量 +/- */
.plan-item.is-disabled .plan-item-booking-list {
    opacity: 0.4;
}
.plan-item-booking-item {
    position: relative;
    width: 100%;
    display: grid;
    grid-template-columns: minmax(0, 75px) minmax(0, 120px) minmax(0, 90px) minmax(0, 30px) 1fr;
    align-items: center;
    /* padding: 5px 0; */
    gap: 10px;
}
.plan-item-booking-item + .plan-item-booking-item {
    padding-top: 12px;
    margin-top: 12px;
}
.plan-item-booking-item + .plan-item-booking-item::before {
    content: '';
    position: absolute;
    background-color: #0001;
    width: 100%;
    height: 1px;
    left: 0;
    top: -5px;
}
.booking-item-title {
    flex-grow: 1;
}
.booking-item-title-1 {
    /* font-weight: 600; */

    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}
.booking-item-title-2 {
    font-size: 80%;
    color: var(--color-5);
}
.booking-item-price {
    display: flex;
    align-items: flex-end;
    flex-direction: column;
    font-weight: 600;
    font-size: 1.2rem;
}
.booking-item-price-1::before,
.booking-item-price-2::before {
    /* content: 'SGD $'; */
}
.booking-item-price-2 {
    opacity: 0.6;
    font-size: 55%;
    font-weight: 400;
    text-decoration: line-through;
}
/* .booking-item-option ------------------ */
.booking-item-option {
    display: flex;
    align-items: center;
    width: 90px;
}
.booking-item-option-sub,
.booking-item-option-add {
    width: 30px;
    height: 30px;
    line-height: 1;
    background-color: var(--c-06);
}
.booking-item-option-sub:hover:not(.disabled),
.booking-item-option-add:hover:not(.disabled) {
    color: #fff;
    background-color: var(--c-01);
}
.booking-item-option-sub.disabled,
.booking-item-option-add.disabled {
    color: #0005;
    cursor: not-allowed;
    pointer-events: unset !important;
}
.booking-item-option-qty {
    flex-grow: 1;
    text-align: center;
}
.booking-item-option-add {

}
/* .booking-item-delete ------------------ */
.booking-item-delete {

}
.cart-item-delete-btn {
    color: var(--danger);
    padding: 0;
    width: 100%;
}
.cart-item-delete-btn:hover {
    /* color: var(--c-01); */
    color: var(--danger);
}
/* .booking-item-subtotal ------------------ */
.booking-item-subtotal {

}
@media (max-width: 768px) {
    .plan-item-booking-item {
        width: 100%;
        align-items: center;
        padding: 5px 0;
        gap: 10px;
    }
    .cart-main .plan-item-booking-item,
    .cart-main.zh_cn .plan-item-booking-item {
        grid-template-columns: minmax(0, 30px) minmax(0, 1fr) minmax(0, 100px) minmax(0, 26px);
    }
    .cart-main.en .plan-item-booking-item {
        grid-template-columns: minmax(0, 62px) minmax(0, 1fr) minmax(0, 100px) minmax(0, 26px);
    }
    .booking-item-subtotal {
        grid-column: 1 / -1;
    }
}




/* .cart-empty-area ------------------ */
.cart-empty-area {
    position: relative;
    width: 100%;
    height: 100%;
}
.cart-empty-area * {
    /* background-color: #ccc5; */
}
.cart-empty-area > div {
    position: absolute;
    top: 40%;
    left: 50%;
    transform: translate(-50%, -50%);
}
.cart-empty-image {
    position: relative;
    aspect-ratio: 2 / 1;
    margin-bottom: 10px;
}
.cart-empty-icon-1 {
    font-size: 4rem;
    color: var(--c-08);
    position: absolute;
    top: 70%;
    left: 50%;
    transform: translate(-50%, -50px);
    z-index: 1;
}
.cart-empty-icon-2 {
    position: absolute;
    top: 70%;
    left: 50%;
    transform: translate(calc(-50% + 30px), calc(-50px - 8px));
    z-index: 2;
    font-size: 1.3rem;
    border-radius: 50%;
    aspect-ratio: 1 / 1;
    line-height: 1.3;
    color: var(--c-01);
    background-color: #FFF;
    padding: 1.2px 1px 1px;
}
.cart-empty-title-1 {
    font-size: 1.6rem;
    word-break: keep-all;
}
.cart-empty-title-2 {
    font-size: 1rem;
    margin-top: 10px;
    word-break: keep-all;
    white-space: nowrap;
}
.cart-empty-btn-div {
    text-align: center;
    margin-top: 40px;
}
.cart-empty-btn {
    border-radius: 3px;
    font-size: 1rem;
    width: auto;
    height: auto;
    padding: 12px 36px 12px;
}
.cart-empty-btn:hover {
    /* background-color: var(--c-04); */
}
@media (max-width: 768px) {
    .cart-empty-area > div {
        top: 50%;
        width: 100%;
    }
    .cart-empty-icon-1 {
        font-size: 3.4rem;
    }
    .cart-empty-icon-2 {
        transform: translate(calc(-50% + 22px), calc(-50px - 2px));
        font-size: 1.1rem;
        padding: 1px 0.8px 0.8px;
    }
    .cart-empty-image {
        aspect-ratio: 3 / 1;
    }
    .cart-empty-title-1 {
        font-size: 1.4rem;
    }
    .cart-empty-title-2 {
        font-size: 0.9rem;
        white-space: unset;
        text-align: center;
    }
    .cart-empty-btn-div {
        margin-top: 30px;
    }
}




/* .cart-form-table */
.cart-form-table {
    border-width: 0px;

    background-color: var(--c-11);
}
.cart-form-table * {
    font-size: 0.88rem;
}
.cart-form-table > :not(caption) > * {
    border-width: 0;
}
.cart-form-table > :not(:first-child) {
    border-top-width: 0;
}
.cart-form-table thead th:nth-child(1),
.cart-form-table tbody td:nth-child(1) {

}
/* .cart-form-table thead th:nth-child(2), */
.cart-form-table tbody td:nth-child(2) {
    text-align: right;
    font-weight: 600;
    word-break: keep-all;
    white-space: nowrap;
}
.cart-form-table thead {
    color: var(--c-07);
    background-color: var(--c-01);
}
.cart-form-table thead th {
    border-bottom-width: 0;
    text-align: center;
}
.cart-form-table tbody {

}
.cart-form-table tbody tr:nth-child(1) {
    border-top: unset;
}
.cart-form-table th,
.cart-form-table td {

}
.cart-form-table tbody tr + tr {
    border-top: 1px solid #dee2e6;

}




/* 提示框 */
.cart-notice-tip {
    --tip-color: var(--c-03);
    position: relative;
    display: inline-block;
    padding-top: 8px;
}
.cart-notice-tip-arrow {
    width: 0;
    height: 0;
    margin-left: 20px;
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-bottom: 8px solid var(--tip-color);
}
.cart-notice-tip-box {
    border: 1px solid var(--tip-color);
    padding: 10px 12px;
    line-height: 1.6;
}



/* .cart-step-2-back-btn */
.cart-step-2-back-btn {
    padding: 0;
    width: auto;
    height: auto;
    font-weight: 400;
    color: var(--c-01);
    border: unset;
}
.cart-step-2-back-btn:not(:disabled):not(.disabled):active,
.cart-step-2-back-btn:not(:disabled):not(.disabled):focus,
.cart-step-2-back-btn:not(:disabled):not(.disabled):focus:active,
.cart-step-2-back-btn:not(:disabled):not(.disabled):hover {
    box-shadow: unset;
    -webkit-box-shadow: unset;
    border: unset;
    background-color: unset;
    color: var(--c-02);
}



/* selectpicker (.bootstrap-select) */
.bootstrap-select .dropdown-toggle:focus,
.bootstrap-select > select.mobile-device:focus + .dropdown-toggle {
    outline: unset !important;
    box-shadow: unset;
}
.bootstrap-select .dropdown-toggle .filter-option-inner-inner {
    font-weight: 400;
}
.bootstrap-select > .dropdown-toggle {
    background-color: unset;
    border: 1px solid #ced4da;
    padding: 0.375rem 0.8rem;
}
.bootstrap-select .dropdown-toggle .filter-option {
    line-height: 1.8;
}
.bootstrap-select .dropdown-menu.show {
    box-shadow: 0 0 8px 2px #aaa6;
}
.bootstrap-select .dropdown-item.active,
.bootstrap-select .dropdown-item:active {
    color: var(--c-07);
    background-color: var(--c-01);
}
.dropdown-item:focus,
.dropdown-item:hover {
    background-color: var(--c-08);
    background-color: #dae0e5;
}





/* .cart-success-area */
.cart-success-area {
    --width: 700px;
    --padding-x: 80px;
    width: var(--width);
    border: 3px solid var(--c-03);
    border-radius: 8px;
    padding: 30px 20px 40px;
    font-size: 1rem;
    line-height: 2;

    display: flex;
    align-items: center;
    justify-content: center;
}
.cart-success-area *:not(button) {
    /* background-color: #ddd3; */
}
/* .cart-success-area *:not(button):not(.cart-success-title) { */
.cart-success {
    width: calc(var(--width) - var(--padding-x) * 2);
}
.cart-success-icon {
    background-color: var(--c-11);
    border-radius: 50%;
    --size: 60px;
    width: var(--size);
    height: var(--size);

    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    margin-bottom: 10px;
}
.cart-success-icon i {
    color: var(--c-01);
    font-size: 2.4rem;
}
.cart-success-title {
    font-weight: 600;
    font-size: 1.6rem;
    text-align: center;
    margin-bottom: 15px;
    line-height: 1.5;
}
.cart-success-ul {
    /* list-style: decimal; */
    /* padding-left: 18px; */

    list-style: none;
}
.cart-success-ul * {
    font-size: 0.81rem;
    color: #82868a;
}
.cart-success-li {
    display: list-item;
}
.cart-success-list,
.cart-success-btn-bar {
    margin-top: 30px;
}
.cart-success-list {

}
.cart-success-group {
    display: grid;
}
.cart-main.zh_cn .cart-success-group {
    grid-template-columns: minmax(0, 90px) minmax(0, 1fr);
}
.cart-main.en .cart-success-group {
    grid-template-columns: minmax(0, 150px) minmax(0, 1fr);
}
.cart-success-txt-1 {
    color: #82868a;
    font-size: 0.95rem;
}
.cart-success-txt-1::after {
    content: '：';
}
.cart-success-txt-2 {
    font-weight: 600;
    font-size: 1rem;
}
.cart-success-btn-bar {
    display: flex;
    align-items: center;
    justify-content: center;
    column-gap: 10px;
}
@media (max-width: 768px) {
    .cart-success-area {
        --width: 100%;
        --padding-x: 0px;
        line-height: 1.8;
        border-width: 3px;
    }
    .cart-success-icon {
        --size: 50px;
    }
    .cart-success-icon i {
        font-size: 1.8rem;
    }
    .cart-success-title {
        font-size: 1.2rem;
        margin-bottom: 10px;
    }
    .cart-success-list,
    .cart-success-btn-bar {
        margin-top: 20px;
    }
    .cart-success-txt-1 {
        font-size: 0.90rem;
    }
    .cart-success-txt-2 {
        font-size: 0.95rem;
    }
}

