.popup {
  border-radius: 5px;
  box-shadow: 0px 0px 9px 0px rgba(0, 0, 0, 0.1);
  position: absolute;
  top: 10px;
  right: 10px;
  font-size: 12px;
  width: 50%;
  max-width: 300px;
  height: 80px;
  padding: 0 20px;
  color: #fff;
  animation: popup-show 0.5s ease forwards;
}
.popup.error {
  background-color: #f44336;
}
.popup.success {
  background-color: #4caf50;
}
.popup.info {
  background-color: #2196f3;
}
.popup.warn {
  background-color: #ff9800;
}
.popup .popup-title {
  font-size: 16px;
  font-weight: 600;
}
.popup .close {
  position: absolute;
  top: 10px;
  right: 10px;
  cursor: pointer;
}

@keyframes popup-show {
  0% {
    transform: translate(400px, 0px);
  }
  100% {
    transform: translate(0px, 0px);
  }
}
@keyframes popup-hide {
  0% {
    transform: translate(0px, 0px);
  }
  100% {
    transform: translate(400px, 0px);
  }
}/*# sourceMappingURL=popup.css.map */