.toastify {
  padding: 8px 15px;
  color: #ffffff;
  display: inline-block;
  background: #1b8bea;
  position: fixed;
  top: -150px;
  right: 15px;
  opacity: 0;
  transition: all 0.4s cubic-bezier(0.215, 0.61, 0.355, 1);
  border-radius: 5px;
  cursor: pointer;
  z-index: 100;
  font-size: 14px;
  font-weight: 500;
  pointer-events: none !important;
}

.toastify.success {
  color: var(--x13favoriteproduct-success-font, #fff);
  background: var(--x13favoriteproduct-success-bg, #31cf66);
  font-weight: 600;
}

.toastify.removed {
  color: var(--x13favoriteproduct-removed-font, #000);
  background: var(--x13favoriteproduct-removed-bg, #E3E3E3);
}

.toastify.error {
  background: #f05423;
  color: #fff;
}

.toastify.on {
  opacity: 1;
}