.product {
  position: relative;
}
.iwish-btn {
    position: absolute;
    top: 10px;
    left: 10px;
    padding: 6px;
    border: none;
    background: #ffffff94;
    /* border-radius: 50%; */
    box-shadow: 0px 0px 4px 3px #00000014;
    display: flex
;
}
/*.product:hover .iwish-btn {
  display: block;
}*/
.AB_Wishlist{
  width: 100%;
}
.AB_Wishlist table {
  border: 1px solid #ccc;
  border-collapse: collapse;
  margin: 0;
  padding: 0;
  width: 100%;
}

.AB_Wishlist table caption {
  font-size: 1.5em;
  margin: .5em 0 .75em;
}

.AB_Wishlist table tr {
  background-color: #f8f8f8;
  border: 1px solid #ddd;
  padding: .35em;
}

.AB_Wishlist table th,
.AB_Wishlist table td {
  padding: .625em;
  text-align: center;
}

.AB_Wishlist table th {
  font-size: .85em;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.AB_Wishlist table tr td.product-remove {
    width: 40px;
    text-align: center;
}
.AB_Wishlist table tr td.product-thumbnail {
    width: 100px;
}
.AB_Wishlist table tr td.product-buy button {
    padding: 10px 20px;
    cursor: pointer;
}

.AB_Wishlist a.remove {
    display: inline-block;
    font-size: 1.5em;
    height: 1em;
    width: 1em;
    text-align: center;
    line-height: 1;
    border-radius: 100%;
    color: red!important;
    text-decoration: none;
    font-weight: 700;
    border: 0;
}

.AB_Wishlist a.remove .ab-close-svg {
    width: 80%;
    height: 82%;
}
.AB_Wishlist .quantity .qty {
    width: 3.631em;
    text-align: center;
}

@media screen and (max-width: 768px) {
  .AB_Wishlist table tr td.product-remove {
      width: 100%;
      text-align: right;
      box-sizing: border-box;
  }
  .AB_Wishlist table tr td.product-thumbnail {
      width: 100%;
      box-sizing: border-box;
  }

  .AB_Wishlist a.remove {
    display: inline-block;
  }
  .AB_Wishlist table {
    border: 0;
  }

  .AB_Wishlist table caption {
    font-size: 1.3em;
  }
  
  .AB_Wishlist table thead {
    border: none;
    clip: rect(0 0 0 0);
    height: 1px;
    margin: -1px;
    overflow: hidden;
    padding: 0;
    position: absolute;
    width: 1px;
  }
  
  .AB_Wishlist table tr {
    border-bottom: 3px solid #ddd;
    display: block;
    margin-bottom: .625em;
  }
  
  .AB_Wishlist table td {
    border-bottom: 1px solid #ddd;
    display: block;
    font-size: .8em;
    text-align: right;
  }
  
  .AB_Wishlist table td::before {
    content: attr(data-label);
    float: left;
    font-weight: bold;
    text-transform: uppercase;
  }
  
  .AB_Wishlist table td:last-child {
    border-bottom: 0;
  }
}

