#toastify {
  position: fixed;
  top: calc(100px);
  right: 80px;
  max-width: 100%;
  color: #fff;
  padding: 10px 24px;
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(0, 0, 0);
  opacity: 0;
  visibility: hidden;
  transition: all 0.3 ease;
  z-index: 99999;
}

#toastify.active {
  opacity: 1;
  visibility: visible;
}

#toastify.success {
  background-color: green;
}

#toastify.error {
  background-color: red;
}
