.toastify {
  padding: 12px 20px;
  color: #ffffff;
  display: inline-block;
  background: -webkit-linear-gradient(315deg, #73a5ff, #5477f5);
  background: linear-gradient(135deg, #73a5ff, #5477f5);
  position: fixed;
  top: -150px;
  right: 15px;
  opacity: 0;
  transition: all 0.4s cubic-bezier(0.215, 0.61, 0.355, 1);
  border-radius: 2px;
  cursor: pointer;
  z-index: 10000;
  font-weight: 700;
  pointer-events: none !important;
}

.toastify.success {
  color: var(--x13favoriteproduct-success-font, #fff);
  background: var(--x13favoriteproduct-success-bg, linear-gradient(135deg, #229930, #03680a));
}

.toastify.removed {
  color: var(--x13favoriteproduct-removed-font, #000);
  background: var(--x13favoriteproduct-removed-bg, linear-gradient(135deg, #cecece, #ccc));
}

.toastify.error {
  color: #fff;
  background: linear-gradient(135deg, #c72727, #7c0909);
}

.toastify.on {
  opacity: 1;
}