.favorite-btn {
  padding: 8px;
  width: 40px;
  height: 40px;
  min-height: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 8px;
  background-color: #ffffff;
  transition: all 0.3s linear;
}
.favorite-btn svg {
  width: 24px;
  height: 24px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.favorite-btn svg path {
  fill: #02888d;
  transition: all 0.3s linear;
}
.favorite-btn:hover {
  background-color: rgba(2, 136, 141, 0.1);
}