#favouriteActions{
  display: inline-block;

}

.details-info #favouriteActions {
  padding: 0 4px 0 0;
  position: relative;
  top: -1px;
} 
.fav {
  display: none;
  margin: 0;
  background: none !important;
  text-align: center !important;
}

.fav:after {
display: none !important;
}

#product .product-actions .fav {
  display: none;
  margin: 0;
  background: none !important;
  border: 1px solid #000;
  width: 60px;
  height: 60px;
  justify-content: center;
  align-items: center;
}

@media (max-width:400px){
  #product .product-actions .fav {
    width: 50px;
  }
}

#product .product-actions .fav.active, .fav.active {
  display: flex;
}

.fav:hover,
.fav:focus {
  text-decoration: none;
  color: #e6294b;
}

.fav.no-login {
  display: inline-block;
}

#product .product-actions #favouriteActions{
  margin-left: 10px;
}

@media (max-width:400px){
  
  #product .product-actions #favouriteActions{
    margin-left: 5px;
  }

}

.fav i, #_desktop_favouriteproducts i{
  -webkit-animation: animateHeart 1.2s infinite;
  animation: animateHeart 1.2s infinite;
  animation-play-state: paused;
  -webkit-transform: scale(1);
  transform: scale(1);
  display: inline-block;
}

#_desktop_favouriteproducts a:hover i,
.fav:hover i,
.fav:focus i{
  text-decoration: none;
  animation-play-state: running;
  color: #e6294b;
}


@keyframes animateHeart {
  0% {
    transform: scale(1);
  }
  15% {
    transform: scale(1.1);
  }
  30% {
    transform: scale(1);
  }
  45% {
    transform: scale(1.2);
  }
  70% {
    transform: scale(1);
  }
  100% {
    transform: scale(1);
  }
}
