.notify {
  position: fixed;
  z-index: 1000;
  height: auto;
  max-width: 423px;
  padding: 15px 20px;
  width: 60vw;
  filter: drop-shadow(0px 12px 20px rgba(0, 0, 0, 0.12));
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.notify.right_bottom {
  right: 20px;
  bottom: 40px;
}

.notify.left_bottom {
  left: 20px;
  bottom: 40px;
}

.notify svg {
  margin-right: 10px;
}

.notify.error {
  background: #FFEDEC;
  border: 1px solid #FFB8B4;
}

.notify.success {
  background: #D5F9D7;
  border: 1px solid #AEE7BD;
}

.notify.error div {
  color:#212529;
}

.notify.success div {
  color:#212529;
}