.modal-alert {
  background: rgba(255, 255, 255, 0.9);
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 300ms;
}
.modal-alert .color-danger,
.modal-alert .text-danger {
  color: #ff0031;
}
.modal-alert > .ma-container {
  background: #fff;
  padding: 2rem 3rem;
  box-shadow: rgba(50, 50, 93, 0.25) 0 30px 60px -12px, rgba(0, 0, 0, 0.3) 0 18px 36px -18px;
  border-radius: 0.5rem;
  max-width: 500px;
  min-width: 150px;
  font-size: 0.9em;
}
.modal-alert > .ma-container > .ma-title {
  font-size: 1.3em;
  margin-bottom: 10px;
}
.modal-alert > .ma-container > .ma-title.center {
  text-align: center !important;
}
.modal-alert > .ma-container > .ma-content.center {
  text-align: center !important;
}
.modal-alert .ma-actions {
  text-align: center;
  margin-top: 20px;
}
.modal-alert .ma-actions .btn-default:hover {
  background: #ff0031;
}
.modal-alert .ma-actions button {
  margin: 0 !important;
  padding: 0.5rem 1rem !important;
  border-radius: 5px !important;
}
.modal-alert .ma-actions button:last-child {
  margin-left: 8px !important;
}
.modal-alert .ma-actions button.btn-clean {
  background-color: transparent !important;
  color: #000 !important;
}
.modal-alert .ma-actions button.btn-clean:hover {
  background-color: rgba(0, 0, 0, 0.05) !important;
}
/*# sourceMappingURL=alert.css.map */