/*
 * Copyright inpleworks, Co.
 * https://xetemplate.com
*/
/* * for supported in all modern browsers * Copyright inpleworks, Co. * https://xetemplate.com */
dialog.dialog {
  width: 100%;
  max-width: 480px;
  padding: 0 1rem;
  border: 0;
  background: none;
}
dialog.dialog::backdrop {
  background-color: rgba(45, 45, 45, 0.85);
  backdrop-filter: blur(2px);
}
dialog.dialog .dialog_container {
  position: relative;
  border-radius: 1rem;
  color: var(--xet-theme-text-strong-color);
  background-color: var(--xet-theme-content-bg-color);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}
dialog.dialog .dialog_container .dialog__title {
  text-align: center;
  padding: 1rem;
  font-size: 1.25rem;
  font-weight: 700;
  border-bottom: 1px solid var(--xet-theme-border-color);
}
dialog.dialog .dialog_container .dialog__title .profile-image {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  border-radius: 40px;
  overflow: hidden;
  background-color: rgba(0, 0, 0, 0.1);
}
dialog.dialog .dialog_container .dialog__title .profile-image > img {
  width: 100%;
  object-fit: cover;
}
dialog.dialog .dialog_container .dialog__body {
  padding: 1rem;
  padding-bottom: 2rem;
}
dialog.dialog .dialog_container .dialog__body ul > li {
  display: block;
}
dialog.dialog .dialog_container .dialog__body ul > li + li {
  margin-top: 0.5rem;
}
dialog.dialog .dialog_container .dialog__body ul > li > a, dialog.dialog .dialog_container .dialog__body ul > li > button {
  display: block;
  cursor: pointer;
  font-size: 1rem;
  line-height: 1.6;
  color: inherit;
  padding: 0;
  border: 0;
  background: none;
}
dialog.dialog .dialog_container .dialog__body ul > li:hover a, dialog.dialog .dialog_container .dialog__body ul > li:hover button {
  text-decoration: underline;
}
dialog.dialog .dialog_container .dialog__form {
  padding: 1rem;
  padding-bottom: 2rem;
}
dialog.dialog .dialog_container .dialog__form .xet-form .control-group + .control-group {
  margin-top: 1rem;
}
dialog.dialog .dialog_container .dialog__form .xet-form .control-group .controls + .controls {
  margin-top: 4px;
}
dialog.dialog .dialog_container .dialog__form .xet-form .control-group.find {
  display: flex;
  flex-direction: row;
  justify-content: center;
  gap: 1rem;
}
dialog.dialog .dialog_container .dialog__form .xet-form .control-group.find a {
  color: var(--xet-theme-text-base-color);
}
dialog.dialog .dialog_container .dialog__close {
  text-align: right;
}
dialog.dialog .dialog_container .dialog__close .btn-dialog-close {
  width: 38px;
  height: 38px;
  padding: 0;
  font-size: 1.5rem;
}
dialog.dialog[open] {
  animation: fadeIn 0.3s ease-out;
}
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@media (min-width: 1024px) {
  dialog.dialog .dialog_container .dialog__body {
    padding: 2rem;
    padding-bottom: 3rem;
  }
  dialog.dialog .dialog_container .dialog__form {
    padding: 2rem;
    padding-bottom: 3rem;
  }
}
body.color_scheme_dark dialog.dialog .dialog_container {
  color: var(--xet-theme-dark-text-strong-color);
  background-color: var(--xet-theme-dark-bg-color);
}
body.color_scheme_dark dialog.dialog .dialog_container .dialog__title {
  border-color: var(--xet-theme-dark-border-color);
}
body.color_scheme_dark dialog.dialog .dialog_container .dialog__form .xet-form .control-group.find a {
  color: var(--xet-theme-dark-text-base-color);
}
/*# sourceMappingURL=5424bc2455944231c7192719d51a1207dd724abb.modal.scss.map */
