#toastbox {
  position: fixed;
  top: 10px;
  right: 10px;
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  overflow: hidden;
  z-index: 10000;
}
.notify {
  width: 100%;
  height: auto;
  font-weight: 700;
  padding: 5px 10px;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.3);
  display: flex;
  align-items: center;
  animation: moveRight 0.5s;
  border: #fff;
  border-radius: 5px;
}

.error {
  background: rgb(207, 66, 66);
}

.error p {
  /* margin-top: 15px; */
  margin: 0 20px;
}

.success {
  background: green;
}

.success p {
  margin-top: 15px;
}

@keyframes moveBottom {
  100% {
    transform: translateY(30%);
  }
}

.notify i {
  margin: 0 20px;
  font-size: 35px;
}

.notify p {
  margin: 10px 20px 10px 0px;
  /* margin-left: 3px; */
  font-weight: 500;
  color: #fff;
}


