.dvmrcoferta {
  position: static;
  top: auto;
  left: auto;
  display: inline-block;
  padding: 4px 7px;
  border-radius: 2px;
  background: #db2828;
  color: #fff;
  font-size: 11px;
  line-height: 1;
  text-transform: uppercase;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.22);
  opacity: 1;
  pointer-events: none;
}

.fav-heart-added {
  animation: fav-heart-pop 0.48s cubic-bezier(0.2, 0.9, 0.35, 1.3);
  filter: drop-shadow(0 2px 4px rgba(255, 87, 87, 0.42));
  transform-origin: center;
}

.fav-heart-removed {
  animation: fav-heart-out 0.24s ease-out;
  transform-origin: center;
}

@keyframes fav-heart-pop {
  0% {
    transform: scale(0.78);
    filter: drop-shadow(0 0 0 rgba(255, 87, 87, 0));
  }

  45% {
    transform: scale(1.38);
    filter: drop-shadow(0 3px 7px rgba(255, 87, 87, 0.58));
  }

  72% {
    transform: scale(0.94);
  }

  100% {
    transform: scale(1);
    filter: drop-shadow(0 2px 4px rgba(255, 87, 87, 0.42));
  }
}

@keyframes fav-heart-out {
  0% {
    transform: scale(1);
  }

  45% {
    transform: scale(0.82);
  }

  100% {
    transform: scale(1);
  }
}

@media (prefers-reduced-motion: reduce) {
  .fav-heart-added,
  .fav-heart-removed {
    animation: none;
  }
}
