.modal {
  display: none;
  background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)), url(/images/adobe-stock-security-shield.jpg) center center / cover no-repeat !important;
  border: none;
  width: 530px !important;
  min-height: 350px !important;
  box-shadow: 0 4px 20px 0 rgba(0, 0, 0, 0.25);
  border-radius: 15px;
  padding: 1rem;
  font-family: Verdana, Geneva, Tahoma, sans-serif;
}
.modal > header {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
}
.modal > header > span {
  font-size: 16px;
  color: #fff;
}
.modal > header > .dlg-close {
  cursor: pointer;
  font-size: 24px;
  color: #fff;
  background: none;
  border: none;
}
.dlg-body {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #fff;
}
.dlg-body table {
  width: 450px;
  margin-top: 20px;
}
.dlg-body input {
  width: 240px !important;
  height: 30px !important;
  border-radius: 4px;
  background: #F5F5F5;
}
.dlg-body input:disabled {
  background-color: #E0E0E0;
  cursor: not-allowed;
}
.dlg-body input.iti__tel-input {
  width: 246px !important;
  height: 36px !important;
  
}

.dlg-body .action-button {
  margin-top: 11px;
  height: 40px;
  width: 246px;
  border-radius: 6px;
  border: 1px solid #FFF;
  /*opacity: 0.58;*/
  color: #fff;
  background: linear-gradient(92deg, rgba(255, 255, 255, 0.50) -10.13%, rgba(255, 255, 255, 0.20) 105.96%);
  box-shadow: 0 20px 40px 0 rgba(0, 0, 0, 0.10);
  backdrop-filter: blur(10px);
  cursor: pointer;
}
.dlg-body .action-button:disabled {
  opacity: 0.3;
  cursor: not-allowed;
}
.dlg-body .edit-icon svg {
  cursor: pointer;
}

.dlg-body hr {
  margin: 33px 0;
  background: #6B6B6B;
}

/* Invisible but click-blocking overlay */
.ui-widget-overlay {
  position: fixed; /* cover the viewport */
  inset: 0;
  background: transparent;
  opacity: 1;
  z-index: 10000;
}
.ui-dialog { z-index: 10001; }