/******* Do not edit this file *******
Simple Custom CSS and JS - by Silkypress.com
Saved: Jun 23 2025 | 09:36:41 */
/* CSS */
.heart-float {
  width: 80px;
  height: 80px;
  position: relative;
  animation: heartbeat 1s infinite;
}

.heart-float img {
  width: 100%;
  height: 100%;
  display: block;
}

@keyframes heartbeat {
  0% {
    transform: scale(1);
  }
  14% {
    transform: scale(1.3);
  }
  28% {
    transform: scale(1);
  }
  42% {
    transform: scale(1.3);
  }
  70% {
    transform: scale(1);
  }
  100% {
    transform: scale(1);
  }
}
