.app-toast {
  position: fixed;
  left: 50%;
  bottom: 3rem;
  z-index: 10000;
  padding: 1rem 1.25rem;
  color: white;
  font-size: 0.875rem;
  font-weight: 500;
  text-align: center;
  border-radius: 5rem;
  background-color: #247bff;
  box-shadow: rgba(0, 0, 0, 0.2) 0 4px 20px;
  transform: translateX(-50%);
}
.app-toast.v-enter-active, .app-toast.v-leave-active {
  transition: opacity 0.3s, transform 0.3s ease;
}
.app-toast.v-enter, .app-toast.v-leave-active {
  opacity: 0;
  transform: translate(-50%, 0.5rem);
}
.app-toast.success {
  background-color: #13ce66;
}
.app-toast.info {
  background-color: #2957ff;
}
.app-toast.warn {
  background-color: #f7ba2a;
}
.app-toast.danger {
  background-color: #ff5a57;
}
/*# sourceMappingURL=a06e5d9e549cfbf89095897cd03804cb26f795cf.toast.scss.map */
