.cart-page{
    margin-top: 40px;
    margin-bottom: 40px;
}
.cart-page .empty-cart {
    max-width: 650px;
    margin: auto;
    padding: 50px 0;
}
.cart-page .empty-cart svg {
    width: 230px;
    height: 230px;
    stroke: #e7e7e7;
    stroke-width: 1.6;
    fill: none;
}
.cart-page .empty-cart h6 {
    font-size: 32px;
}
.cart-page .empty-cart p {
    font-size: 14px;
    color: var(--third-color);
}
.cart-total {
    border: 2px solid var(--border-color);
    padding: 25px;
}
.cart-total h4 {
    font-size: 18px;
    font-weight: 600;
}
.detail-cart-total {
    display: flex;
    justify-content: space-between;
    border-bottom: 1px solid var(--border-color);
    padding: 14px 0;
    align-items: center;
}
.detail-cart-total h5 {
    font-size: 14px;
}
.detail-cart-total p {
    color: var(--third-color);
    margin: 0;
    text-transform: capitalize;
}   
.detail-shipping .form-check{
    text-align: right;
}
.detail-shipping label {
    font-size: 13px;
}
.detail-shipping input {
    float: right !important;
    margin-left: 6px !important;
}
.detail-shipping label i {
    color: var(--main-color);
}
.detail-shipping .form-check-input {
    width: 12px;
    height: 12px;
    margin-top: 8px;
}
.cart-total-footer {
    border: 0;
    margin-top: 15px;
    padding-bottom: 0;
}
.cart-total-footer h3 {
    font-size: 18px;
    color: var(--main-color);
}
.cart-page .cart-list {
    padding: 12px 0;
    margin: 0 10px;
    align-items: center;
    border-bottom: 1px solid #e7e7e7;
}
.cart-page .cart-list:first-child {
    text-transform: uppercase;
    border-bottom: 2px solid #efefef;
}
.cart-page .cart-list h5 {
    font-size: 14px;
    font-weight: 600;
    text-align: center;
}
/* .cart-page .cart-list:last-child {
    border-bottom: 0;
} */
.cart-page .remove-product {
    width: 18px;
    height: 18px;
    fill: none;
    stroke: var(--second-color);
    stroke-width: 1.6;
    stroke-linecap: round;
}
.cart-detail-product {
    width: 85%;
}
.cart-detail-product .row {
    align-items: center;
}
.cart-detail-product .product-complet {
    width: 31%;
}
.cart-detail-product .product-price {
    width: 20%;
}
.cart-detail-product .product-quantity {
    width: 20%;
}
.cart-detail-product .product-subtotal {
    width: 29%;
}
.product-complet {
    display: flex;
    align-items: center;
}
.product-complet img {
    width: 100px;
    object-fit: cover;
}
.product-complet .product-title {
    overflow: hidden;
}
.product-complet h6 {
    font-size: 14px;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
    margin: 0;
}
.product-price p {
    margin: 0;
    font-size: 14px;
    color: var(--third-color);
    text-align: center;
}
.product-quantity .quantity.buttons_added{
    text-align: center;
}
.quantity .input-text.qty:focus {
    outline: 0;
}
.product-subtotal p{
    color: var(--main-color);
    text-align: center;
    margin: 0;
    font-size: 14px;
    font-weight: 600;
}
/* .coupon{
    display: flex;
    margin-top: 30px !important;
} */
.coupon .form-control {
    font-size: 13px;
}
.apply_coupon {
    min-width: max-content;
    font-size: 14px !important;
    font-weight: 400 !important;
}
.checkout-order {
    background-color: #f7f7f7;
    padding: 30px;
    position: relative;
}
.checkout-order .cart-total {
    border: 0;
    background: #fff;
}
.removeCart {
    cursor: pointer;
}
@media(max-width: 768px){
    .cart-page .empty-cart svg {
        width: 160px;
        height: 160px;
    }
    .cart-page .empty-cart h6 {
        font-size: 24px;
    }
    .empty-cart .main-btn {
        width: max-content !important;
    }
}
@media(max-width: 576px){
    .cart-page .cart-list:not(.main-cart-data .cart-list) {
        display: none;
    }
    .cart-total {
        margin-top: 25px;
    }    
    .cart-page .cart-list {
        position: relative;
        width: 100%;
        padding: 15px 0 !important;
        border-bottom: 2px dashed var(--second-color) !important;
        margin: 0;
    }
    .col-lg-1.col-md-1.col-sm-1.product-complet {
        order: 1;
        position: absolute;
        top: 5px;
        right: 0;
        width: 28px;
        padding: 5px;
    }
    .cart-item .product-complet h6 {
        margin-bottom: 15px;
        text-align: center;
        font-size: 18px;
    }
    .cart-item .row {
        align-items: start;
        flex-direction: column;
    }
    .cart-item {
        width: 72%;
        margin: auto;
    }
    .col-lg-2.col-md-2.col-sm-2.product-complet {
        width: 28%;
        padding: 0 7px;
    }
    .product-complet img {
        width: 100%;
        max-width: 300px;
        height: 100%;
        max-height: 220px;
        object-fit: cover;
        margin: 0;
    }
    .cart-item .product-complet {
        width: 100%;
        flex-direction: column;
    }
    .cart-item .product-price, .cart-item .product-quantity, .cart-item .product-subtotal {
        width: 100%;
        display: flex;
        justify-content: flex-end !important;
        padding: 5px 0;
        border-bottom: 2px dotted var(--border-color);
        position: relative;
    }
    .cart-item .product-subtotal {
        border: 0;
    }
    .cart-item .quantity{
        margin: 0;
    }
    .cart-item .quantity.buttons_added .minus,.cart-item .quantity.buttons_added .plus {
        padding: 2px 7px 2px;
        height: 30px;
    }
    .cart-item .quantity .input-text.qty {
        height: 30px;
    }
    .cart-item .product-subtotal p {
        font-size: 15px;
    }
    .cart-item .product-price:before, .cart-item .product-quantity:before, .cart-item .product-subtotal:before {
        font-size: 14px;
        text-transform: capitalize;
        position: absolute;
        left: 0px;
        top: calc(50% - 10px);
    }
    .cart-item .product-price:before{
        content: "Price";
        /* padding: 4px 0; */
    }
    .cart-item .product-quantity:before{
        content: "quantity";
        /* padding: 8px 0; */
    }
    .cart-item .product-subtotal:before{
        content: "subtotal";
    }
    .cart-page .coupon {
        margin-bottom: 0;
        margin-right: 0;
    }
    .coupon.update-cart {
        width: 100%;
        margin-left: 0 !important;
    }
    .update-cart .btn.btn-danger {
        width: 100%;
    }
    .page-title-paiment .breadcrumb-item+.breadcrumb-item.active::before{
        display: none;
    }
    .coupon-info {
        margin-bottom: 15px;
        padding: 20px 15px;
        width: 94%;
        margin-left: 3%;
    }
    .breadcrumb-item {
        display: none;
    }
    .breadcrumb-item a, .breadcrumb-item.active {
        font-size: 12px;
        display: block;
    }
}