@charset "UTF-8";

/* node_modules/@angular/cdk/overlay-prebuilt.css */
.cdk-overlay-container,
.cdk-global-overlay-wrapper {
  pointer-events: none;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
}
.cdk-overlay-container {
  position: fixed;
  z-index: 1000;
}
.cdk-overlay-container:empty {
  display: none;
}
.cdk-global-overlay-wrapper {
  display: flex;
  position: absolute;
  z-index: 1000;
}
.cdk-overlay-pane {
  position: absolute;
  pointer-events: auto;
  box-sizing: border-box;
  z-index: 1000;
  display: flex;
  max-width: 100%;
  max-height: 100%;
}
.cdk-overlay-backdrop {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  pointer-events: auto;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  transition: opacity 400ms cubic-bezier(0.25, 0.8, 0.25, 1);
  opacity: 0;
}
.cdk-overlay-backdrop.cdk-overlay-backdrop-showing {
  opacity: 1;
}
.cdk-high-contrast-active .cdk-overlay-backdrop.cdk-overlay-backdrop-showing {
  opacity: .6;
}
.cdk-overlay-dark-backdrop {
  background: rgba(0, 0, 0, .32);
}
.cdk-overlay-transparent-backdrop {
  transition: visibility 1ms linear, opacity 1ms linear;
  visibility: hidden;
  opacity: 1;
}
.cdk-overlay-transparent-backdrop.cdk-overlay-backdrop-showing {
  opacity: 0;
  visibility: visible;
}
.cdk-overlay-backdrop-noop-animation {
  transition: none;
}
.cdk-overlay-connected-position-bounding-box {
  position: absolute;
  z-index: 1000;
  display: flex;
  flex-direction: column;
  min-width: 1px;
  min-height: 1px;
}
.cdk-global-scrollblock {
  position: fixed;
  width: 100%;
  overflow-y: scroll;
}

/* src/styles.scss */
:root {
  color-scheme: light;
  accent-color: var(--teal);
  --teal: #0FB5AE;
  --teal-deep: #0B7C8C;
  --teal-900: #073C45;
  --mint: #E9FBF8;
  --mint-2: #C9F3ED;
  --line: #E5EEEF;
  --ink: #0F2A2E;
  --slate: #5E747A;
  --bg: #F4F8F9;
  --card: #FFFFFF;
  --violet: #6C5CE7;
  --violet-soft: #ECEAFB;
  --amber: #F0A93C;
  --green: #16A37B;
  --red: #E2674F;
  --grad:
    linear-gradient(
      135deg,
      #11B7AF 0%,
      #0B7C8C 100%);
  --r: 16px;
  --shadow: 0 6px 20px rgba(11, 124, 140, .07);
  --side: 248px;
  --topbar-h: 62px;
}
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  -webkit-tap-highlight-color: transparent;
}
html,
body {
  height: 100%;
}
body {
  font-family:
    "Montserrat",
    system-ui,
    sans-serif;
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
}
button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}
input,
select {
  font-family: inherit;
}
input[type=number]::-webkit-inner-spin-button,
input[type=number]::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
input[type=number] {
  -moz-appearance: textfield;
}
svg {
  display: block;
}
a {
  color: inherit;
}
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
.phead {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 18px;
}
.phead .h {
  font-size: 22px;
  font-weight: 800;
  letter-spacing: -0.4px;
}
.phead .s {
  font-size: 13px;
  color: var(--slate);
  font-weight: 500;
  margin-top: 4px;
}
.section-lab {
  font-size: 12px;
  font-weight: 800;
  color: var(--ink);
  margin: 22px 2px 10px;
  text-transform: uppercase;
  letter-spacing: 0.4px;
  opacity: 0.7;
}
.card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--r);
  padding: 18px;
  box-shadow: var(--shadow);
}
.card + .card,
.mt14 {
  margin-top: 14px;
}
.row {
  display: flex;
  align-items: center;
  gap: 12px;
}
.between {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.muted {
  color: var(--slate);
}
.b6 {
  font-weight: 600;
}
.b7 {
  font-weight: 700;
}
.b8 {
  font-weight: 800;
}
.fz10 {
  font-size: 10px;
}
.fz11 {
  font-size: 11px;
}
.fz12 {
  font-size: 12px;
}
.fz13 {
  font-size: 13px;
}
.fz14 {
  font-size: 14px;
}
.mt4 {
  margin-top: 4px;
}
.mt8 {
  margin-top: 8px;
}
.mt12 {
  margin-top: 12px;
}
.mt16 {
  margin-top: 16px;
}
.divider {
  height: 1px;
  background: var(--line);
  margin: 14px 0;
}
.badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  background: var(--mint);
  color: var(--teal-deep);
  font-size: 10px;
  font-weight: 700;
  padding: 3px 9px;
  border-radius: 20px;
}
.badge.violet {
  background: var(--violet-soft);
  color: var(--violet);
}
.badge.green {
  background: #E2F6EF;
  color: var(--green);
}
.badge.amber {
  background: #FCF1E0;
  color: #B5751A;
}
.kv {
  display: flex;
  justify-content: space-between;
  font-size: 13px;
  padding: 5px 0;
}
.kv .k {
  color: var(--slate);
  font-weight: 600;
}
.kv .v {
  font-weight: 700;
}
.hide {
  display: none;
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: var(--grad);
  color: #fff;
  font-weight: 700;
  font-size: 13.5px;
  padding: 12px 18px;
  border-radius: 12px;
  box-shadow: 0 8px 18px rgba(11, 124, 140, 0.22);
  transition: 0.12s;
}
.btn:active {
  transform: translateY(1px);
}
.btn.block {
  width: 100%;
}
.btn.ghost {
  background: #fff;
  color: var(--teal-deep);
  border: 1.5px solid var(--mint-2);
  box-shadow: none;
}
.btn.danger {
  background: #fff;
  color: var(--red);
  border: 1.5px solid #F4D5CD;
  box-shadow: none;
}
.btn.sm {
  padding: 9px 14px;
  font-size: 12.5px;
  border-radius: 10px;
  box-shadow: none;
}
.field {
  margin-top: 14px;
}
.field label {
  display: block;
  font-size: 11.5px;
  font-weight: 700;
  color: var(--slate);
  margin-bottom: 6px;
}
.inp {
  width: 100%;
  background: #fff;
  border: 1.5px solid var(--line);
  border-radius: 11px;
  padding: 11px 12px;
  font-size: 13.5px;
  font-weight: 600;
  color: var(--ink);
  outline: none;
}
input,
textarea,
select,
button {
  color-scheme: light;
}
select.inp {
  background-color: #fff;
  color: var(--ink);
  -webkit-appearance: none;
  appearance: none;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%235E747A' stroke-width='2.6' stroke-linecap='round' stroke-linejoin='round'><path d='M6 9l6 6 6-6'/></svg>");
  background-repeat: no-repeat;
  background-position: right 12px center;
  padding-right: 34px;
}
.inp::placeholder {
  color: var(--slate);
  font-weight: 500;
}
.inp:focus {
  border-color: var(--teal);
}
textarea.inp {
  resize: vertical;
  font-family: inherit;
  line-height: 1.5;
}
input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
select:-webkit-autofill,
textarea:-webkit-autofill {
  -webkit-box-shadow: 0 0 0 1000px #fff inset;
  box-shadow: 0 0 0 1000px #fff inset;
  -webkit-text-fill-color: var(--ink);
  caret-color: var(--ink);
}
.fr {
  display: flex;
  gap: 12px;
}
.fr > * {
  flex: 1;
}
.note {
  background: var(--mint);
  border-radius: 11px;
  padding: 12px;
  font-size: 11.5px;
  color: var(--teal-deep);
  font-weight: 600;
  line-height: 1.5;
  display: flex;
  gap: 8px;
}
.note.violet {
  background: var(--violet-soft);
  color: #4b3fc4;
}
.prof-av {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--grad);
  color: #fff;
  font-weight: 800;
  font-size: 11px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex: none;
  overflow: hidden;
}
.prof-av-lg {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--grad);
  color: #fff;
  font-weight: 800;
  font-size: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex: none;
  overflow: hidden;
}
.prof-av img,
.prof-av-lg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.btn:disabled,
.btn[disabled] {
  background: #ccd6d7;
  box-shadow: none;
  cursor: not-allowed;
}
.rev-reply {
  margin-top: 9px;
  border-left: 2.5px solid var(--mint-2);
  padding: 2px 0 3px 11px;
}
.rev-act {
  color: var(--teal-deep);
  font-weight: 700;
  font-size: 11px;
  cursor: pointer;
}
.rev-act.del {
  color: var(--red);
}
.rev-replylink {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  color: var(--teal-deep);
  font-weight: 700;
  font-size: 12px;
  cursor: pointer;
}
.rev-ta {
  width: 100%;
  box-sizing: border-box;
  border: 1.5px solid var(--mint-2);
  border-radius: 10px;
  padding: 9px 11px;
  font-size: 12.5px;
  font-family: inherit;
  color: var(--ink);
  outline: none;
  min-height: 56px;
  resize: vertical;
}
:root {
  color-scheme: light;
  accent-color: var(--teal);
  --teal:#0FB5AE;
  --teal-deep:#0B7C8C;
  --teal-900:#073C45;
  --mint:#E9FBF8;
  --mint-2:#C9F3ED;
  --line:#E5EEEF;
  --ink:#0F2A2E;
  --slate:#5E747A;
  --bg:#F4F8F9;
  --card:#FFFFFF;
  --violet:#6C5CE7;
  --violet-soft:#ECEAFB;
  --amber:#F0A93C;
  --green:#16A37B;
  --red:#E2674F;
  --grad:linear-gradient(
      135deg,#11B7AF 0%,#0B7C8C 100%);
  --r:16px;
  --shadow:0 6px 20px rgba(11,124,140,.07);
  --side:248px;
  --topbar-h:62px;
}
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html,
body {
  height: 100%;
}
body {
  font-family:
    "Montserrat",
    system-ui,
    sans-serif;
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
}
button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}
input,
select {
  font-family: inherit;
}
input[type=number]::-webkit-inner-spin-button,
input[type=number]::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
input[type=number] {
  -moz-appearance: textfield;
}
svg {
  display: block;
}
a {
  color: inherit;
  text-decoration: none;
}
.app {
  display: flex;
  min-height: 100vh;
}
.sidebar {
  width: var(--side);
  flex: none;
  background: #fff;
  border-right: 1px solid var(--line);
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  display: flex;
  flex-direction: column;
  z-index: 30;
}
.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 20px 20px 16px;
}
.brand .mark {
  width: 34px;
  height: 34px;
  border-radius: 10px;
  background: var(--grad);
  display: grid;
  place-items: center;
  color: #fff;
  font-weight: 800;
  font-size: 16px;
}
.brand .wm {
  font-weight: 800;
  font-size: 18px;
  letter-spacing: -0.4px;
}
.brand .tag {
  font-size: 9px;
  font-weight: 700;
  color: var(--teal-deep);
  background: var(--mint);
  padding: 2px 6px;
  border-radius: 6px;
  margin-top: 2px;
  display: inline-block;
}
.nav {
  padding: 8px 12px;
  flex: 1;
}
.navitem {
  display: flex;
  align-items: center;
  gap: 11px;
  width: 100%;
  text-align: left;
  padding: 11px 12px;
  border-radius: 11px;
  font-size: 13.5px;
  font-weight: 600;
  color: #46636a;
  margin-bottom: 3px;
}
.navitem svg {
  width: 18px;
  height: 18px;
  flex: none;
  opacity: 0.8;
}
.navitem:hover {
  background: #f3f9f9;
}
.navitem.on {
  background: var(--mint);
  color: var(--teal-deep);
  font-weight: 700;
}
.navitem.on svg {
  opacity: 1;
}
.sidefoot {
  padding: 12px;
  border-top: 1px solid var(--line);
}
.mecard {
  background: #f7fbfb;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 11px;
}
.mecard .lab {
  font-size: 9.5px;
  font-weight: 700;
  color: var(--slate);
  text-transform: uppercase;
  letter-spacing: 0.4px;
}
.mecard .nm {
  font-size: 13px;
  font-weight: 800;
  margin-top: 3px;
  line-height: 1.2;
}
.mecard .sub {
  font-size: 11px;
  color: var(--slate);
  font-weight: 600;
  margin-top: 2px;
}
.mecard .sw-btn {
  margin-top: 9px;
  width: 100%;
  font-size: 11.5px;
  font-weight: 700;
  color: var(--teal-deep);
  background: #fff;
  border: 1.5px solid var(--mint-2);
  border-radius: 9px;
  padding: 7px;
}
.main {
  flex: 1;
  margin-left: var(--side);
  min-width: 0;
  display: flex;
  flex-direction: column;
}
.topbar {
  height: var(--topbar-h);
  background: rgba(244, 248, 249, 0.9);
  backdrop-filter: saturate(160%) blur(6px);
  border-bottom: 1px solid var(--line);
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 30px;
}
.ptitle {
  font-size: 16px;
  font-weight: 800;
  letter-spacing: -0.2px;
}
.profbtn-av {
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  border-radius: 50%;
  line-height: 0;
}
.topbar-right {
  display: flex;
  align-items: center;
  gap: 9px;
}
.topswitch {
  display: none;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #fff;
  border: 1.5px solid var(--line);
  color: var(--teal-deep);
  flex: none;
  cursor: pointer;
}
.topswitch svg {
  width: 18px;
  height: 18px;
}
.topswitch:active {
  background: var(--mint);
}
.profbtn-av .prof-av {
  width: 33px;
  height: 33px;
  font-size: 12px;
  box-shadow: 0 0 0 1.5px var(--line);
}
.profbtn-av:hover .prof-av {
  box-shadow: 0 0 0 2px var(--mint-2);
}
.prof-av {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--grad);
  color: #fff;
  font-weight: 800;
  font-size: 11px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex: none;
  overflow: hidden;
}
.prof-av-lg {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--grad);
  color: #fff;
  font-weight: 800;
  font-size: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex: none;
  overflow: hidden;
}
.prof-av img,
.prof-av-lg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.upl-drop {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  border: 1.5px dashed var(--mint-2);
  border-radius: 12px;
  padding: 18px 14px;
  cursor: pointer;
  background: #f8fdfd;
}
.upl-drop:hover {
  border-color: var(--teal);
  background: var(--mint);
}
.upl-have {
  display: flex;
  align-items: center;
  gap: 11px;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 10px 12px;
}
.upl-thumb {
  width: 42px;
  height: 42px;
  border-radius: 9px;
  overflow: hidden;
  background: var(--mint);
  display: flex;
  align-items: center;
  justify-content: center;
  flex: none;
}
.content {
  padding: 26px 30px 60px;
  max-width: 1180px;
  width: 100%;
}
.screen {
  display: none;
}
.screen.active {
  display: block;
}
.cpage {
  max-width: 680px;
  margin: 0 auto;
  width: 100%;
}
.phead {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 18px;
}
.phead .h {
  font-size: 22px;
  font-weight: 800;
  letter-spacing: -0.4px;
}
.phead .s {
  font-size: 13px;
  color: var(--slate);
  font-weight: 500;
  margin-top: 4px;
}
.section-lab {
  font-size: 12px;
  font-weight: 800;
  color: var(--ink);
  margin: 22px 2px 10px;
  text-transform: uppercase;
  letter-spacing: 0.4px;
  opacity: 0.7;
}
.card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--r);
  padding: 18px;
  box-shadow: var(--shadow);
}
.card + .card,
.mt14 {
  margin-top: 14px;
}
.row {
  display: flex;
  align-items: center;
  gap: 12px;
}
.between {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.muted {
  color: var(--slate);
}
.b6 {
  font-weight: 600;
}
.b7 {
  font-weight: 700;
}
.b8 {
  font-weight: 800;
}
.fz11 {
  font-size: 11px;
}
.fz12 {
  font-size: 12px;
}
.fz13 {
  font-size: 13px;
}
.fz14 {
  font-size: 14px;
}
.mt4 {
  margin-top: 4px;
}
.mt8 {
  margin-top: 8px;
}
.mt12 {
  margin-top: 12px;
}
.mt16 {
  margin-top: 16px;
}
.divider {
  height: 1px;
  background: var(--line);
  margin: 14px 0;
}
.badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  background: var(--mint);
  color: var(--teal-deep);
  font-size: 10px;
  font-weight: 700;
  padding: 3px 9px;
  border-radius: 20px;
}
.badge.violet {
  background: var(--violet-soft);
  color: var(--violet);
}
.badge.green {
  background: #E2F6EF;
  color: var(--green);
}
.badge.amber {
  background: #FCF1E0;
  color: #B5751A;
}
.kv {
  display: flex;
  justify-content: space-between;
  font-size: 13px;
  padding: 5px 0;
}
.kv .k {
  color: var(--slate);
  font-weight: 600;
}
.kv .v {
  font-weight: 700;
}
.hide {
  display: none;
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: var(--grad);
  color: #fff;
  font-weight: 700;
  font-size: 13.5px;
  padding: 12px 18px;
  border-radius: 12px;
  box-shadow: 0 8px 18px rgba(11, 124, 140, 0.22);
  transition: 0.12s;
}
.btn:active {
  transform: translateY(1px);
}
.btn.block {
  width: 100%;
}
.btn.ghost {
  background: #fff;
  color: var(--teal-deep);
  border: 1.5px solid var(--mint-2);
  box-shadow: none;
}
.btn.danger {
  background: #fff;
  color: var(--red);
  border: 1.5px solid #F4D5CD;
  box-shadow: none;
}
.btn.sm {
  padding: 9px 14px;
  font-size: 12.5px;
  border-radius: 10px;
  box-shadow: none;
}
.field {
  margin-top: 14px;
}
.field label {
  display: block;
  font-size: 11.5px;
  font-weight: 700;
  color: var(--slate);
  margin-bottom: 6px;
}
.inp {
  width: 100%;
  background: #fff;
  border: 1.5px solid var(--line);
  border-radius: 11px;
  padding: 11px 12px;
  font-size: 13.5px;
  font-weight: 600;
  color: var(--ink);
  outline: none;
}
input,
textarea,
select,
button {
  color-scheme: light;
}
select.inp {
  background-color: #fff;
  color: var(--ink);
  -webkit-appearance: none;
  appearance: none;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%235E747A' stroke-width='2.6' stroke-linecap='round' stroke-linejoin='round'><path d='M6 9l6 6 6-6'/></svg>");
  background-repeat: no-repeat;
  background-position: right 12px center;
  padding-right: 34px;
}
.inp::placeholder {
  color: #9aafb3;
  opacity: 1;
}
input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
select:-webkit-autofill,
textarea:-webkit-autofill {
  -webkit-box-shadow: 0 0 0 1000px #fff inset;
  box-shadow: 0 0 0 1000px #fff inset;
  -webkit-text-fill-color: var(--ink);
  caret-color: var(--ink);
}
.inp::placeholder {
  color: var(--slate);
  font-weight: 500;
}
.inp:focus {
  border-color: var(--teal);
}
.fr {
  display: flex;
  gap: 12px;
}
.fr > * {
  flex: 1;
}
.note {
  background: var(--mint);
  border-radius: 11px;
  padding: 12px;
  font-size: 11.5px;
  color: var(--teal-deep);
  font-weight: 600;
  line-height: 1.5;
  display: flex;
  gap: 8px;
}
.note.violet {
  background: var(--violet-soft);
  color: #4b3fc4;
}
.app.cmode .sidebar {
  display: none;
}
.app.cmode .topbar {
  display: none;
}
.app.cmode ~ .tabbar:not(.ctabbar) {
  display: none;
}
.app:not(.cmode) ~ .ctabbar {
  display: none;
}
.app.amode .sidebar {
  display: none;
}
.app.amode .topbar {
  display: none;
}
.app.amode ~ .tabbar {
  display: none;
}
.app.amode .main {
  margin-left: 0;
}
.app.amode .content {
  padding: 0;
  max-width: none;
}
.admin-wrap {
  display: flex;
  align-items: stretch;
  min-height: 100vh;
  background: #F4F8F9;
}
.admin-side {
  width: 236px;
  flex: none;
  background: #fff;
  border-right: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  padding: 18px 14px 16px;
}
.admin-brand {
  display: flex;
  align-items: center;
  gap: 11px;
  padding: 0 6px 4px;
}
.admin-mark {
  width: 38px;
  height: 38px;
  border-radius: 11px;
  background: var(--grad);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 18px;
  flex: none;
}
.admin-title {
  font-weight: 800;
  font-size: 16px;
  color: var(--ink);
  line-height: 1.1;
}
.admin-sub {
  font-size: 11.5px;
  color: var(--slate);
  margin-top: 2px;
}
.admin-navv {
  display: flex;
  flex-direction: column;
  gap: 3px;
  margin-top: 20px;
  flex: 1;
}
.anav {
  display: flex;
  align-items: center;
  gap: 11px;
  padding: 10px 12px;
  border-radius: 10px;
  border: 1px solid transparent;
  background: none;
  color: var(--slate);
  font-weight: 600;
  font-size: 13.5px;
  cursor: pointer;
  text-align: left;
  width: 100%;
  font-family: inherit;
}
.anav svg {
  flex: none;
  width: 18px;
  height: 18px;
}
.anav:hover {
  background: #f3f9f9;
}
.anav.on {
  background: var(--mint);
  color: var(--teal-deep);
  font-weight: 700;
}
.admin-side-foot {
  margin-top: auto;
  padding-top: 14px;
  border-top: 1px solid var(--line);
}
.admin-exit {
  display: flex;
  align-items: center;
  gap: 8px;
  justify-content: center;
  width: 100%;
  background: #fff;
  border: 1px solid var(--line);
  color: var(--ink);
  font-weight: 700;
  font-size: 12.5px;
  padding: 10px 14px;
  border-radius: 11px;
  cursor: pointer;
  font-family: inherit;
}
.admin-exit:hover {
  background: #f3f9f9;
}
.admin-exit svg {
  width: 15px;
  height: 15px;
  flex: none;
}
.admin-main {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
}
.admin-bar {
  padding: 20px 30px;
  border-bottom: 1px solid var(--line);
  background: #fff;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}
.admin-bar-t {
  font-weight: 800;
  font-size: 21px;
  color: var(--ink);
  line-height: 1.15;
}
.admin-bar-s {
  font-size: 12.5px;
  color: var(--slate);
  margin-top: 4px;
  font-weight: 500;
}
.admin-bar-tools {
  display: flex;
  align-items: center;
  gap: 10px;
}
.admin-body-c {
  padding: 24px 30px 48px;
  flex: 1;
}
.app.amode {
  height: 100vh;
  height: 100dvh;
  overflow: hidden;
}
.app.amode .main {
  min-height: 0;
}
.app.amode .content {
  display: flex;
  flex-direction: column;
  flex: 1;
  min-height: 0;
}
.app.amode .content > :not(router-outlet) {
  display: flex;
  flex-direction: column;
  flex: 1;
  min-height: 0;
}
.app.amode #a-console.screen.active {
  display: flex;
  flex-direction: column;
  flex: 1;
  min-height: 0;
}
.app.amode #adminBody {
  display: flex;
  flex-direction: column;
  flex: 1;
  min-height: 0;
}
.app.amode .admin-wrap {
  flex: 1;
  min-height: 0;
}
.app.amode .admin-main {
  min-height: 0;
}
.app.amode .admin-body-c {
  flex: 1;
  min-height: 0;
  overflow-y: auto;
}
.app.amode .admin-body-c.admin-body-fill {
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.app.amode .admin-bar {
  position: sticky;
  top: 0;
  z-index: 5;
}
#adminBody {
  display: flex;
  flex-direction: column;
  flex: 1;
  min-height: 0;
}
.admin-body-fill .atoolbar {
  flex: none;
}
.admin-body-fill #avlist {
  flex: 1;
  min-height: 0;
  overflow-y: auto;
  padding-bottom: 6px;
}
.admin-body-fill .avd-head {
  flex: none;
}
.admin-body-fill .avd-body {
  flex: 1;
  min-height: 0;
  overflow-y: auto;
  padding-bottom: 6px;
}
.avsec-h {
  cursor: pointer;
  -webkit-user-select: none;
  user-select: none;
}
.avsec-chev {
  color: var(--slate);
  transition: transform 0.18s;
  flex: none;
}
.avsec.avcol .avsec-chev {
  transform: rotate(-90deg);
}
.avsec.avcol .avsec-b {
  display: none;
}
.avsec.avcol .acard-h {
  margin-bottom: 0;
}
.av-stack {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.finsegs {
  display: flex;
  gap: 7px;
  flex-wrap: wrap;
  margin-bottom: 12px;
}
.finseg {
  padding: 6px 12px;
  border: 1px solid var(--line);
  border-radius: 99px;
  font-size: 12px;
  font-weight: 700;
  color: var(--slate);
  cursor: pointer;
  background: #fff;
  -webkit-user-select: none;
  user-select: none;
}
.finseg.on {
  background: var(--mint);
  border-color: var(--teal);
  color: var(--teal-deep);
}
.fin-inp {
  padding: 11px 13px;
  border: 1px solid var(--line);
  border-radius: 11px;
  font-family: inherit;
  font-size: 13px;
  color: var(--ink);
  background: #fff;
  outline: none;
  box-sizing: border-box;
}
.fin-inp:focus {
  border-color: var(--teal);
}
.finq-item {
  border-bottom: 1px solid var(--line);
}
.finq-head {
  flex: 1;
  min-width: 0;
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
}
.finq-chev {
  transition: transform 0.15s;
}
.finq-chev.open {
  transform: rotate(90deg);
}
.finq-detail {
  background: #F7FAFB;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 13px 15px;
  margin: 2px 0 12px;
}
.finq-sec {
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.4px;
  color: var(--slate);
  margin-bottom: 7px;
}
.finq-pks {
  display: flex;
  flex-direction: column;
  gap: 1px;
}
.finq-pk {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 5px 0;
}
.finq-pk-ic {
  width: 28px;
  height: 28px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex: none;
}
.finq-tag {
  font-size: 9.5px;
  font-weight: 800;
  padding: 2px 7px;
  border-radius: 99px;
  display: inline-block;
}
.finq-tag-o {
  background: #EEF1F2;
  color: #5E747A;
}
.finq-tag-p {
  background: #EDEBFF;
  color: #6C5CE7;
}
.finq-money {
  margin-top: 11px;
  border-top: 1px dashed var(--line);
  padding-top: 10px;
}
.finq-ln {
  display: flex;
  justify-content: space-between;
  font-size: 12px;
  padding: 3px 0;
  color: var(--slate);
}
.finq-ln span:last-child {
  font-weight: 700;
  color: var(--ink);
}
.finq-ln.strong span:first-child {
  font-weight: 700;
  color: var(--ink);
}
.finq-note {
  margin-top: 10px;
  font-size: 11px;
  line-height: 1.55;
  color: var(--slate);
  background: #fff;
  border-radius: 9px;
  padding: 10px 12px;
  border: 1px solid var(--line);
}
.avlist-scroll {
  flex: 1;
  min-height: 0;
  overflow-y: auto;
  padding-right: 4px;
}
.avlist-scroll::-webkit-scrollbar {
  width: 8px;
}
.avlist-scroll::-webkit-scrollbar-track {
  background: transparent;
}
.avlist-scroll::-webkit-scrollbar-thumb {
  background: #d4e2e4;
  border-radius: 8px;
}
.admin-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 13px;
}
.admin-kpi {
  flex: 1 1 calc(25% - 13px);
  min-width: 165px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 16px 17px;
}
.ak-n {
  font-weight: 800;
  font-size: 24px;
  line-height: 1;
}
.ak-l {
  font-size: 12px;
  color: var(--slate);
  margin-top: 7px;
  font-weight: 600;
}
.admin-note {
  margin-top: 18px;
  background: var(--mint);
  border: 1px solid var(--mint-2);
  border-radius: 12px;
  padding: 13px 15px;
  font-size: 12.5px;
  color: var(--teal-900);
  line-height: 1.55;
  max-width: 820px;
}
.admin-place {
  background: #fff;
  border: 1px dashed var(--mint-2);
  border-radius: 16px;
  padding: 40px 26px;
  text-align: center;
  max-width: 560px;
}
.admin-place-ic {
  width: 56px;
  height: 56px;
  border-radius: 15px;
  background: var(--mint);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 15px;
}
.admin-place-t {
  font-weight: 800;
  font-size: 15px;
  color: var(--ink);
}
.admin-place-d {
  font-size: 13px;
  color: var(--slate);
  line-height: 1.65;
  margin-top: 9px;
}
.admin-place-tag {
  display: inline-block;
  margin-top: 16px;
  background: var(--mint);
  color: var(--teal-deep);
  font-weight: 800;
  font-size: 11px;
  letter-spacing: 0.4px;
  text-transform: uppercase;
  padding: 5px 13px;
  border-radius: 99px;
}
.alink {
  background: none;
  border: none;
  color: var(--teal-deep);
  font-weight: 700;
  font-size: 13px;
  cursor: pointer;
  padding: 0;
  margin-bottom: 15px;
  font-family: inherit;
  display: inline-flex;
  align-items: center;
  gap: 5px;
}
.alink:hover {
  text-decoration: underline;
}
.atoolbar {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 14px;
}
.asearch {
  flex: 1;
  min-width: 220px;
  display: flex;
  align-items: center;
  gap: 9px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 11px;
  padding: 9px 13px;
}
.asearch input {
  flex: 1;
  border: none;
  outline: none;
  font-size: 13.5px;
  font-family: inherit;
  color: var(--ink);
  background: none;
}
.asearch svg {
  flex: none;
  width: 16px;
  height: 16px;
  color: var(--slate);
}
.asel {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 11px;
  padding: 9px 13px;
  font-size: 13px;
  font-weight: 600;
  color: var(--ink);
  font-family: inherit;
  cursor: pointer;
}
.apill {
  display: inline-block;
  font-size: 11px;
  font-weight: 800;
  padding: 4px 10px;
  border-radius: 99px;
  letter-spacing: 0.2px;
  white-space: nowrap;
}
.atbl-wrap {
  overflow-x: auto;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #fff;
}
.atbl {
  min-width: 100%;
}
.cutbl {
  display: inline-block;
  min-width: 100%;
  vertical-align: top;
}
.cup {
  margin-bottom: 14px;
  padding: 18px 20px;
}
.cup-h {
  font-weight: 800;
  font-size: 15px;
  color: var(--ink);
}
.cup-sub {
  font-size: 12px;
  color: var(--slate);
  margin: 3px 0 13px;
  line-height: 1.5;
}
.cupb,
.cuprow {
  display: flex;
  align-items: center;
  gap: 11px;
  padding: 11px 0;
  border-top: 1px solid var(--line);
}
.cupb:first-of-type,
.cuprow:first-of-type {
  border-top: none;
}
.cupdot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  flex: none;
}
.cupkv {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  padding: 7px 0;
  font-size: 13px;
}
.cupk {
  color: var(--slate);
}
.cupv {
  color: var(--ink);
  font-weight: 600;
  text-align: right;
}
.cupbar {
  height: 1px;
  background: var(--line);
  margin: 13px 0;
}
.culog {
  font-size: 12px;
  color: var(--ink);
  padding: 4px 0;
}
.curisk-ok {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #16A37B;
  font-weight: 700;
  font-size: 13px;
}
.curisk-f {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 13px;
  color: var(--ink);
  padding: 5px 0;
}
.curisk-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #C0392B;
  flex: none;
}
.atbl-head,
.atbl-row {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 13px 18px;
}
.atbl-head {
  background: #F7FAFB;
  border-bottom: 1px solid var(--line);
  font-size: 10.5px;
  font-weight: 800;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: var(--slate);
}
.atbl-row {
  border-bottom: 1px solid var(--line);
  cursor: pointer;
}
.atbl-row:last-child {
  border-bottom: none;
}
.atbl-row:hover {
  background: #F6FBFB;
}
.atbl-head > div {
  position: relative;
}
.acol-rsz {
  position: absolute;
  top: 0;
  right: -7px;
  width: 14px;
  height: 100%;
  cursor: col-resize;
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: center;
}
.acol-rsz:before {
  content: "";
  width: 2px;
  height: 12px;
  background: var(--line);
  border-radius: 2px;
  transition: background 0.12s, height 0.12s;
}
.acol-rsz:hover:before {
  background: var(--teal-deep);
  height: 64%;
}
.av-id {
  display: flex;
  align-items: center;
  gap: 11px;
  min-width: 0;
}
.av-avt {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: var(--grad);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 13px;
  flex: none;
  overflow: hidden;
}
.av-avt img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.av-nm {
  font-weight: 700;
  font-size: 13.5px;
  color: var(--ink);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.av-cd {
  font-size: 11px;
  color: var(--slate);
  margin-top: 1px;
}
.amono {
  font-weight: 700;
  font-size: 13px;
  color: var(--ink);
}
.amuted {
  font-size: 12px;
  color: var(--slate);
}
.av-head {
  display: flex;
  align-items: center;
  gap: 15px;
  flex-wrap: wrap;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 18px 20px;
  margin-bottom: 16px;
}
.av-bigav {
  width: 60px;
  height: 60px;
  border-radius: 15px;
  background: var(--grad);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 22px;
  flex: none;
  overflow: hidden;
}
.av-bigav img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.av-name {
  font-weight: 800;
  font-size: 19px;
  color: var(--ink);
}
.av-meta {
  font-size: 12.5px;
  color: var(--slate);
  margin-top: 3px;
}
.avtabs {
  display: flex;
  gap: 2px;
  border-bottom: 1px solid var(--line);
  margin-bottom: 18px;
  overflow-x: auto;
}
.avtab {
  flex: none;
  background: none;
  border: none;
  font-family: inherit;
  font-size: 13px;
  font-weight: 700;
  color: var(--slate);
  padding: 11px 15px;
  cursor: pointer;
  white-space: nowrap;
  border-bottom: 2.5px solid transparent;
  margin-bottom: -1px;
  display: inline-flex;
  align-items: center;
  gap: 7px;
}
.avtab:hover {
  color: var(--ink);
}
.avtab.on {
  color: var(--teal-deep);
  border-bottom-color: var(--teal-deep);
}
.avtab .avct {
  background: #FCEBE7;
  color: #C0392B;
  font-size: 10px;
  font-weight: 800;
  min-width: 17px;
  height: 17px;
  padding: 0 5px;
  border-radius: 99px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.avseg {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 14px;
}
.avseg button {
  background: #fff;
  border: 1px solid var(--line);
  color: var(--slate);
  font-family: inherit;
  font-size: 12px;
  font-weight: 700;
  padding: 6px 12px;
  border-radius: 99px;
  cursor: pointer;
}
.avseg button.on {
  background: var(--teal-deep);
  border-color: var(--teal-deep);
  color: #fff;
}
.av-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.av-chip {
  background: #F7FAFB;
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 8px 12px;
  font-size: 12px;
  color: var(--slate);
  font-weight: 600;
}
.av-chip b {
  color: var(--ink);
  font-weight: 800;
}
.av-led {
  display: flex;
  align-items: center;
  gap: 11px;
  padding: 9px 0;
  border-bottom: 1px solid var(--line);
}
.av-led:last-child {
  border-bottom: none;
}
.av-ledi {
  width: 30px;
  height: 30px;
  border-radius: 8px;
  flex: none;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 800;
}
.av-cols {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  flex-wrap: wrap;
}
.av-col {
  flex: 1 1 360px;
  min-width: 288px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.acard {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 18px 20px;
}
.acard-h {
  font-weight: 800;
  font-size: 14.5px;
  color: var(--ink);
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}
.vchk {
  border: 1px solid var(--line);
  border-radius: 13px;
  padding: 13px 14px;
  margin-bottom: 11px;
}
.vchk:last-child {
  margin-bottom: 0;
}
.vchk-t {
  font-weight: 700;
  font-size: 13px;
  color: var(--ink);
}
.vchk-d {
  font-size: 11.5px;
  color: var(--slate);
  margin-top: 3px;
  line-height: 1.5;
}
.vchk-ref {
  font-size: 12px;
  color: var(--ink);
  margin-top: 9px;
  background: #F7FAFB;
  border-radius: 8px;
  padding: 7px 10px;
}
.vchk-doc {
  display: flex;
  align-items: center;
  gap: 9px;
  margin-top: 9px;
  background: #F7FAFB;
  border-radius: 8px;
  padding: 8px 10px;
}
.vchk-doc .dn {
  font-size: 12px;
  font-weight: 600;
  color: var(--ink);
}
.vchk-act {
  margin-top: 11px;
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.kvrow {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 9px 0;
  border-bottom: 1px solid var(--line);
  font-size: 13px;
}
.kvrow:last-child {
  border-bottom: none;
}
.kvrow .k {
  color: var(--slate);
}
.kvrow .v {
  font-weight: 700;
  color: var(--ink);
  text-align: right;
}
.fkpi {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.fkpi-c {
  flex: 1 1 calc(50% - 10px);
  min-width: 120px;
  background: #F7FAFB;
  border-radius: 11px;
  padding: 11px 13px;
}
.fkpi-n {
  font-weight: 800;
  font-size: 17px;
}
.fkpi-l {
  font-size: 11px;
  color: var(--slate);
  margin-top: 3px;
  font-weight: 600;
}
.abtn {
  border: 1px solid var(--line);
  background: #fff;
  color: var(--ink);
  font-weight: 700;
  font-size: 12.5px;
  padding: 8px 14px;
  border-radius: 10px;
  cursor: pointer;
  font-family: inherit;
  white-space: nowrap;
}
.abtn.sm {
  font-size: 12px;
  padding: 6px 12px;
}
.abtn.primary {
  background: var(--teal-deep);
  border-color: var(--teal-deep);
  color: #fff;
}
.abtn.danger {
  background: #FCEBE7;
  border-color: #F3C9BF;
  color: #C0392B;
}
.abtn.ghost {
  background: #fff;
}
.abtn:hover {
  filter: brightness(0.97);
}
.aempty {
  padding: 26px 18px;
  text-align: center;
  color: var(--slate);
  font-size: 13px;
}
.aloader {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 22px 12px;
  color: var(--slate);
  font-size: 12.5px;
  font-weight: 600;
}
.aspin {
  width: 18px;
  height: 18px;
  border: 2.5px solid var(--mint-2);
  border-top-color: var(--teal-deep);
  border-radius: 50%;
  animation: aspin 0.7s linear infinite;
}
@keyframes aspin {
  to {
    transform: rotate(360deg);
  }
}
.vcards {
  display: none;
}
.avcard {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 14px 15px;
  cursor: pointer;
  width: 100%;
  box-sizing: border-box;
  margin-bottom: 10px;
}
.avcard:last-child {
  margin-bottom: 0;
}
.avcard:hover {
  background: #F8FBFB;
}
.vcard-top {
  display: table;
  width: 100%;
  table-layout: fixed;
}
.vc-cell {
  display: table-cell;
  vertical-align: middle;
}
.vc-avt {
  width: 50px;
}
.vc-chev {
  width: 22px;
  text-align: right;
}
.vcard-nm {
  font-weight: 700;
  font-size: 14.5px;
  color: var(--ink);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.vcard-sub {
  font-size: 11.5px;
  color: var(--slate);
  margin-top: 2px;
}
.vcard-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-top: 11px;
}
.vcard-stats {
  font-size: 12.5px;
  color: var(--ink);
  margin-top: 11px;
  font-weight: 600;
}
@media (max-width: 1024px) {
  .atbl-wrap {
    display: none;
  }
  .vcards {
    display: block;
  }
}
@media (max-width: 820px) {
  .admin-bar {
    padding: 14px 16px;
  }
  .admin-bar-t {
    font-size: 18px;
  }
  .admin-body-c {
    padding: 16px 16px 40px;
  }
  .admin-kpi {
    flex: 1 1 calc(50% - 13px);
    min-width: 135px;
  }
}
.pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 8px;
}
.psel {
  font-size: 12px;
  font-weight: 700;
  color: #3a565b;
  background: #fff;
  border: 1.5px solid var(--line);
  border-radius: 11px;
  padding: 8px 13px;
}
.psel.on {
  background: var(--teal-900);
  border-color: var(--teal-900);
  color: #fff;
}
.priceinp {
  display: flex;
  align-items: center;
  border: 1.5px solid var(--line);
  border-radius: 11px;
  overflow: hidden;
  background: #fff;
}
.priceinp:focus-within {
  border-color: var(--teal);
}
.priceinp .pfx {
  padding: 11px;
  background: var(--mint);
  color: var(--teal-deep);
  font-weight: 800;
  font-size: 12.5px;
}
.priceinp input {
  border: none;
  padding: 11px;
  font-size: 13.5px;
  font-weight: 700;
  color: var(--ink);
  flex: 1;
  outline: none;
  width: 100%;
}
.priceinp .sfx {
  padding: 11px;
  color: var(--slate);
  font-weight: 700;
  font-size: 11.5px;
  white-space: nowrap;
}
.seg {
  display: flex;
  gap: 7px;
}
.seg .opt {
  flex: 1;
  border: 1.5px solid var(--line);
  border-radius: 10px;
  padding: 10px;
  text-align: center;
  font-size: 12px;
  font-weight: 700;
  color: #3a565b;
  background: #fff;
}
.seg .opt.on {
  border-color: var(--teal);
  background: var(--mint);
  color: var(--teal-deep);
}
.dot {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  display: grid;
  place-items: center;
  flex: none;
}
.chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 8px;
}
.chip {
  font-size: 11.5px;
  font-weight: 700;
  color: #3a565b;
  background: #fff;
  border: 1.5px solid var(--line);
  border-radius: 18px;
  padding: 7px 12px;
  cursor: pointer;
}
.chip.on {
  background: var(--mint);
  border-color: var(--teal);
  color: var(--teal-deep);
}
.chip.add {
  border-style: dashed;
  color: var(--teal-deep);
  border-color: var(--mint-2);
}
.menu-head {
  display: flex;
  align-items: flex-start;
  gap: 11px;
  margin-bottom: 4px;
}
.menu-ico {
  width: 34px;
  height: 34px;
  border-radius: 10px;
  background: var(--mint);
  display: flex;
  align-items: center;
  justify-content: center;
  flex: none;
}
.course {
  border-top: 1px solid var(--line);
  padding-top: 15px;
  margin-top: 15px;
}
.course-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 10px;
}
.course-nm {
  font-size: 13px;
  font-weight: 800;
  color: var(--ink);
}
.course-pill {
  font-size: 10.5px;
  font-weight: 800;
  color: var(--slate);
  background: #eef2f3;
  border-radius: 20px;
  padding: 3px 10px;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  letter-spacing: 0.2px;
  white-space: nowrap;
}
.course-pill.part {
  color: #B5751A;
  background: #FCF1E0;
}
.course-pill.done {
  color: var(--green);
  background: #E2F6EF;
}
.course-pill .cpk {
  width: 11px;
  height: 11px;
  flex: none;
}
.dishrow {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
}
.dish {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-size: 12.5px;
  font-weight: 700;
  color: #3a565b;
  background: #fff;
  border: 1.5px solid var(--line);
  border-radius: 12px;
  padding: 9px 14px 9px 10px;
  cursor: pointer;
  transition:
    background 0.12s,
    border-color 0.12s,
    color 0.12s;
}
.dish:hover {
  border-color: var(--mint-2);
  background: #fafdfd;
}
.dish-tick {
  width: 19px;
  height: 19px;
  border-radius: 50%;
  border: 1.8px solid #cdd9da;
  flex: none;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.12s, border-color 0.12s;
}
.dish-tick svg {
  width: 13px;
  height: 13px;
  opacity: 0;
  transition: opacity 0.12s;
}
.dish.on {
  background: var(--mint);
  border-color: var(--teal);
  color: var(--teal-deep);
}
.dish.on .dish-tick {
  background: var(--teal);
  border-color: var(--teal);
}
.dish.on .dish-tick svg {
  opacity: 1;
}
.mcat {
  padding: 12px 0;
  border-bottom: 1px solid var(--line);
}
.mcat:last-child {
  border-bottom: none;
  padding-bottom: 0;
}
.cl {
  font-size: 12px;
  font-weight: 800;
  color: var(--ink);
}
.mempty {
  font-size: 11.5px;
  color: var(--slate);
  font-weight: 600;
  padding: 6px 0;
}
.rmx {
  color: var(--red);
  font-weight: 800;
  cursor: pointer;
  font-size: 16px;
  line-height: 1;
}
.opt2 {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 0;
  border-bottom: 1px solid var(--line);
}
.opt2:last-child {
  border-bottom: none;
}
.sw {
  width: 42px;
  height: 25px;
  border-radius: 20px;
  background: #d7e2e3;
  position: relative;
  flex: none;
  transition: 0.15s;
  cursor: pointer;
}
.sw.on {
  background: var(--teal);
}
.sw i {
  position: absolute;
  top: 3px;
  left: 3px;
  width: 19px;
  height: 19px;
  border-radius: 50%;
  background: #fff;
  transition: 0.15s;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
}
.sw.on i {
  left: 20px;
}
.slot {
  border: 1.5px solid var(--line);
  border-radius: 13px;
  padding: 14px;
  margin-top: 11px;
}
.slot.on {
  border-color: var(--mint-2);
  background: #fafffe;
}
.ms-row {
  display: flex;
  align-items: center;
  gap: 11px;
  padding: 9px 0;
  border-bottom: 1px dashed var(--line);
}
.ms-row:last-child {
  border-bottom: none;
}
.mn {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--mint);
  color: var(--teal-deep);
  display: grid;
  place-items: center;
  font-size: 11px;
  font-weight: 800;
  flex: none;
}
.ml {
  font-size: 12.5px;
  font-weight: 700;
}
.mp {
  margin-left: auto;
  font-size: 12.5px;
  font-weight: 800;
  color: var(--teal-deep);
}
.grid {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}
.statgrid {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}
.stat {
  flex: 1 1 200px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r);
  padding: 18px;
  box-shadow: var(--shadow);
}
.stat .n {
  font-size: 26px;
  font-weight: 800;
  letter-spacing: -0.5px;
}
.stat .l {
  font-size: 12px;
  color: var(--slate);
  font-weight: 600;
  margin-top: 4px;
}
.actcard {
  flex: 1 1 260px;
  max-width: 360px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r);
  padding: 18px;
  box-shadow: var(--shadow);
  cursor: pointer;
  transition: 0.12s;
}
.actcard:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 26px rgba(11, 124, 140, 0.12);
}
.ocard {
  flex: 1 1 290px;
  max-width: 400px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r);
  padding: 16px;
  box-shadow: var(--shadow);
  cursor: pointer;
  transition: 0.12s;
}
.ocard:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 26px rgba(11, 124, 140, 0.12);
}
.empty {
  text-align: center;
  padding: 46px 16px;
  background: #fff;
  border: 1px dashed var(--mint-2);
  border-radius: var(--r);
  width: 100%;
}
.empty .ec {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--mint);
  display: grid;
  place-items: center;
  margin: 0 auto 12px;
}
.emptyline {
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 13px 15px;
  border: 1px dashed var(--mint-2);
  border-radius: 12px;
  background: #fbfffe;
  color: var(--slate);
  font-size: 12px;
  font-weight: 600;
  margin-top: 6px;
}
.emptyline svg {
  width: 16px;
  height: 16px;
  flex: none;
  color: var(--teal-deep);
  opacity: 0.55;
}
.split {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}
.modal {
  position: fixed;
  inset: 0;
  background: rgba(7, 40, 46, 0.5);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 80;
  padding: 24px;
}
.modal.open {
  display: flex;
}
.modalcard {
  background: #fff;
  width: 100%;
  max-width: 480px;
  border-radius: 18px;
  padding: 20px;
  max-height: 88vh;
  overflow: auto;
  box-shadow: 0 30px 70px rgba(7, 40, 46, 0.4);
}
.modalcard h4 {
  font-size: 16px;
  font-weight: 800;
  margin-bottom: 4px;
}
.modalcard .x {
  position: absolute;
  top: 14px;
  right: 16px;
  font-size: 20px;
  color: var(--slate);
  cursor: pointer;
}
.pick {
  display: flex;
  align-items: center;
  gap: 11px;
  padding: 12px;
  border: 1.5px solid var(--line);
  border-radius: 12px;
  margin-top: 9px;
  cursor: pointer;
}
.pick:hover {
  border-color: var(--mint-2);
}
.pick.on {
  border-color: var(--teal);
  background: var(--mint);
}
.cust-av {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--mint-2);
  color: var(--teal-deep);
  font-weight: 800;
  font-size: 13.5px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex: none;
}
.cust-date {
  width: 44px;
  flex: none;
  text-align: center;
  background: #f6fafb;
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 7px 0;
}
.bk-more {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 20px;
  color: var(--slate);
  font-size: 12.5px;
  font-weight: 600;
}
.bk-spin {
  width: 18px;
  height: 18px;
  border: 2.5px solid var(--mint-2);
  border-top-color: var(--teal-deep);
  border-radius: 50%;
  animation: bkspin 0.7s linear infinite;
  flex: none;
}
@keyframes bkspin {
  to {
    transform: rotate(360deg);
  }
}
.ell {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.bksec {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin: 20px 2px 9px;
  cursor: pointer;
  -webkit-user-select: none;
  user-select: none;
}
.bksec-t {
  font-size: 12px;
  font-weight: 800;
  color: var(--ink);
  text-transform: uppercase;
  letter-spacing: 0.4px;
  opacity: 0.75;
}
.bksec-c {
  font-size: 11px;
  font-weight: 800;
  color: var(--slate);
  background: #eef3f4;
  border-radius: 20px;
  padding: 2px 9px;
  flex: none;
}
.bksec-chev {
  color: var(--slate);
  transition: transform 0.15s;
  transform: rotate(0deg);
  flex: none;
}
.bksec-chev.open {
  transform: rotate(90deg);
}
.home-hero {
  background: var(--grad);
  border-radius: 18px;
  padding: 20px 22px;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  box-shadow: 0 14px 30px rgba(11, 124, 140, 0.25);
}
.hh-hi {
  font-size: 12.5px;
  font-weight: 700;
  opacity: 0.85;
}
.hh-nm {
  font-size: 22px;
  font-weight: 800;
  margin-top: 2px;
  letter-spacing: -0.3px;
}
.hh-sub {
  font-size: 12px;
  font-weight: 600;
  opacity: 0.92;
  margin-top: 5px;
}
.hh-ic {
  width: 54px;
  height: 54px;
  border-radius: 15px;
  background: rgba(255, 255, 255, 0.18);
  display: flex;
  align-items: center;
  justify-content: center;
  flex: none;
}
.stat.kpi-click {
  cursor: pointer;
  transition: border-color 0.12s;
}
.stat.kpi-click:hover {
  border-color: var(--mint-2);
}
.att-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--amber);
  margin-top: 5px;
  flex: none;
}
.att-dot.u {
  background: var(--red);
}
.dash-empty {
  text-align: center;
  padding: 20px 0;
}
.lnk-detail {
  background: none;
  border: none;
  color: var(--teal-deep);
  font-weight: 700;
  font-size: 11.5px;
  cursor: pointer;
  padding: 0;
  white-space: nowrap;
}
.prow-in {
  display: flex;
  align-items: center;
  gap: 12px;
}
.prow-actions {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-left: auto;
}
.tabbar {
  display: none;
}
.tb-brand {
  display: none;
}
@media (max-width: 960px) {
  .sidebar {
    display: none;
  }
  .main {
    margin-left: 0;
  }
  .topbar {
    padding: 0 14px;
    gap: 10px;
  }
  .topswitch {
    display: flex;
  }
  .tb-brand {
    display: flex;
    align-items: center;
    flex: none;
  }
  .tb-brand .mark {
    width: 30px;
    height: 30px;
    border-radius: 9px;
    background: var(--grad);
    display: grid;
    place-items: center;
    color: #fff;
    font-weight: 800;
    font-size: 15px;
  }
  .ptitle {
    font-size: 15px;
    flex: 1;
    min-width: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }
  .content {
    padding: 18px 14px 84px;
    max-width: 100%;
  }
  .phead {
    flex-wrap: wrap;
    gap: 12px;
  }
  .phead .h {
    font-size: 19px;
  }
  .phead .btn {
    padding: 10px 15px;
    font-size: 12.5px;
  }
  .stat {
    flex: 1 1 calc(50% - 7px);
  }
  .split {
    flex-direction: column;
  }
  .splitrow {
    flex-direction: column;
  }
  .splitrow > .card {
    min-width: 0;
    width: 100%;
  }
  .prow-in {
    flex-wrap: wrap;
  }
  .prow-actions {
    flex-basis: 100%;
    margin-left: 46px;
    margin-top: 8px;
  }
  .modal {
    padding: 0;
    align-items: flex-end;
  }
  .modalcard {
    max-width: 540px;
    margin: 0 auto;
    border-radius: 18px 18px 0 0;
    max-height: 92vh;
  }
  .tabbar {
    display: flex;
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 50;
    background: #fff;
    border-top: 1px solid var(--line);
    box-shadow: 0 -4px 16px rgba(11, 124, 140, 0.07);
    padding: 6px 4px;
    padding-bottom: 8px;
  }
  .cnav-bar {
    display: none !important;
  }
  .tabitem {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 3px;
    padding: 7px 2px;
    border-radius: 10px;
    color: #6b8186;
    font-size: 9.5px;
    font-weight: 700;
    position: relative;
  }
  .tabitem svg {
    width: 21px;
    height: 21px;
    opacity: 0.65;
  }
  .tabitem.on {
    color: var(--teal-deep);
  }
  .tabitem.on svg {
    opacity: 1;
  }
  .tb-badge {
    position: absolute;
    top: 2px;
    left: calc(50% + 4px);
    background: var(--amber);
    color: #fff;
    font-size: 8px;
    font-weight: 800;
    min-width: 15px;
    height: 15px;
    border-radius: 8px;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 0 3px;
  }
}
@media (max-width: 620px) {
  .ocard,
  .actcard {
    flex-basis: 100%;
    max-width: none;
    min-width: 0;
  }
  .fr {
    flex-direction: column;
    gap: 13px;
  }
  .fr > * {
    margin-top: 0 !important;
    max-width: none !important;
  }
  .stat {
    flex: 1 1 100%;
  }
  .wf-total {
    flex-basis: 100%;
  }
  .wiz-foot .btn {
    width: 100%;
  }
  .ccustlabel {
    display: none;
  }
  #custModeBtnTop {
    padding: 8px !important;
    border-radius: 50% !important;
  }
}
@media (max-width: 380px) {
  .content {
    padding: 14px 11px 84px;
  }
  .card {
    padding: 15px;
  }
  .ptitle {
    font-size: 13.5px;
  }
}
.lnk-back {
  background: none;
  border: none;
  color: var(--teal-deep);
  font-weight: 700;
  font-size: 12.5px;
  cursor: pointer;
  padding: 0;
}
.bk-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 13px;
  box-shadow: var(--shadow);
  display: flex;
  align-items: center;
  gap: 13px;
}
.bk-card + .bk-card {
  margin-top: 10px;
}
.bk-date {
  width: 54px;
  flex: none;
  text-align: center;
  background: var(--mint);
  border-radius: 11px;
  padding: 8px 4px;
}
.bk-date .d {
  font-size: 19px;
  font-weight: 800;
  line-height: 1;
  color: var(--teal-deep);
}
.bk-date .mo {
  font-size: 9.5px;
  font-weight: 800;
  text-transform: uppercase;
  color: var(--teal-deep);
  margin-top: 3px;
  letter-spacing: 0.4px;
}
.st-badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 10px;
  font-weight: 800;
  padding: 3px 9px;
  border-radius: 20px;
  white-space: nowrap;
}
.bkcal {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 14px;
  box-shadow: var(--shadow);
}
.bkcal-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
}
.bkcal-nav b {
  font-size: 15.5px;
  font-weight: 800;
}
.bkcal-navbtn {
  height: 32px;
  min-width: 32px;
  border-radius: 9px;
  border: 1.5px solid var(--line);
  background: #fff;
  color: var(--ink);
  font-weight: 800;
  font-size: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
.bkcal-navbtn:hover {
  background: #f3f9f9;
}
.bkcal-grid {
  border: 1px solid var(--line);
  border-radius: 12px;
  overflow: hidden;
}
.bkcal-head {
  display: flex;
  background: #f6fafb;
  border-bottom: 1px solid var(--line);
}
.bkcal-dow {
  flex: 1;
  width: 0;
  font-size: 10.5px;
  font-weight: 800;
  color: var(--slate);
  padding: 7px 8px;
  text-transform: uppercase;
  letter-spacing: 0.3px;
}
.bkcal-week {
  display: flex;
}
.bkcal-cell {
  flex: 1;
  width: 0;
  min-height: 106px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 5px 5px 4px;
  display: flex;
  flex-direction: column;
  cursor: pointer;
  background: #fff;
  overflow: hidden;
}
.bkcal-cell:nth-child(7n) {
  border-right: none;
}
.bkcal-week:last-child .bkcal-cell {
  border-bottom: none;
}
.bkcal-cell.empty {
  background: #fafcfc;
  cursor: default;
}
.bkcal-cell.sel {
  box-shadow: inset 0 0 0 2px var(--teal);
}
.bkcal-cell.closed {
  background:
    repeating-linear-gradient(
      45deg,
      #fff,
      #fff 7px,
      #f4f1ec 7px,
      #f4f1ec 14px);
}
.bkcal-cnum {
  font-size: 12.5px;
  font-weight: 700;
  color: var(--ink);
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 4px;
  min-height: 24px;
}
.bkcal-daynum {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 24px;
  height: 24px;
}
.bkcal-cnum.today .bkcal-daynum {
  background: var(--teal);
  color: #fff;
  border-radius: 50%;
  font-weight: 800;
}
.bkcal-lock {
  font-size: 8.5px;
  font-weight: 800;
  color: #B5751A;
  background: #FCF1E0;
  border-radius: 5px;
  padding: 1px 5px;
  letter-spacing: 0.3px;
}
.bkcal-sess {
  display: flex;
  gap: 3px;
  flex-wrap: wrap;
  margin: 1px 0 3px;
}
.bkcal-sc {
  font-size: 8.5px;
  font-weight: 800;
  letter-spacing: 0.02em;
  padding: 1px 4px;
  border-radius: 3px;
  border: 1px solid;
  text-transform: uppercase;
  line-height: 1.5;
}
.bkcal-sc.open {
  color: #16A37B;
  border-color: #B6E5D4;
  background: #F0FBF7;
}
.bkcal-sc.hold {
  color: #B5751A;
  border-color: #F0D9AE;
  background: #FFFAF0;
}
.bkcal-sc.booked {
  color: #7B8C90;
  border-color: #DDE5E6;
  background: #EFF3F4;
  text-decoration: line-through;
}
.bkcal-sc.closed {
  color: #C0392B;
  border-color: #F3C9C3;
  background: #FDF0EE;
  text-decoration: line-through;
}
.bkcal-evs {
  display: flex;
  flex-direction: column;
  gap: 3px;
  flex: 1;
}
.bkcal-ev {
  font-size: 10.5px;
  font-weight: 600;
  color: var(--ink);
  border-left: 3px solid #999;
  border-radius: 4px;
  padding: 2px 5px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  cursor: pointer;
}
.bkcal-ev b {
  font-weight: 800;
}
.bkcal-ev:hover {
  filter: brightness(0.96);
}
.bkcal-more {
  font-size: 10px;
  font-weight: 700;
  color: var(--slate);
  padding: 1px 5px;
  cursor: pointer;
}
.bkcal-dots {
  display: none;
}
.bkdot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  flex: none;
}
.bkcal-legend {
  display: flex;
  flex-wrap: wrap;
  gap: 13px;
  margin-top: 13px;
  padding-top: 12px;
  border-top: 1px solid var(--line);
}
.bkcal-legend .lgd {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 10.5px;
  font-weight: 600;
  color: var(--slate);
}
.track {
  display: flex;
  align-items: flex-start;
}
.track-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  flex: none;
  width: 66px;
}
.track-dot {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: #eef2f3;
  color: var(--slate);
  font-size: 12px;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #eef2f3;
}
.track-step.done .track-dot {
  background: #E2F6EF;
  color: var(--green);
  border-color: #bfeee9;
}
.track-step.now .track-dot {
  background: var(--teal);
  color: #fff;
  border-color: var(--teal);
  box-shadow: 0 0 0 4px rgba(11, 124, 140, 0.12);
}
.track-lab {
  font-size: 10px;
  font-weight: 700;
  color: var(--slate);
  margin-top: 8px;
  line-height: 1.25;
}
.track-step.now .track-lab,
.track-step.done .track-lab {
  color: var(--ink);
}
.track-line {
  flex: 1;
  height: 2px;
  background: #eef2f3;
  margin-top: 14px;
  min-width: 6px;
}
.track-line.done {
  background: #bfeee9;
}
.actbar {
  background: var(--mint);
  border: 1px solid #bfeee9;
  border-radius: 14px;
  padding: 14px 16px;
  margin-top: 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  flex-wrap: wrap;
}
.ab-txt {
  font-size: 12.5px;
  color: var(--teal-900);
  flex: 1;
  min-width: 200px;
  line-height: 1.5;
}
.ab-btns {
  display: flex;
  gap: 9px;
  flex-wrap: wrap;
}
.actbar.warn {
  background: #FFF8EC;
  border-color: #F3DDB0;
}
.actbar.warn .ab-txt {
  color: #9a6a1c;
}
.actbar.warn .btn.ghost {
  background: #fff;
  color: #9a6a1c;
  border-color: #E9C988;
}
.actbar.danger {
  background: #FFF1EE;
  border-color: #f0c4ba;
}
.actbar.danger .ab-txt {
  color: #9a3b29;
}
.btn.sm {
  padding: 9px 15px;
  font-size: 12.5px;
}
.tl-row {
  display: flex;
  gap: 11px;
  padding: 6px 0;
}
.led-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 12px;
  padding: 7px 0;
}
.tl-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--teal);
  flex: none;
  margin-top: 4px;
}
.fz15 {
  font-size: 15px;
}
.inv-card {
  border-top: 3px solid var(--teal);
}
.inv-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 13px;
}
.inv-draft {
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.7px;
  color: var(--slate);
  background: #eef2f3;
  border-radius: 5px;
  padding: 3px 8px;
}
.inv-dep {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: var(--mint);
  border-radius: 11px;
  padding: 10px 13px;
  margin-top: 11px;
  font-size: 12.5px;
  font-weight: 700;
  color: var(--teal-900);
}
.inv-dep b {
  font-size: 14.5px;
  color: var(--teal-deep);
}
.svc-block {
  border-top: 1px solid var(--line);
  padding-top: 13px;
  margin-top: 13px;
}
.svc-block:first-of-type {
  border-top: none;
  padding-top: 0;
  margin-top: 0;
}
.svc-head {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 13px;
  font-weight: 800;
  color: var(--ink);
  margin-bottom: 9px;
}
.avail-row {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  padding: 9px 11px;
  background: #f8fbfb;
  border: 1px solid var(--line);
  border-radius: 11px;
  margin-top: 7px;
}
.avail-row:first-of-type {
  margin-top: 0;
}
.avail-main {
  min-width: 0;
  flex: 1;
}
.avail-top {
  display: flex;
  align-items: center;
  gap: 8px;
}
.avail-sess {
  font-size: 12.5px;
  font-weight: 700;
  color: var(--ink);
}
.avail-badge {
  font-size: 9.5px;
  font-weight: 800;
  padding: 2px 8px;
  border-radius: 20px;
  letter-spacing: 0.2px;
  white-space: nowrap;
}
.avail-sub {
  font-size: 11.5px;
  margin-top: 4px;
  line-height: 1.55;
}
.avail-act {
  display: flex;
  gap: 6px;
  flex: none;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.bklink {
  font-weight: 800;
  color: var(--teal-deep);
  cursor: pointer;
}
.psel.sm {
  padding: 6px 11px;
  font-size: 11.5px;
}
.hexp {
  font-size: 10px;
  font-weight: 700;
  color: var(--slate);
  background: #eef2f3;
  border-radius: 5px;
  padding: 1px 6px;
  white-space: nowrap;
}
.hexp.soon {
  color: #B5751A;
  background: #FCF1E0;
}
.hexp.expired {
  color: #E2674F;
  background: #FBE9E5;
}
.avail-extra {
  margin-top: 8px;
}
.wl-queue {
  background: #FFFBF3;
  border: 1px solid #F2E2C4;
  border-radius: 10px;
  padding: 9px 11px;
}
.wl-title {
  font-size: 10.5px;
  font-weight: 800;
  color: #B5751A;
  display: flex;
  align-items: center;
  gap: 5px;
  margin-bottom: 6px;
  text-transform: uppercase;
  letter-spacing: 0.3px;
}
.wl-item {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 12px;
  padding: 3px 0;
}
.wl-pos {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: #F0E4CC;
  color: #8A6516;
  font-size: 10px;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  flex: none;
}
.wl-name {
  font-weight: 700;
  color: var(--ink);
}
.wl-offered {
  font-size: 10px;
  font-weight: 700;
  color: var(--green);
  background: #E2F6EF;
  border-radius: 5px;
  padding: 1px 6px;
}
.hold-act {
  font-size: 11.5px;
  color: var(--slate);
  margin-top: 8px;
  line-height: 1.55;
}
.hold-act.warn {
  background: #FBE9E5;
  border: 1px solid #F4CFC6;
  border-radius: 10px;
  padding: 9px 11px;
  color: #9E3B27;
}
.bkcal-wl {
  font-size: 8px;
  font-weight: 800;
  color: #B5751A;
  background: #FCF1E0;
  border-radius: 5px;
  padding: 1px 4px;
  letter-spacing: 0.2px;
}
.wiz-body {
  max-width: 760px;
}
.wiz {
  display: flex;
  align-items: center;
  gap: 11px;
  margin-bottom: 18px;
  max-width: 760px;
}
.wiz-step {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12.5px;
  font-weight: 800;
  color: var(--slate);
  cursor: pointer;
}
.wiz-step .wiz-num {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: #eef2f3;
  color: var(--slate);
  font-size: 11px;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  flex: none;
}
.wiz-step.active {
  color: var(--ink);
}
.wiz-step.active .wiz-num {
  background: var(--teal);
  color: #fff;
}
.wiz-step.done .wiz-num {
  background: #E2F6EF;
  color: var(--green);
}
.wiz-bar {
  flex: 1;
  height: 2px;
  background: #eef2f3;
  border-radius: 2px;
}
.wiz-bar.done {
  background: #bfeee9;
}
.wiz-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-top: 16px;
  flex-wrap: wrap;
}
.wf-total {
  font-size: 13px;
  font-weight: 700;
  color: var(--slate);
}
.wf-total b {
  font-size: 18px;
  color: var(--ink);
  margin-left: 7px;
}
.wiz-foot .btn {
  flex: none;
}
.invl-headrow {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  font-size: 11px;
  font-weight: 800;
  color: var(--slate);
  text-transform: uppercase;
  letter-spacing: 0.3px;
  margin-bottom: 10px;
}
.invl-row {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 8px;
}
.invl-desc {
  flex: 1;
  min-width: 0;
}
.invl-amtwrap {
  position: relative;
  flex: none;
  width: 150px;
  display: flex;
  align-items: center;
}
.invl-cur {
  position: absolute;
  left: 12px;
  font-size: 12px;
  font-weight: 700;
  color: var(--slate);
  pointer-events: none;
}
.invl-amt {
  padding-left: 38px;
  text-align: right;
  font-weight: 700;
}
.invl-amtwrap.disc .invl-cur {
  color: #9E3B27;
}
.invl-amtwrap.disc .invl-amt {
  padding-left: 44px;
  color: #9E3B27;
}
.invl-rm {
  width: 30px;
  height: 30px;
  border-radius: 8px;
  border: 1.5px solid var(--line);
  background: #fff;
  color: var(--slate);
  font-size: 17px;
  line-height: 1;
  cursor: pointer;
  flex: none;
}
.invl-rm:hover {
  border-color: #E2674F;
  color: #E2674F;
}
.invl-add {
  display: flex;
  gap: 9px;
  margin-top: 3px;
}
.invl-addbtn {
  font-size: 12px;
  font-weight: 700;
  color: var(--teal-deep);
  background: #fff;
  border: 1.5px dashed var(--mint-2);
  border-radius: 10px;
  padding: 8px 13px;
  cursor: pointer;
}
.invl-addbtn:hover {
  background: var(--mint);
}
.invl-addbtn.disc {
  color: #9E3B27;
  border-color: #F2D5CC;
}
.invl-addbtn.disc:hover {
  background: #FBE9E5;
}
textarea.inp {
  resize: vertical;
  font-family: inherit;
  line-height: 1.5;
}
.dt-note {
  font-size: 12px;
  font-style: italic;
  color: var(--slate);
  background: #f6fafb;
  border-left: 3px solid var(--mint-2);
  border-radius: 0 9px 9px 0;
  padding: 9px 12px;
  margin-top: 11px;
}
.esc-row {
  display: flex;
  gap: 10px;
  margin-top: 9px;
}
.esc-tile {
  flex: 1;
  min-width: 0;
  background: #f8fbfb;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 12px;
}
.esc-tile.done {
  background: #F0FBF6;
  border-color: #bfeee9;
}
.pe-fund {
  background: #f7fbfb;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 14px 15px;
  margin-top: 10px;
}
.pe-fund-top {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 10px;
}
.pe-fund-lab {
  font-size: 10.5px;
  font-weight: 800;
  color: var(--slate);
  text-transform: uppercase;
  letter-spacing: 0.4px;
}
.pe-fund-tot {
  font-size: 20px;
  font-weight: 800;
  color: var(--ink);
  letter-spacing: -0.01em;
  white-space: nowrap;
}
.pe-bar {
  height: 8px;
  border-radius: 6px;
  background: #e3edee;
  overflow: hidden;
  margin-top: 11px;
}
.pe-bar-fill {
  height: 100%;
  border-radius: 6px;
  background: var(--grad);
}
.pe-fund-foot {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  margin-top: 11px;
}
.pe-stat {
  flex: 1;
  min-width: 0;
}
.pe-stat.r {
  text-align: right;
}
.pe-stat .pv {
  font-size: 14.5px;
  font-weight: 800;
  white-space: nowrap;
}
.pe-stat .pl {
  font-size: 9.5px;
  font-weight: 800;
  color: var(--slate);
  text-transform: uppercase;
  letter-spacing: 0.3px;
  margin-top: 3px;
}
.pe-rail {
  margin-top: 15px;
}
.pe-step {
  display: flex;
  gap: 13px;
}
.pe-node {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex: none;
}
.pe-dot {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 800;
  flex: none;
  background: #fff;
  border: 2px solid #d3e3e4;
  color: var(--slate);
}
.pe-dot.done {
  background: var(--teal-deep);
  border-color: var(--teal-deep);
  color: #fff;
}
.pe-dot.next {
  border-color: var(--teal);
  color: var(--teal-deep);
  box-shadow: 0 0 0 4px var(--mint);
}
.pe-line {
  width: 2px;
  flex: 1;
  background: #e3edee;
  margin: 4px 0;
}
.pe-line.done {
  background: var(--teal-deep);
}
.pe-body {
  flex: 1;
  min-width: 0;
  padding-bottom: 18px;
}
.pe-step:last-child .pe-body {
  padding-bottom: 2px;
}
.pe-row1 {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 10px;
}
.pe-name {
  font-size: 13px;
  font-weight: 800;
  color: var(--ink);
  line-height: 1.3;
}
.pe-amt {
  font-size: 14px;
  font-weight: 800;
  color: var(--ink);
  white-space: nowrap;
}
.pe-row2 {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
  margin-top: 3px;
}
.pe-meta {
  font-size: 11px;
  font-weight: 600;
  color: var(--slate);
  line-height: 1.4;
}
.pe-status {
  font-size: 9.5px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.3px;
  color: var(--slate);
  white-space: nowrap;
  flex: none;
}
.pe-status.done {
  color: var(--teal-deep);
}
.pe-status.next {
  color: var(--teal);
}
.sub-card {
  border: 1.5px solid var(--teal-deep);
  background: #F1FBF9;
  border-radius: var(--r);
  padding: 16px;
  margin-bottom: 13px;
  box-shadow: var(--shadow);
}
.sub-head {
  display: flex;
  align-items: center;
  gap: 11px;
}
.sub-ic {
  width: 30px;
  height: 30px;
  border-radius: 9px;
  background: var(--mint-2);
  color: var(--teal-deep);
  display: flex;
  align-items: center;
  justify-content: center;
  flex: none;
}
.sub-hl {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  background: #fff;
  border: 1px solid var(--mint-2);
  border-radius: 12px;
  padding: 12px 14px;
  margin-top: 13px;
}
.sub-hl-l {
  font-size: 10.5px;
  font-weight: 800;
  color: var(--teal-deep);
  text-transform: uppercase;
  letter-spacing: 0.3px;
}
.sub-hl-s {
  font-size: 11px;
  font-weight: 600;
  color: var(--slate);
  margin-top: 2px;
}
.sub-hl-v {
  font-size: 18px;
  font-weight: 800;
  white-space: nowrap;
}
.sub-swap {
  display: flex;
  align-items: center;
  gap: 11px;
  background: #fff;
  border: 1px solid var(--mint-2);
  border-radius: 12px;
  padding: 12px 14px;
  margin-top: 13px;
}
.sub-swap .sw-from {
  font-size: 12.5px;
  font-weight: 700;
  color: var(--slate);
  text-decoration: line-through;
  flex: 1;
  min-width: 0;
}
.sub-swap .sw-arr {
  color: var(--teal-deep);
  flex: none;
  display: flex;
}
.sub-swap .sw-to {
  font-size: 13px;
  font-weight: 800;
  color: var(--ink);
  flex: 1;
  min-width: 0;
  text-align: right;
}
.sub-btns {
  display: flex;
  gap: 9px;
  margin-top: 13px;
}
.bksum-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  margin: 0 26px 14px 0;
}
.bksum-grid {
  border-top: 1px solid var(--line);
  padding-top: 4px;
}
.bksum-grid .kv:last-child {
  padding-bottom: 0;
}
.bksum-grid .kv {
  align-items: flex-start;
  gap: 10px;
}
.bksum-grid .kv .k {
  flex: 1;
  min-width: 0;
}
.bksum-grid .kv .v {
  flex: none;
}
.bksum-grid .kv .v.pend {
  font-size: 10.5px;
  font-weight: 700;
  line-height: 1.5;
  white-space: nowrap;
  color: var(--slate);
  background: #F2F6F7;
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 2px 9px;
}
.addpkg-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: 14px;
  padding-top: 13px;
  border-top: 1px dashed var(--line);
  flex-wrap: wrap;
}
.ord-rm {
  width: 28px;
  height: 28px;
  border-radius: 8px;
  border: 1.5px solid var(--line);
  background: #fff;
  color: var(--slate);
  font-size: 16px;
  line-height: 1;
  cursor: pointer;
  flex: none;
}
.ord-rm:hover {
  border-color: #E2674F;
  color: #E2674F;
}
.ord-edit {
  font-size: 11px;
  font-weight: 800;
  color: var(--teal-deep);
  background: var(--mint);
  border: none;
  border-radius: 8px;
  padding: 6px 11px;
  cursor: pointer;
  flex: none;
}
.ord-edit:hover {
  background: var(--mint-2);
}
.ord-empty {
  font-size: 12px;
  font-weight: 600;
  color: var(--slate);
  background: #f6fafb;
  border: 1px dashed var(--line);
  border-radius: 13px;
  padding: 15px;
  margin-top: 14px;
  text-align: center;
}
.card.editing {
  border-color: var(--teal);
  box-shadow: 0 0 0 2px var(--mint-2);
}
.invp {
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 12px 14px;
  margin-top: 10px;
  background: #fbfdfd;
}
.invp-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 8px;
  margin-bottom: 6px;
}
.invp-nm {
  font-size: 13px;
  font-weight: 800;
  color: var(--ink);
}
.invp-v {
  font-size: 11px;
  font-weight: 700;
  color: var(--slate);
}
.invp-line {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  font-size: 12.5px;
  font-weight: 600;
  color: var(--ink);
  padding: 3px 0;
}
.invp-line span:first-child {
  color: var(--slate);
}
.bk-remark {
  font-size: 10.5px;
  font-weight: 800;
  color: var(--teal-deep);
  background: var(--mint);
  border-radius: 7px;
  padding: 4px 9px;
  margin-top: 8px;
  display: inline-block;
}
.bk-remark.warn {
  color: #B5751A;
  background: #FCF1E0;
}
#bkDetailBody {
  max-width: 900px;
}
.dt-collrow {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-top: 14px;
}
.dt-collrow > .coll-sec {
  flex: 1;
  min-width: 0;
  margin-top: 0;
}
.coll-sec {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--r);
  box-shadow: var(--shadow);
  margin-top: 14px;
  overflow: hidden;
}
.coll-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 14px 17px;
  cursor: pointer;
  -webkit-user-select: none;
  user-select: none;
}
.coll-head .cl {
  margin: 0;
}
.coll-htxt {
  display: flex;
  align-items: center;
  gap: 9px;
  min-width: 0;
}
.coll-chev {
  width: 20px;
  height: 20px;
  flex: none;
  color: var(--slate);
  transition: transform 0.16s;
}
.coll-sec.open .coll-chev {
  transform: rotate(180deg);
}
.coll-body {
  padding: 0 17px 15px;
  display: none;
}
.coll-sec.open .coll-body {
  display: block;
}
.coll-sub {
  font-size: 11px;
  font-weight: 700;
  color: var(--slate);
}
.apv-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 11px;
  padding: 11px 0;
  border-bottom: 1px solid var(--line);
}
.apv-row:last-child {
  border-bottom: none;
}
.apv-dot {
  width: 30px;
  height: 30px;
  border-radius: 9px;
  display: grid;
  place-items: center;
  flex: none;
}
.apv-st {
  font-size: 10px;
  font-weight: 800;
  padding: 3px 10px;
  border-radius: 20px;
  white-space: nowrap;
}
.apv-st.ok {
  color: var(--green);
  background: #E2F6EF;
}
.apv-st.wait {
  color: #B5751A;
  background: #FCF1E0;
}
.apv-st.no {
  color: #E2674F;
  background: #FBE9E5;
}
.pkgblk {
  border: 1px solid var(--line);
  border-radius: 13px;
  margin-top: 11px;
  overflow: hidden;
}
.pkgblk-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 12px 14px;
  cursor: pointer;
  background: #fbfdfd;
}
.pkgblk-nm {
  font-size: 13px;
  font-weight: 800;
  color: var(--ink);
}
.pkgblk-body {
  padding: 2px 14px 13px;
  display: none;
}
.pkgblk.open .pkgblk-body {
  display: block;
}
.pkgblk.open .coll-chev {
  transform: rotate(180deg);
}
.ip-doc {
  font-size: 13px;
  color: var(--ink);
}
.ip-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  padding-bottom: 14px;
  border-bottom: 2px solid var(--teal);
  margin-bottom: 14px;
}
.ip-title {
  font-size: 20px;
  font-weight: 800;
  letter-spacing: 1px;
  color: var(--teal-900);
}
.ip-draft {
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.5px;
  color: var(--slate);
  margin-top: 3px;
  text-transform: uppercase;
}
.ip-vendor {
  display: flex;
  align-items: center;
  gap: 11px;
  min-width: 0;
}
.ip-vphoto {
  width: 46px;
  height: 46px;
  border-radius: 12px;
  overflow: hidden;
  flex: none;
  border: 1px solid var(--line);
}
.ip-vname {
  font-size: 15px;
  font-weight: 800;
  color: var(--teal-900);
  line-height: 1.15;
}
.ip-vsub {
  font-size: 11px;
  color: var(--slate);
  font-weight: 600;
  margin-top: 2px;
}
.ip-parties {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 12px;
}
.ip-lbl {
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.4px;
  color: var(--slate);
}
.ip-val {
  font-size: 14px;
  font-weight: 800;
  color: var(--ink);
  margin-top: 3px;
}
.ip-event {
  background: #f6fafb;
  border: 1px solid var(--line);
  border-radius: 11px;
  padding: 11px 13px;
  margin-bottom: 14px;
}
.ip-event .ip-val {
  font-size: 13.5px;
}
.ip-sec {
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.4px;
  color: var(--teal-deep);
  margin: 14px 0 7px;
}
.ip-pkg {
  border: 1px solid var(--line);
  border-radius: 11px;
  padding: 11px 13px;
  margin-bottom: 9px;
}
.ip-pkgnm {
  font-size: 13.5px;
  font-weight: 800;
  color: var(--ink);
  margin-bottom: 5px;
}
.ip-cat {
  font-size: 10px;
  font-weight: 700;
  color: var(--slate);
  background: #eef2f3;
  border-radius: 6px;
  padding: 2px 7px;
  margin-left: 5px;
  vertical-align: middle;
}
.ip-line {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 3px 0;
  font-size: 13px;
  font-weight: 600;
}
.ip-line > span:first-child {
  color: var(--slate);
}
.ip-menu {
  margin-top: 8px;
  background: #f6fafb;
  border-radius: 8px;
  padding: 8px 10px;
}
.ip-mrow {
  display: flex;
  gap: 10px;
  font-size: 12px;
  padding: 2px 0;
}
.ip-mc {
  color: var(--slate);
  font-weight: 700;
  flex: none;
  min-width: 108px;
}
.ip-tot {
  border-top: 1px solid var(--line);
  margin-top: 10px;
  padding-top: 8px;
}
.ip-grand {
  border-top: 1px solid var(--line);
  margin-top: 4px;
  padding-top: 8px;
  font-size: 15px;
  font-weight: 800;
  color: var(--ink);
}
.ip-grand > span {
  color: var(--ink) !important;
}
.ip-dep {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: var(--mint);
  border-radius: 11px;
  padding: 11px 13px;
  margin-top: 12px;
  font-size: 13px;
  font-weight: 700;
  color: var(--teal-900);
}
.ip-dep b {
  font-size: 15px;
  color: var(--teal-deep);
}
.ip-note {
  font-size: 12.5px;
  font-style: italic;
  color: var(--slate);
  background: #f6fafb;
  border-left: 3px solid var(--mint-2);
  border-radius: 0 9px 9px 0;
  padding: 10px 12px;
  margin-top: 14px;
}
.ip-foot {
  font-size: 11px;
  color: var(--slate);
  text-align: center;
  margin-top: 16px;
  padding-top: 13px;
  border-top: 1px dashed var(--line);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}
@media (max-width: 820px) {
  .bkcal-cell {
    min-height: 54px;
    padding: 4px 3px;
  }
  .bkcal-evs {
    display: none;
  }
  .bkcal-sc {
    font-size: 7px;
    padding: 0 3px;
  }
  .bkcal-dots {
    display: flex;
    gap: 3px;
    margin-top: 1px;
    flex-wrap: wrap;
  }
  .bkcal-dow {
    padding: 6px 4px;
    font-size: 9px;
  }
  .bkcal-cnum {
    font-size: 11.5px;
    min-height: 18px;
    margin-bottom: 2px;
  }
  .bkcal-daynum {
    min-width: 18px;
    height: 18px;
  }
  .bkcal-lock {
    font-size: 7.5px;
    padding: 1px 3px;
  }
  .track-step {
    width: auto;
    flex: 1;
    min-width: 0;
  }
  .track-lab {
    font-size: 8px;
    margin-top: 6px;
  }
  .track-dot {
    width: 26px;
    height: 26px;
    font-size: 11px;
  }
  .actbar {
    flex-direction: column;
    align-items: stretch;
  }
  .ab-btns .btn,
  .ab-btns .psel {
    flex: 1;
  }
  .dt-collrow {
    flex-direction: column;
    align-items: stretch;
  }
  .esc-row {
    flex-direction: column;
  }
  .invl-amtwrap {
    width: 116px;
  }
  .invl-amt {
    padding-left: 33px;
  }
  .wf-total b {
    font-size: 16px;
  }
}
.wsec {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r);
  box-shadow: var(--shadow);
  margin-bottom: 14px;
  overflow: hidden;
}
.wsec-h {
  width: 100%;
  background: none;
  border: none;
  padding: 16px 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  text-align: left;
  font: inherit;
}
.wsec-t {
  font-weight: 800;
  font-size: 14px;
  color: var(--ink);
}
.wsec-s {
  font-size: 11px;
  color: var(--slate);
  margin-top: 2px;
  font-weight: 500;
}
.wsec-chev {
  color: var(--slate);
  transition: transform 0.18s;
  transform: rotate(-90deg);
  flex: none;
}
.wsec-chev.open {
  transform: rotate(0deg);
}
.wsec-b {
  padding: 0 18px 18px;
}
.wmonths {
  display: flex;
  gap: 7px;
  overflow-x: auto;
  padding-bottom: 4px;
}
.wchip {
  flex: none;
  border: 1px solid var(--line);
  background: #fff;
  color: var(--slate);
  border-radius: 99px;
  padding: 6px 13px;
  font-size: 12px;
  font-weight: 700;
  cursor: pointer;
  white-space: nowrap;
}
.wchip.on {
  background: var(--ink);
  color: #fff;
  border-color: var(--ink);
}
.wtx {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 11px 0;
  border-bottom: 1px solid var(--line);
}
.wtx:last-child {
  border-bottom: none;
}
.wtx-l {
  display: flex;
  gap: 11px;
  align-items: flex-start;
  min-width: 0;
}
.wtx-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  flex: none;
  margin-top: 5px;
}
.wtx-t {
  font-weight: 700;
  font-size: 13px;
  color: var(--ink);
}
.wtx-s {
  font-size: 11px;
  color: var(--slate);
  margin-top: 2px;
}
.wtx-a {
  font-weight: 800;
  font-size: 14px;
  white-space: nowrap;
  flex: none;
}
.wledger-scroll {
  max-height: 420px;
  overflow-y: auto;
  margin-top: 11px;
  border: 1px solid var(--line);
  border-radius: 12px;
}
.wledger-scroll::-webkit-scrollbar {
  width: 8px;
}
.wledger-scroll::-webkit-scrollbar-track {
  background: transparent;
}
.wledger-scroll::-webkit-scrollbar-thumb {
  background: #d4e2e4;
  border-radius: 8px;
}
.wtx {
  padding: 12px 14px;
}
.wtx-click {
  cursor: pointer;
}
.wtx-click:hover {
  background: #f6fafb;
}
.wledger-sentinel {
  padding: 14px;
  text-align: center;
  color: var(--slate);
  font-size: 12px;
  font-weight: 600;
}
.kced {
  display: flex;
  gap: 18px;
  align-items: flex-start;
}
.kced-panel {
  flex: 0 0 300px;
  min-width: 0;
}
.kced-canvas {
  flex: 1;
  min-width: 0;
  display: flex;
  justify-content: center;
  position: sticky;
  top: 12px;
}
.kc-ed [data-ce]:hover {
  background: rgba(15, 181, 174, 0.1);
  box-shadow: 0 0 0 1px rgba(15, 181, 174, 0.35);
}
.kc-ed [data-ce]:focus {
  background: rgba(15, 181, 174, 0.13);
  box-shadow: 0 0 0 1.5px var(--teal);
  outline: none;
}
.kc-ed [data-ce]:empty:before {
  content: "Tap to add";
  color: #c4bcb2;
  font-style: italic;
}
@media (max-width: 840px) {
  .kced {
    flex-direction: column;
  }
  .kced-panel {
    flex: auto;
    width: 100%;
    order: 2;
  }
  .kced-canvas {
    flex: auto;
    width: 100%;
    order: 1;
    position: static;
  }
}
.kc-scroll {
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.kc-scroll::-webkit-scrollbar {
  width: 0;
  height: 0;
  display: none;
}
.kc-galtrack {
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.kc-galtrack::-webkit-scrollbar {
  width: 0;
  height: 0;
  display: none;
}
#authLayer {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 5000;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  background:
    linear-gradient(
      165deg,
      #0B7C8C 0%,
      #0E9AA0 36%,
      #0FB5AE 68%,
      #46D2C6 100%);
  font-family: "Montserrat", sans-serif;
}
.au-wrap {
  min-height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 32px 20px;
  box-sizing: border-box;
}
.au-inner {
  width: 100%;
  max-width: 392px;
}
.au-brand {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  margin-bottom: 22px;
}
.au-mark {
  width: 54px;
  height: 54px;
  border-radius: 15px;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--teal-deep);
  font-weight: 900;
  font-size: 27px;
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.2);
}
.au-wm {
  color: #fff;
  font-weight: 800;
  font-size: 25px;
  letter-spacing: -0.5px;
  margin-top: 13px;
}
.au-sub {
  color: rgba(255, 255, 255, 0.84);
  font-size: 12.5px;
  font-weight: 500;
  margin-top: 4px;
}
.au-card {
  background: #fff;
  border-radius: 20px;
  padding: 24px 22px;
  box-shadow: 0 22px 54px rgba(4, 40, 46, 0.3);
}
.au-h {
  font-size: 20px;
  font-weight: 800;
  color: var(--ink);
}
.au-hs {
  font-size: 12.5px;
  color: var(--slate);
  margin-top: 5px;
  line-height: 1.45;
}
.au-lab {
  font-size: 11.5px;
  font-weight: 700;
  color: var(--slate);
  margin: 14px 0 5px;
}
.au-inp {
  width: 100%;
  border: 1.5px solid var(--line);
  border-radius: 11px;
  padding: 12px 13px;
  font-size: 14px;
  color: var(--ink);
  font-family: inherit;
  background: #fbfdfd;
  outline: none;
  box-sizing: border-box;
  transition: 0.12s;
}
.au-inp:focus {
  border-color: var(--teal);
  background: #fff;
  box-shadow: 0 0 0 3px rgba(15, 181, 174, 0.13);
}
.au-btn {
  width: 100%;
  margin-top: 18px;
  background: var(--grad);
  color: #fff;
  border: none;
  border-radius: 12px;
  padding: 14px;
  font-size: 14.5px;
  font-weight: 800;
  cursor: pointer;
  box-shadow: 0 10px 22px rgba(11, 124, 140, 0.26);
  transition: 0.1s;
}
.au-btn:active {
  transform: translateY(1px);
}
.au-link {
  background: none;
  border: none;
  color: var(--teal-deep);
  font-weight: 700;
  font-size: 12.5px;
  cursor: pointer;
  padding: 0;
  font-family: inherit;
}
.au-foot {
  text-align: center;
  color: rgba(255, 255, 255, 0.92);
  font-size: 12.5px;
  margin-top: 18px;
}
.au-link2 {
  background: none;
  border: none;
  color: #fff;
  font-weight: 800;
  cursor: pointer;
  text-decoration: underline;
  font-family: inherit;
  font-size: 12.5px;
}
.au-role {
  display: flex;
  gap: 5px;
  background: #eef3f3;
  border-radius: 11px;
  padding: 4px;
  margin-top: 4px;
}
.au-role button {
  flex: 1;
  border: none;
  background: transparent;
  border-radius: 8px;
  padding: 9px;
  font-size: 12.5px;
  font-weight: 700;
  color: var(--slate);
  cursor: pointer;
  font-family: inherit;
}
.au-role button.on {
  background: #fff;
  color: var(--teal-deep);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}
.cdk-overlay-container {
  z-index: 100000;
}

/* angular:styles/global:styles */
/*# sourceMappingURL=styles-CSTMYI77.css.map */
