.favorite-button {
  position: fixed;
  top: 40vh;
  right: -4.5rem;
  z-index: 10;
  transition: 0.2s all;
}
.favorite-button button {
  display: flex;
  align-items: center;
  padding-left: 2rem;
  height: 50px;
  width: 8.75rem;
  background-image: url("/images/common/favorite.webp");
}
.favorite-button button i {
  display: inline-block;
  width: 2rem;
  height: 2rem;
}
.favorite-button button span {
  font-size: 0.75rem;
  opacity: 0;
  transition: 0.2s all;
}
.favorite-button:hover {
  right: 0;
}
.favorite-button:hover button span {
  opacity: 1;
}

@media (max-width: 768px) {
  .favorite-button {
    top: 25vh;
  }
}

/*# sourceMappingURL=favorite-button.css.map */
