.toaster {
  position: fixed;
  bottom: 10px;
  right: 10px;
  width: auto;
  max-width: 300px;
  padding: 10px 20px;
  height: auto;
  -webkit-transform: translateY(100px);
          transform: translateY(100px);
  -webkit-transition: -webkit-transform 1s cubic-bezier(0.075, 0.82, 0.165, 1);
  transition: -webkit-transform 1s cubic-bezier(0.075, 0.82, 0.165, 1);
  transition: transform 1s cubic-bezier(0.075, 0.82, 0.165, 1);
  transition: transform 1s cubic-bezier(0.075, 0.82, 0.165, 1), -webkit-transform 1s cubic-bezier(0.075, 0.82, 0.165, 1);
  color: white;
  border-radius: 5px;
  z-index: 5;
}

.toaster.show {
  -webkit-transform: translateY(0);
          transform: translateY(0);
}

.toaster.error {
  background: #ff5a5a;
}

.toaster.success {
  background: #1bbc9b;
}
/*# sourceMappingURL=toaster.css.map */