.al-dialog {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 600;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  opacity: 0;
  visibility: hidden;
  user-select: none;
  pointer-events: none;
}
.al-dialog .al-dialog-bg {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
}
.al-dialog .al-dialog-container {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  max-width: 400px;
  width: 100%;
  padding: 1rem;
}
.al-dialog .al-dialog-box {
  width: 100%;
  background-color: white;
  border-radius: 8px;
  box-shadow: rgba(0, 0, 0, 0.05) 0 16px 40px;
}
.al-dialog.active {
  opacity: 1;
  visibility: visible;
  user-select: initial;
  pointer-events: initial;
}
.al-dialog-header {
  display: flex;
  align-items: center;
  padding: 1.5em 1.5em 0;
  border-bottom: #e9ecef;
}
.al-dialog-header h3 {
  flex: 1;
  margin: 0;
  color: black;
  font-size: 1.5em;
  font-weight: 600;
}
.al-dialog-body {
  padding: 1.5em;
}
.al-dialog-body > div {
  display: block !important;
}
.al-dialog-close {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 2rem;
  height: 2rem;
  padding: 0;
  margin: 0;
  color: black;
  font-size: 1rem;
  background-color: #f1f3f5;
  border-radius: 100%;
  outline: none;
  border: none;
  transition: background-color 250ms;
}
.al-dialog-close:focus {
  outline: none !important;
}
.al-dialog-close:hover {
  background-color: #e9ecef;
}
.al-dialog-close:active {
  background-color: #dee2e6;
}
.al-dialog-footer {
  display: flex;
  border-radius: 0 0 8px 8px;
  overflow: hidden;
  border-top: 1px solid #e9ecef;
}
.al-dialog-footer > button {
  flex: 1;
  cursor: pointer;
  display: block;
  padding: 1em;
  margin: 0;
  color: #adb5bd;
  font-size: 14px;
  font-weight: 600;
  border: none;
  outline: none;
  background-color: transparent;
  transition: 0.2s ease;
}
.al-dialog-footer > button:hover {
  color: #868e96;
  background-color: #f8f9fa;
}
.al-dialog-footer > button:active {
  color: #495057;
  background-color: #f1f3f5;
}
.al-dialog-footer > button[type="submit"] {
  color: white;
  background-color: #247bff;
}
.al-dialog-footer > button[type="submit"]:hover {
  background-color: #206fe6;
}
.al-dialog-footer > button[type="submit"]:active {
  background-color: #1d62cc;
}
/*# sourceMappingURL=f0235db40e540ac7b0175cfbadee94ed284e7d44.dialog.scss.map */
