.like-button {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  gap: 30px;
  margin: 32px 0
}
.c-recipe-vote-block .like-button {
  margin: 32px 0 75px
}
@media screen and (max-width:767px) {
  .like-button {
    gap: 16px
  }
}
.like-button__btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  gap: 4px;
  color: #222;
  -webkit-transition: color .3s ease-in-out;
  transition: color .3s ease-in-out;
  cursor: pointer
}
.like-button__btn > svg {
  width: 24px;
  height: 24px
}
.like-button__btn.active,
.like-button__btn:hover {
  color: #e1261c
}
.like-button__btn > span {
  color: #222
}