

.co-dialog::backdrop { background: rgba(10, 18, 30, .58); }


.lp3-exit {
  border: 0;
  border-radius: 18px;
  padding: 26px 24px 22px;
  max-width: 360px;
  text-align: center;
  background: var(--surface, #fff);
  box-shadow: 0 24px 60px rgba(10, 18, 30, .22);
}

.lp3-exit::backdrop { background: rgba(10, 18, 30, .58); }

.lp3-exit-x { position: absolute; top: 10px; right: 10px; }
.lp3-exit-x button {
  border: 0; background: none; cursor: pointer; color: var(--muted, #7a8496);
  padding: 6px; line-height: 0; border-radius: 999px;
}
.lp3-exit-x button:focus-visible {
  outline: 2px solid var(--ink, #0f172a); outline-offset: 2px;
}
.lp3-exit-head:focus, .lp3-exit-head:focus-visible { outline: none; }
.lp3-exit-x button:hover { color: var(--ink, #0f172a); background: rgba(15, 23, 42, .06); }

.lp3-exit-head { margin: 0 0 6px; font-size: 1.15rem; font-weight: 700; }
.lp3-exit-sub { margin: 0 0 18px; font-size: .92rem; color: var(--muted, #5b6472); }
.lp3-exit-take { display: block; width: 100%; }

.lp3-exit-no {
  display: block;
  margin: 12px auto 0;
  border: 0;
  background: none;
  font: inherit;
  font-size: .85rem;
  color: var(--muted, #7a8496);
  text-decoration: underline;
  cursor: pointer;
}


.lp3-wait {
  border: 0;
  border-radius: 18px;
  padding: 28px 26px 24px;
  max-width: 380px;
  text-align: center;
  background: var(--surface, #fff);
  box-shadow: 0 24px 60px rgba(10, 18, 30, .22);
}

.lp3-wait::backdrop { background: rgba(10, 18, 30, .58); }


.lp3-wait-mark {
  width: 42px; height: 42px; margin: 0 auto 14px; border-radius: 50%;
  border: 3px solid var(--line, #e3e7ee);
  border-top-color: var(--ink, #131c2b);
  animation: lp3-spin .9s linear infinite;
}

@keyframes lp3-spin { to { transform: rotate(360deg); } }

.lp3-wait-head { margin: 0 0 4px; font-size: 1.1rem; font-weight: 700; }
.lp3-wait-sub { margin: 0 0 10px; font-size: .9rem; color: var(--muted, #5b6472); }
.lp3-wait-doc { margin: 0 0 16px; }

.lp3-wait-bar {
  height: 5px; border-radius: 999px; overflow: hidden;
  background: var(--line, #eef1f6); margin-bottom: 16px;
}

.lp3-wait-bar span {
  display: block; height: 100%; width: 38%; border-radius: 999px;
  background: var(--ink, #131c2b);
  animation: lp3-slide 1.25s ease-in-out infinite;
}

@keyframes lp3-slide {
  0%   { transform: translateX(-100%); }
  100% { transform: translateX(300%); }
}

@media (prefers-reduced-motion: reduce) {
  .lp3-wait-mark { animation: none; }
  .lp3-wait-bar span { animation: none; width: 100%; opacity: .35; }
}

.lp3-wait-steps {
  list-style: none; margin: 0; padding: 0; text-align: left;
  display: grid; gap: 10px; font-size: .9rem;
}

.lp3-wait-steps li { padding-left: 24px; position: relative; color: var(--muted, #7a8496); }
.lp3-wait-steps li b { display: block; color: var(--ink, #131c2b); font-size: .92rem; }
.lp3-wait-steps li::before {
  content: ""; position: absolute; left: 3px; top: .42em;
  width: 9px; height: 9px; border-radius: 50%; background: var(--line, #d7dce5);
}

.lp3-wait-steps li.is-live { color: var(--ink, #131c2b); }
.lp3-wait-steps li.is-live::before {
  background: var(--good, #17a673);
  box-shadow: 0 0 0 4px rgba(23, 166, 115, .16);
}

.lp3-wait-steps li.is-done { color: var(--good, #10794f); }
.lp3-wait-steps li.is-done b { color: var(--good, #10794f); }
.lp3-wait-steps li.is-done::before {
  background: none;
  box-shadow: none;
  width: 13px; height: 13px;
  left: 1px; top: .3em;
  border-radius: 0;
  background-color: var(--good, #17a673);
  -webkit-mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path d='M20 6L9 17l-5-5' fill='none' stroke='black' stroke-width='3.4' stroke-linecap='round' stroke-linejoin='round'/></svg>") center / contain no-repeat;
  mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path d='M20 6L9 17l-5-5' fill='none' stroke='black' stroke-width='3.4' stroke-linecap='round' stroke-linejoin='round'/></svg>") center / contain no-repeat;
}

.lp3-wait.is-handover .lp3-wait-mark { border-top-color: var(--good, #17a673); }

.lp3-wait.is-closing { opacity: 0; transition: opacity .22s ease; }
@media (prefers-reduced-motion: reduce) { .lp3-wait.is-closing { transition: none; } }
