.notify-item {
  min-width: 150px;
  padding: 0.8rem 1.2rem;
  font-size: 1em;
  line-height: 1.2;
  margin-bottom: 1rem;
  animation-duration: 0.3s;
  animation-name: bounceIn;
  position: relative;
  font-family: "Courier New", Courier, monospace;
  text-align: center;
}

.notify-container {
  position: absolute;
  height: 0;
  bottom: 0;
  top: 65px;
  width: 100%;
  z-index: 100;
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* Colors */
.notify-item--default {
  background: #ffffff;
  color: hsl(0deg, 0%, 20%);
}

.notify-item--success {
  background: hsl(143deg, 55%, 62%);
  color: hsl(0deg, 0%, 20%);
}

.notify-item--danger {
  background: hsl(0deg, 88%, 68%);
  color: hsl(0deg, 0%, 20%);
}

@keyframes bounceIn {
  0% {
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    transform: scale3d(0.3, 0.3, 0.3);
  }
}/*# sourceMappingURL=notify.css.map */