.rivo-wishlist-add-button {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background-color: white;
  margin-left: 10px;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  cursor: pointer;
}
.rivo-wishlist-add-button svg {
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
  stroke: black;
}
.rivo-wishlist-add-button.active svg {
  stroke: #fc2f79;
  fill: #fc2f79;
}
.rivo-wishlist-add-button:not(.active):hover svg {
  -webkit-transform: scale(0.85);
      -ms-transform: scale(0.85);
          transform: scale(0.85);
}
