.app-dialog {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 600;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
}
.app-dialog .app-dialog-bg {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
}
.app-dialog .app-dialog-container {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  max-width: 400px;
  width: 100%;
  padding: 1rem;
}
.app-dialog .app-dialog-box {
  width: 100%;
  background-color: white;
  border-radius: 8px;
  box-shadow: rgba(0, 0, 0, 0.05) 0 16px 40px;
}
.app-dialog-header {
  display: flex;
  align-items: flex-start;
  padding: 1.5rem 1.5rem 0;
  border-bottom: #e9ecef;
}
.app-dialog-header h3 {
  flex: 1;
  margin: 0;
  color: black;
  font-size: 1.875em;
  font-weight: 600;
}
.app-dialog-body {
  padding: 1.5rem;
}
.app-dialog-body > div {
  display: block !important;
}
.app-dialog-close {
  cursor: pointer;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 2rem;
  height: 2rem;
  padding: 0;
  margin: 0;
  color: black;
  font-size: 1rem;
  background-color: #e9ecef;
  border-radius: 12px;
  outline: none;
  border: none;
  transition: background-color 250ms;
}
.app-dialog-close ion-icon {
  color: black;
  font-size: 1rem;
}
.app-dialog-close:focus {
  outline: none !important;
}
.app-dialog-close:hover {
  background-color: #e9ecef;
}
.app-dialog-close:active {
  background-color: #dee2e6;
}
.app-dialog-footer {
  display: flex;
  border-radius: 0 0 8px 8px;
  overflow: hidden;
  border-top: 1px solid #e9ecef;
}
.app-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;
}
.app-dialog-footer > button:hover {
  color: #868e96;
  background-color: #f8f9fa;
}
.app-dialog-footer > button:active {
  color: #495057;
  background-color: #f1f3f5;
}
.app-dialog-footer > button[type="submit"] {
  color: white;
  background-color: red;
}
.app-dialog-footer > button[type="submit"]:hover {
  background-color: #e60000;
}
.app-dialog-footer > button[type="submit"]:active {
  background-color: #c00;
}
.app-dialog {
  opacity: 0;
  visibility: hidden;
  user-select: none;
  pointer-events: none;
  transition: 0.3s ease;
}
.app-dialog .app-dialog-box {
  transition: 0.3s ease;
  transform: translateY(-1rem);
}
.app-dialog.active {
  opacity: 1;
  visibility: visible;
  user-select: initial;
  pointer-events: initial;
}
.app-dialog.active .app-dialog-box {
  transform: translateY(0);
}
/*# sourceMappingURL=02ce69843f57d487e212c07d6fedf894372bd1ad.dialog.scss.map */
