.modal-container{
  /* margin-top: 2rem; */
  max-height: 80vh;
  width: 100%;
  /* max-width: 500px; */
  /*  */
  background-color: #fff;
  box-shadow: 0 15px 30px 0 rgba(0, 0, 0, 0.25);
  border-radius: 16px;
  overflow: hidden;
  /*  */
  display: flex;
  flex-direction: column;
  border: 4px solid #eee;

  cursor: default;
}

/* - - - - - - - - - - - - - - - - - - - - - - - - */
.modal-header {
  padding: 16px 32px;
  background: #eaecee;
  /* var(--back-headline); */
  border-bottom: 1px solid #ddd;
  user-select: none;
  /*  */
  display: flex;
  justify-content: space-between;
  align-items: center;
  /* border: 2px solid red; */
}

/* - - - - - - - - - - - - - - - - - - - - - - - - */
.modal-title {
  font-weight: 700;
  /* font-size: 1.125; */
  font-size: 100%;
  line-height: 1;
  text-transform: capitalize;
  /*  */
  display: flex;
  align-items: center;
  gap: 8px;
}

.modal-title svg {
  width: 32px;
  height: 32px;
  color: #750550;
}

/* - - - - - - - - - - - - - - - - - - - - - - - - */
.modal-body {
  padding: 24px 32px 51px;
  font-size: 1.5rem;
  overflow-y: auto;


   -ms-word-break: break-all;
    word-break: break-all;

 /* Non standard for webkit */
     word-break: break-word;

    -webkit-hyphens: auto;
       -moz-hyphens: auto;
        -ms-hyphens: auto;
            hyphens: auto;
}

.modal-body h1,
.modal-body h2,
.modal-body h3,
.modal-body h4,
.modal-body h5,
.modal-body h6 {
  font-weight: 700;
}

.modal-body h1 {
  font-size: 1.5rem;
  line-height: 1.125;
}

.modal-body h2 {
  font-size: 1.25rem;
  line-height: 1.25;
}

.modal-body h3 {
  font-size: 1.5rem;
  line-height: 1.5;
}

.modal-body > * + * {
  margin-top: 1em;
}

.modal-body > * + :is(h1, h2, h3) {
  margin-top: 2em;
}

.modal-body > :is(h1, h2, h3) + * {
  margin-top: 0.75em;
}

.modal-body ul,
.modal-body ol {
  margin-left: 20px;
  list-style-position: inside;
}

.modal-body ol {
  list-style: numeric;
}

.modal-body ul {
  list-style: disc;
}
/* - - - - - - - - - - - - - - - - - - - - - - - - */
.modal-footer {
  padding: 20px 32px;
  /* border-top: 1px solid #ddd; */
  background: #eaecee;
  user-select: none;
  /*  */
  display: flex;
  justify-content: flex-end;
  align-items: center;
  /*  */
  gap: 12px;
  position: relative;
}

.modal-footer:after {
  content: "";
  display: block;
  /*  */
  position: absolute;
  top: -51px;
  left: 24px;
  right: 24px;
  height: 50px;
  /*  */
  flex-shrink: 0;
  background-image: linear-gradient(to top, rgba(255, 255, 255, 0.75), transparent);
  pointer-events: none;
}

/* - - - - - - - - - - - - - - - - - - - - - - - - */
.modal-btn {
  padding: 10px 14px;
  border-radius: 8px;
  /* background-color: transparent; */
  border: 0;
  font-size: 1.2rem;
  font-weight: 600;
  cursor: pointer;
  transition: 0.15s ease;
}

.modal-btn.is-ghost:hover,
.modal-btn.is-ghost:focus {
  background-color: #dfdad7;
}

.modal-btn:focus-visible {
  outline: 2px solid lightgray;
}

/* Focusing the button with a mouse, touch, or stylus will show a subtle drop shadow. */
.modal-btn:focus:not(:focus-visible) {
  outline: none;
  /* box-shadow: 1px 1px 5px rgba(1, 1, 0, .7); */
}

.del-ad {
  position: fixed;
  top: 10px;
  left: 10px;
  color: transparent;
}

