/* Start custom CSS */@media(max-width:768px){
    .cart_totals h2{
        font-size:20px;
    }
    .woocommerce table.shop_table_responsive tr td, .woocommerce-page table.shop_table_responsive tr td,
    .woocommerce #content table.cart .product-thumbnail, .woocommerce-page #content table.cart .product-thumbnail{
        display: inline-flex;
        border: none;
        grid-column: 3;
    padding: 5px 0;
    min-height: 0!important;
        text-align: center!important;
    }
    .woocommerce table.shop_table td.product-remove {
        padding: 5px 8px 0 0;
        grid-column: 1;

    }
    .woocommerce-page #content table.cart .product-thumbnail{
        grid-column: 2;
        height:20px;
    }
    td.product-quantity {
    gap: 5px;
    align-items: center;
}
    .woocommerce table.shop_table_responsive tr, .woocommerce-page table.shop_table_responsive tr {
            display: grid;
    border-bottom: 1px solid #ebebeb;
    grid-template-columns: 40px 95px calc(100% - 135px);
    padding:10px 0;
    }
    .woocommerce-page table.shop_table_responsive tr td.actions {
    grid-column: 1/4;
        display: block;
        padding: 0 10px;
    }
    .woocommerce-page #content table.cart td.actions button[type="submit"] {
        margin: 0;
    }
        
}/* End custom CSS */