.shippingProducts ul{
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  padding-left: 0;

}
.shippingProducts li {
  width:50%;
  margin-top: 0;
  position: relative;
}
.shippingProducts li img {
    max-width: 100%;
    height: 160px;
    object-fit: cover;
}
.shippingProducts li span {
    position: relative;
    margin-left:1.4rem;
}
.shippingProducts li a {
 text-decoration: none;   
}
.shippingProducts li span:hover {
border-bottom: dotted #241e1f 1px;
}

.shippingProducts li:after {
 font-family: "Material Symbols Outlined";
  content: "\e5cc";
  color: #241e1f;
  font-size: 1.4rem;
  position: absolute;
  left:0;
  font-weight: normal;
  top: 0;
  z-index: 10;
  pointer-events: none;
}
@media screen and (max-width: 480px) {
  .shippingProducts li {
    width:100%;
  }

}