How can I fix the repeated remove button in mobile view?

I added a code to add the “Remove” button beside each product in the cart and it’s added successfully, but the remove button is repeated again in the bottom of the mobile view

You can see it highlighted in yellow in the screenshot, how can i edit it?

URL: www.mapelasilver.com

Hello There,

  1. In your Shopify Admin go to online store > themes > actions > edit code
  2. Find Asset >theme.css and paste this at the bottom of the file:
@media screen and (max-width: 749px){
body#your-shopping-cart .grid a {
display: none;
}
}

It removed the extra remove buttons but it removed the original one too

And removed the product’s image