.cart_table{
    width: 100%;
}
.cart_table, .cart_table tr{
    border: 1px solid #BFBFBF;
}
.cart_table tr th, .cart_table tr td{
    border: 0;
    font-weight: 400;
    padding: 10px 10px;
    text-align: center;
}
.cart_table tr{
    vertical-align: middle;
}
.cart_table .product_img img {
    width: 100px;
    height: auto;
}
.cart_form a{color:var(--black);} 
.cart_form .product_price, .product_subtotal{
    min-width: 130px;
}
.product_subtotal{
    color: var(--t_color);
}
.product_quantity .input-group {
    background: #F2F2F2;
    border-radius: 30px;
    display: flex;
    align-items: center;
}
.product_quantity .input-group .form-control{
    width: 20px;
    text-align: center;
    background: transparent;
    height: 30px;
    border: 0;
    padding: 0
}
.product_quantity .input-group .form-control:focus{
    box-shadow: none;
}
.product_quantity .btn {
    height: 30px;
    width: 30px;
    padding: 0;
}
.product_quantity .btn img{
    width: 10px;
}
.cart_table .product_name {
    text-align: left;
}
.cart_table .product-remove {
    padding: 10px 15px;
}
.coupon_code {
    display: flex;
    align-items: center;
}
.coupon_code .form-label {
    font-weight: 600;
    margin-right: 15px;
    margin-bottom: 0;
}
.apply_btn{
    text-transform: capitalize;
}
.coupon_code .form-control{
    width: 300px;
    border-radius: 0;
    border: 1px solid #DCDCDC;
    border-bottom: 2px solid #DCDCDC;
    min-height: 46px;
    margin-right: 15px;
}
.coupon_code .form-control:focus{
    border-bottom-color: var(--t_color);
    box-shadow: none;
}
.coupon_code .succesfully{
    color:#137700;
    font-size: 16px;
    margin-left: 30px;
}
.coupon_code .failed{
    color:#a82040;
    font-size: 16px;
    margin-left: 30px;
}
.cart_total {
    border: 1px solid #BFBFBF;
}
.cart_total .heading{
    padding: 10px 20px;
    color: var(--black);
    font-weight: 400;  
    font-size: 23px;
    border-bottom: 1px solid #BFBFBF;
}
.cart_total .total_list {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 10px;
}
.cart_total .total_detail{
    padding: 15px 20px;
}
.cart_total .total_list small {
    font-size: 14px;
}
.cart_total .total_list.last_item{
    background-image: linear-gradient(to right, #C7C7C7 50%, white 50%);
    background-position: top;
    background-size: 5px 1px;
    background-repeat: repeat-x;
    padding-top: 15px;
}
.cart_total .total_list .total_price{
    font-weight: 700;
    color: var(--t_color);
}
.btn.next_btn {
    text-transform: capitalize;
    padding: 10px 50px;
}
.recommended_items {
    padding: 30px 0;
}



@media (max-width:767px){
    .account_breadcrumbs .btn {
        padding: 8px 5px;
        width: 85px;
        font-size: 8px;
    }
    .account_breadcrumbs {
        margin-bottom: 30px;
    }
    .account_breadcrumbs .btn:after {
        background-size: 13px;
    }
    .product_quantity .input-group .form-control {
        width: 25px;
    }
    .cart_form{
        position: relative;
        overflow: auto;
        margin-bottom: 25px;
    }
    .product_quantity .input-group{
        flex-wrap: unset;
    }
    .coupon_code .form-label {
        margin-right: 10px;
        width: 125px;
    }
    .coupon_code .form-control {
        width: 200px;
        margin-right: 10px;
    }
    .apply_btn {
        font-size: 11px;
    }
    .coupon_code .succesfully {
        width: max-content;
        font-size: 12px;
    }
    .cart_total .heading {
        padding: 10px 15px;
    }    
    .cart_total .total_detail {
        padding: 10px 15px;
    }
    .total_detail .text-center.mt-5.mb-2 {
        margin-top: 30px !important;
    }
    .recommended_items .owl-dots {
        display: none;
    }
    .recommended_items {
        padding: 25px 0;
    }
    .cart_table .product_img img {
        width: 80px;
    }
}