#full-screen-bg {
  position:fixed;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: rgba(0,0,0,.5);
  z-index: 999;
  display: flex;
  align-items: center;
  justify-content: center;
  display: none;
}

.full-screen-bg {
  position:fixed;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: rgba(0,0,0,.25);
  z-index: 999;
  display: flex;
  align-items: center;
  justify-content: center;
  display: none;
}

.dialog-wrap {
  /* max-width: 500px; */
  min-width: 500px;
  background-color: #fff;
  /* width: 100%; */
}

.dialog-wrap .frm-body {
  padding: 24px;
}

.dialog-wrap .title {
  font-size: 1.5em;
  background-color: #444;
  color: #fff;
  padding: 1em;
}

.dialog-wrap .msg {
  font-size: 1em;
  margin-top: 1em;
  padding: 1em;
}

.dialog-wrap .footer {
  /* margin-top: 1em; */
  border-top: 1px solid rgba(0,0,0,.1);
  padding: 1em;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: var(--main-light-grey);
}

.dialog-wrap .footer button {
  margin-right: 1em;
}

.dialog-wrap [data-needed="true"] {
  border: 2px solid red;
}

.dialog-wrap .frm_row {
  /* padding: 12px; */
}