.cartpage{
    .left-area{
        .cart-table{
            .table{
                margin-bottom: 0;
                tbody{
                   tr{
                        border:1px solid #DEDEDE;
                        td{
                            .name{
                                a{
                                    font-size: 17px; font-weight:600; letter-spacing:0.03em;
                                }
                            }
                            .quantity{
                                .qty{
                                    ul{
                                        display: inline-block; border:1px solid #C9C9C9;
                                        padding: 6px 0;
                                        li{
                                            display: inline-block;
                                            span{
                                                height: 20px; width: 30px; font-size: 14px; text-align: center; line-height: 20px;
                                                padding: 0; display: block;
                                                &.qttotal1{
                                                    border-left:1px solid #C9C9C9; border-right:1px solid #C9C9C9;
                                                }
                                            }
                                        }
                                    }
                                }
                            }
                            .total-price{
                                p{
                                    color: color(600); font-size: 20px; font-family:font(md);
                                }
                            }
                            .removecart{
                                color:color(700); font-size:14px;
                                &:hover{
                                    color: darken(color(700), 9%);
                                }
                            }
                        }
                   }
                }
                @include media-breakpoint-down(md) {
                    tbody{
                       tr{
                            td{
                                .name{
                                    a{
                                        font-size: 15px;
                                    }
                                }

                                .total-price{
                                    p{
                                        font-size: 18px;
                                    }
                                }
                                &.product-img{
                                    width: 160px;
                                }
                            }
                       }
                    }
                }
            }
        }
    }
    .right-area{
        .title{
            color: #191919; font-size: 22px; font-family:font(md); margin-bottom: 15px;
        }
        .order-box{
            padding: 20px; border-color: #DEDEDE; box-shadow: none;
            .order-list{
                li{
                    p{
                        font-size: 16px; color: color(900); font-weight: normal;
                    }
                }
            }
        }
        @include media-breakpoint-down(md) {
            margin-top: 20px; 
            .title{
               font-size:18px;margin-bottom: 10px;
            }
            .order-box{
                margin-top: 15px;
            } 
        }
        @include media-breakpoint-down(sm) {
            .title{
               font-size:16px;
            }
            .order-list{
                li{
                    p{
                        font-size: 15px; margin-bottom: 0;
                    }
                    margin-bottom: 10px;
                }
            }
            .cupon-box{
                margin-bottom: 15px;
                div{
                    margin-bottom: 15px !important;
                }
            }
        }
    }
    @include media-breakpoint-down(lg) {
        padding-bottom: 55px;
    }
    @include media-breakpoint-down(md) {
        padding-bottom: 45px;
    }
    @include media-breakpoint-down(sm) {
        padding-bottom: 30px;
    }
}