.wishlist-toggle {
    display: block;
    position: absolute;
    top: 16px;
    left: 16px;
    z-index: 5;
    width: 24px;
    height: 24px;
    outline: none;
    border:none;
}
 
.wishlist-title {
    display: none;
}
 
.entry-summary .wishlist-toggle {
    position: relative;
    top: 0;
    left: 0;
    display: inline-block;
    vertical-align: middle;
    margin-bottom: 8px;
}
 
.entry-summary .wishlist-title {
    display: inline-block;
    vertical-align: middle;
    margin-right: 8px;
    margin-bottom: 8px;
}
 
.wishlist-toggle:focus {
    outline: none;
    border:none;
}
.wishlist-toggle {
    color: #E8870A;
}
.wishlist-toggle.active {
    color: #E53935;
}
 
.wishlist-toggle i {
    fill:#bdbdbd;
    transition: all 200ms ease-out;
}
 
.wishlist-toggle:hover i,
.wishlist-toggle.active i {
    fill:#000000;
}
 
.wishlist-toggle i .loading,
.wishlist-toggle i .check {
    opacity: 0;
}
 
.wishlist-toggle.active i .check {
    opacity: 1;
}
 
.wishlist-toggle.active i .fa-heart {
    opacity: 0;
}
 
.wishlist-toggle.loading i .loading,
.wishlist-table.loading:before {
    animation:loading 500ms 0ms infinite normal linear;
    transform-origin: center;
    opacity: 1;
}
 
.wishlist-toggle.loading i .fa-heart {
    opacity:0;
}
 
@keyframes loading {
    from {transform: rotate(0deg);}
   to {transform: rotate(360deg);}
}
.wishlist-table {
    width:100%;
    position: relative;
}
 
.wishlist-table.loading:after {
    display: block;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    content: "";
    background: #ffffff;
    opacity: 0.5;
    z-index: 5;
}
 
.wishlist-table.loading:before {
    display: block;
    width: 24px;
    height: 24px;
    position: absolute;
    top: 50%;
    left: 50%;
    margin-top:-12px;
    margin-left:-12px;
    content: "";
    background-image: url('../images/loading.svg');
    background-repeat: no-repeat;
    background-size: 100%;
    z-index: 6;
}
 
.wishlist-table td {
    position: relative;
}
 
.wishlist-table a.details {
    padding:4px 16px;
    background: #000000;
    color: #ffffff;
    text-align: center;
    border:none !important
}
 
.wishlist-table a.wishlist-remove {
    display: block;
    width: 24px;
    height: 24px;
    position: absolute;
    top: 50%;
    left: 50%;
    margin-top:-12px;
    margin-left:-12px;
    font-weight: 900;
    content: "\f1f8";
    /*background-image: url('../images/remove.svg');
    background-repeat: no-repeat;
    background-size: 100%;*/
    z-index: 6;
    border:none;
    opacity:1;
    fill: #e8e8e8;
}
 
.wishlist-table td:hover > a.wishlist-remove {
    opacity:1;
}
.wishlist-remove{
  display: 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;
}

.wishlist-remove:hover{
  background-color: red !important;
  color: #fff !important;
}
.objetosMovil{
    display: none;
}
@media only screen and (max-width: 767px) {
    .objetosPc{
        display: none;
    }
    .objetosMovil{
        display: block;
    }
}