/*** zyber design dialog  2021-07-29 ***/
.zybd-dialog   {
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(0, 0, 0, 0.7);
  justify-content: center;
  align-items: center;
  z-index: 11;
}

.zybd-dialog.hide {
  display: none;
  z-index: -1;
}

.zybd-dialog-container {
  width: 36rem;
  max-width: 98%;
  min-height: 12rem;
  max-height: 98%;
  flex-flow: column;
  justify-content: flex-start;
  align-items: center;
  background: #dadada;
  padding: 2rem;
  position: relative;
}

.zybd-dialog .close::after {
  content: "X";
  position: absolute;
  top: 0.25rem;
  right: 0.5rem;
  color: #101010;
  font-weight: 700;
  cursor: pointer;
}

.zybd-dialog-content {
  padding: 1.25rem 0;
  color: #303030;
  flex-flow: column;
  align-items: center;
}

.zybd-dialog-button {
  margin-top: auto;
  display: flex;
  cursor: pointer;
}

.zybd-dialog .message {
  margin: 0.25rem;
  max-width: 80%;
  width: 25rem;
}