:root {
  --bg: #ffffff;
  --text: #0b0b0b;
  --muted: #6b6b6b;
  --divider: #ececec;
  --accent: #44d312;
  --radius: 18px;
  --maxw: 420px;
  --safe-bottom: env(safe-area-inset-bottom, 0px);
  --safe-top: env(safe-area-inset-top, 0px);
  --border-radius: 15px;
}

@media (prefers-color-scheme: dark) {
  :root {
    --bg: #0e0e0e;
    --text: #f7f7f7;
    --muted: #b7b7b7;
    --divider: #262626;
  }
}

* {
  box-sizing: border-box;
  -webkit-tap-highlight-color: transparent;
  touch-action: manipulation;
}

html,
body {
  height: 100%;
}

body {
  margin: 0;
  font: 17px/1.35 -apple-system, BlinkMacSystemFont, "SF Pro Text",
    "Helvetica Neue", Helvetica, Arial, system-ui, sans-serif;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.no-scroll {
  overflow: hidden;
}

.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;
}

.app {
  margin: 0 auto;
  width: 100%;
  max-width: var(--maxw);
  min-height: 100vh;
  padding-bottom: calc(88px + var(--safe-bottom));
  display: flex;
  flex-direction: column;
}

.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: calc(10px + var(--safe-top)) 18px 10px;
  position: relative;
  top: 0;
  z-index: 2;
  margin: 0;
  width: 100%;
  max-width: 100%;
  border: 0;
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}


.brand {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo {
  height: 50px;
  width: auto;
  display: block;
  stroke-dasharray: 300;
  stroke-dashoffset: 0;
  filter: drop-shadow(0 0 6px rgba(0, 0, 0, 0.15));
  padding: 2px;
}

.logo path {
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

@media (prefers-color-scheme: dark) {
  .logo path {
    stroke: #fff;
  }
}

@keyframes logo-draw {
  0% {
    stroke-dashoffset: 300;
    opacity: 0.6;
  }
  40% {
    stroke-dashoffset: 0;
    opacity: 1;
  }
  100% {
    stroke-dashoffset: 0;
    opacity: 1;
  }
}

.logout-link {
  font-size: 14px;
  color: inherit;
  text-decoration: none;
  cursor: pointer;
}

.logout-link[hidden] {
  display: none;
}

.section-title {
  font-size: 32px;
  font-weight: 700;
  padding: 0 0 0;
  margin: 0;
}

.list {
  background: transparent;
}

.history__header {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 0 16px 12px;
  gap: 4px;
  margin-top: 60px;
  top: 0;
  z-index: 5;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.85));
}

.history__note {
  font-size: 13px;
  line-height: 1.4;
  color: #6f819b;
  max-width: 640px;
}

.history__tabs {
  display: grid;
  grid-template-columns: repeat(3, auto);
  gap: 6px;
  padding: 3px;
  background: rgba(118, 118, 128, 0.12);
  border-radius: 14px;
  position: relative;
}

.history__tab {
  border: none;
  background: transparent;
  color: var(--text);
  border-radius: 10px;
  padding: 6px 10px;
  font-weight: 600;
  font-size: 12px;
  cursor: pointer;
  transition: opacity 0.15s ease;
  z-index: 2;
}

.history__tab.is-active {
  color: #000;
}

.history__tab:focus {
  outline: none;
}

.history__tab-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  font-weight: 800;
}

.history__group-title {
  padding: 10px 16px 6px;
  font-size: 13px;
  font-weight: 700;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

@media (prefers-color-scheme: dark) {
  .history__tab {
    background: rgba(18, 18, 18, 0.7);
    border-color: rgba(255, 255, 255, 0.08);
  }
}

@media (prefers-color-scheme: dark) {
  .history__header {
    background: linear-gradient(180deg, rgba(14, 14, 14, 0.9), rgba(14, 14, 14, 0.85));
  }
}

.row {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  padding: 14px 16px;
  border-top: 1px solid var(--divider);
}

.row--enter {
  animation: historyRowIn 180ms ease-out forwards;
  will-change: opacity, transform;
}


.row:first-child {
  border-top: 0;
}

.row--failed {
  .left {
    color: #c43d3d;
  }
}

.row--failed .right,
.row--failed .dur {
  color: #c43d3d;
}

@media (prefers-reduced-motion: reduce) {
  .row--enter {
    animation: none;
  }
}

.left .date-wrap {
  display: inline-flex;
  align-items: baseline;
  gap: 6px;
  margin-bottom: 4px;
}

.left .date {
  font-weight: inherit;
}

.left .date-count {
  color: var(--muted);
  font-size: 14px;
  margin-top: 0;
}

.left .time {
  font-size: 13px;
  color: var(--muted);
}

.right {
  text-align: right;
  min-width: 72px;
  font-size: 12px;
  color: var(--muted);
  padding-top: 2px;
}

.right .dur {
  display: inline-block;
  min-width: 52px;
}

.empty {
  color: var(--muted);
  font-size: 13px;
  padding: 10px 16px 24px;
}

.history__loading {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 26px 16px 34px;
}

.history__loading[hidden] {
  display: none;
}

.history-loading__logo {
  position: relative;
  width: 112px;
  height: 60px;
  color: var(--text);
  filter: drop-shadow(0 12px 26px rgba(0, 0, 0, 0.12));
}

.history-loading__logo svg {
  width: 100%;
  height: 100%;
  padding: 10px;
  position: relative;
  z-index: 2;
  color: var(--muted)
}

.history-loading__logo path {
  fill: none;
  stroke: currentColor;
  stroke-width: 2.4;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-dasharray: 300;
  stroke-dashoffset: 300;
  animation: logo-draw 2.6s ease-in-out infinite;
}

.history-loading__text {
  margin: 0;
  font-size: 14px;
  color: var(--muted);
}

.bottom-glass-panel {
  position: fixed;
  bottom: 34px;
  left: 50%;
  transform: translate(-50%, 0);
  width: 90%;
  max-width: 400px;
  backdrop-filter: blur(5px) saturate(180%);
  -webkit-backdrop-filter: blur(5px) saturate(180%);
  border-radius: 32px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
  padding: 16px;
  display: none;
  flex-direction: column;
  gap: 16px;
  z-index: 100;
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Text", sans-serif;
  pointer-events: auto;
  opacity: 1;
  transition: transform 0.35s ease, opacity 0.35s ease;
}

.bottom-glass-panel[hidden] {
  display: none;
}

.bottom-glass-panel:not([hidden]) {
  display: flex;
}

.bottom-glass-panel.is-hidden {
  transform: translate(-50%, 120%);
  opacity: 0;
  pointer-events: none;
}

.segmented-control {
  display: flex;
  background: rgba(118, 118, 128, 0.12);
  border-radius: 14px;
  padding: 3px;
  position: relative;
  height: 36px;
}

.filter-btn {
  flex: 1;
  border: none;
  background: none;
  padding: 0;
  font-size: 13px;
  font-weight: 600;
  color: var(--text);
  z-index: 2;
  cursor: pointer;
  text-align: center;
  transition: opacity 0.2s;
  display: flex;
  align-items: center;
  justify-content: center;
}

.control-slider {
  position: absolute;
  top: 3px;
  left: 3px;
  width: calc(33.33% - 2px);
  height: calc(100% - 6px);
  background: #fff;
  border-radius: 11px;
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.12), 0 3px 1px rgba(0, 0, 0, 0.04);
  transition: transform 0.3s cubic-bezier(0.2, 0.8, 0.2, 1);
  z-index: 1;
}

.call-now-btn {
  width: 100%;
  border: none;
  padding: 16px;
  border-radius: 20px;
  background: #34c759;
  color: white;
  font-size: 17px;
  font-weight: 600;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  transition: transform 0.1s, background 0.2s;
  box-shadow: 0 4px 15px rgba(52, 199, 89, 0.3);
}

.call-now-btn:active {
  background: #2db84c;
  transform: scale(0.98);
}

.call-now-btn.is-disabled {
  background: #c6c6c8;
  color: #6b6b6b;
  box-shadow: none;
  cursor: not-allowed;
}

.call-now-btn svg {
  width: 20px;
  height: 20px;
  stroke: currentColor;
  stroke-width: 2;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.call-now-btn.is-hidden {
  display: none;
}

.call-cta {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.call-unavailable {
  font-size: 12px;
  color: rgba(114, 48, 255, 0.9);
  background: rgba(114, 48, 255, 0.09);
  padding: 6px 10px;
  border-radius: 10px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 6px;
}

.call-unavailable[hidden] {
  display: none !important;
}

.access-form {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.access-form[hidden] {
  display: none !important;
}

.access-form__row {
  display: flex;
  align-items: center;
  gap: 8px;
}

.access-form__input {
  flex: 1;
  padding: 10px 12px;
  border-radius: 12px;
  border: 1px solid #d7d7d7;
  background: #fff;
  font-size: 14px;
  line-height: 1.4;
}

.access-form__input:focus {
  outline: 2px solid rgba(114, 48, 255, 0.7);
  outline-offset: 1px;
}

.access-form__submit {
  border: none;
  background: #0f1622;
  color: #fff;
  padding: 10px 14px;
  border-radius: 12px;
  font-weight: 700;
  cursor: pointer;
  transition: transform 0.1s, background 0.2s;
}

.access-form__submit:active {
  transform: scale(0.98);
  background: #121b29;
}

.access-form__status {
  margin: 0;
  font-size: 12px;
  line-height: 1.5;
  color: #0f1622;
}

.access-form__status[data-state="loading"] {
  color: rgba(114, 48, 255, 0.9);
}

.access-form__status[data-state="error"] {
  color: #d30038;
}

.access-form__status[data-state="success"] {
  color: #1d9c5a;
  font-weight: 700;
}

.key-gate {
  padding: 24px 20px;
  margin: 24px auto 0;
  max-width: 420px;
  background: #ffffff;
}

.key-gate__title {
  margin: 0 0 6px;
  font-size: 20px;
}

.key-gate__text {
  margin: 0 0 14px;
  color: #374151;
  line-height: 1.5;
  font-size: 14px;
}

.history.is-key-required [data-history-list],
.history.is-key-required [data-history-loading],
.history.is-key-required [data-history-empty],
.history.is-key-required .segmented-control,
.history.is-key-required .history__header {
  display: none !important;
}

.history.is-key-required .key-gate {
  display: block;
}

.dnd-notice {
  position: fixed;
  top: 16px;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(114, 48, 255, 0.9);
  color: #fff;
  padding: 12px 16px;
  border-radius: 12px;
  font-weight: 700;
  font-size: 14px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.25);
  z-index: 999;
}

.dnd-rules {
  color: #0b0b0b;
  padding: 8px 10px;
  border-radius: 10px;
  font-size: 12px;
  line-height: 1.4;
  text-align: left;
}

.dnd-rule-active {
  font-weight: 700;
}

@media (prefers-color-scheme: dark) {
  .dnd-rules {
    color: #f7f7f7;
  }
}

.call-overlay {
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: 0;
  visibility: hidden;
  display: none;
  transition: opacity 0.18s ease, visibility 0.18s ease;
  z-index: 30;
}

.call-overlay.is-open {
  opacity: 1;
  pointer-events: auto;
  visibility: visible;
  display: block;
}

.call-overlay__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
}

.call-overlay__remote {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
  animation: fadeIn 1.2s ease-out;
  background: #000;
}

.call-overlay__local-wrapper {
  position: absolute;
  bottom: 140px;
  right: 20px;
  width: 110px;
  height: 160px;
  border-radius: 18px;
  overflow: hidden;
  z-index: 10;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4);
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition:
    transform 0.45s cubic-bezier(0.2, 0.8, 0.2, 1),
    top 0.45s cubic-bezier(0.2, 0.8, 0.2, 1),
    right 0.45s cubic-bezier(0.2, 0.8, 0.2, 1),
    bottom 0.45s cubic-bezier(0.2, 0.8, 0.2, 1),
    left 0.45s cubic-bezier(0.2, 0.8, 0.2, 1);
  animation: slideInUp 0.8s cubic-bezier(0.2, 0.8, 0.2, 1) 0.2s backwards;
}

.call-overlay__local-wrapper[data-position="top-left"] {
  top: 20px;
  left: 20px;
  right: auto;
  bottom: auto;
  transform: translate(0, 0);
}

.call-overlay__local-wrapper[data-position="top-right"] {
  top: 20px;
  right: 20px;
  left: auto;
  bottom: auto;
  transform: translate(0, 0);
}

.call-overlay__local-wrapper[data-position="bottom-left"] {
  top: auto;
  left: 20px;
  bottom: 140px;
  right: auto;
  transform: translate(0, 0);
}

.call-overlay__local-wrapper[data-position="bottom-right"] {
  bottom: 140px;
  right: 20px;
  top: auto;
  left: auto;
  transform: translate(0, 0);
}

.call-overlay__local-wrapper.relaxed[data-position="bottom-left"],
.call-overlay__local-wrapper.relaxed[data-position="bottom-right"] {
  bottom: 40px;
}

.call-overlay__local {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scaleX(-1);
  display: block;
}

@media (orientation: landscape) {
  .call-overlay__local-wrapper {
    width: 170px;
    height: 110px;
  }

  .call-overlay__local-wrapper[data-position="bottom-left"],
  .call-overlay__local-wrapper[data-position="bottom-right"] {
    bottom: 100px;
  }

  .call-overlay__local-wrapper.relaxed[data-position="bottom-left"],
  .call-overlay__local-wrapper.relaxed[data-position="bottom-right"] {
    bottom: 30px;
  }
}

.call-overlay__controls {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  width: 85%;
  max-width: 360px;
  height: 80px;
  background: rgba(20, 20, 20, 0.5);
  backdrop-filter: blur(25px);
  -webkit-backdrop-filter: blur(25px);
  border-radius: 45px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
  display: flex;
  justify-content: space-evenly;
  align-items: center;
  z-index: 20;
  transition: all 0.5s cubic-bezier(0.2, 0.8, 0.2, 1);
  opacity: 1;
  animation: slideInUp 0.8s cubic-bezier(0.2, 0.8, 0.2, 1) 0.4s backwards;
}

.call-overlay__controls.hidden {
  transform: translate(-50%, 150%);
  opacity: 0;
}

.call-overlay__ringing {
  position: absolute;
  inset: 0;
  place-items: center;
  text-align: center;
  color: #fff;
  z-index: 10;
  padding: 20px;
  pointer-events: none;
  margin-top: 50%;
}

.call-overlay__ringing[hidden] {
  display: none;
}

.ringing__logo {
  position: relative;
  width: 120px;
  height: 94px;
  margin: 0 auto 16px;
  filter: drop-shadow(0 12px 30px rgba(0, 0, 0, 0.35));
  transition: opacity 0.2s ease;
}

.ringing__logo svg {
  width: 100%;
  height: 100%;
  padding: 10px;
}

.ringing__logo path {
  fill: none;
  stroke: currentColor;
  stroke-width: 2.5;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-dasharray: 300;
  stroke-dashoffset: 300;
  animation: logo-draw 2.8s ease-in-out infinite;
}

.call-overlay__ringing[data-state="stopped"] .ringing__logo {
  opacity: 0.3;
  animation: none;
}

.ringing__pulse {
  position: absolute;
  inset: 0;
  border-radius: 22px;
  background: radial-gradient(circle at 30% 30%, rgba(68, 211, 18, 0.22), rgba(68, 211, 18, 0));
  animation: pulse-ring 1.8s ease-in-out infinite;
  pointer-events: none;
}

.ringing__text {
  margin: 0;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0.2px;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.4);
}

.ringing__wave {
  position: absolute;
  inset: 0;
  border-radius: 24px;
  border: 1.5px solid rgba(255, 255, 255, 0.2);
  animation: wave 2.2s ease-out infinite;
}

.ringing__wave:nth-child(2) {
  animation-delay: 0.35s;
}

.ringing__wave:nth-child(3) {
  animation-delay: 0.7s;
}
@keyframes pulse-ring {
  0% {
    transform: scale(0.9);
    opacity: 0.7;
  }
  50% {
    transform: scale(1);
    opacity: 1;
  }
  100% {
    transform: scale(1.08);
    opacity: 0.4;
  }
}

@keyframes wave {
  0% {
    transform: scale(0.75);
    opacity: 0.6;
  }
  100% {
    transform: scale(1.4);
    opacity: 0;
  }
}

.call-btn {
  border: none;
  background: rgba(255, 255, 255, 0.1);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  color: white;
  transition: transform 0.1s ease, background 0.2s;
}

.call-btn:active {
  transform: scale(0.9);
  background: rgba(255, 255, 255, 0.25);
}

.call-btn svg {
  width: 24px;
  height: 24px;
  stroke: currentColor;
  stroke-width: 2;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.call-btn--hangup {
  background: #ff3b30;
  width: 60px;
  height: 60px;
  box-shadow: 0 4px 15px rgba(255, 59, 48, 0.5);
  display: grid;
  place-items: center;
}

.call-btn--hangup:active {
  background: #d63229;
  transform: scale(0.9);
}

.call-btn[data-state="off"] {
  background: rgba(196, 61, 61, 0.85);
}

.call-btn.is-hidden {
  display: none;
}

.call-overlay__message {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  padding: 12px;
  text-align: center;
  font-size: 13px;
  color: #fff;
  background: none;
  text-shadow: 0 1px 6px rgba(0, 0, 0, 0.6);
  pointer-events: none;
}

.auth {
  width: 100%;
  flex: 1;
  padding: 16px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.auth[hidden] {
  display: none !important;
}

.auth__card {
  position: relative;
  padding: 18px;
  border-radius: var(--border-radius);
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.92),
    rgba(255, 255, 255, 0.82)
  );
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  overflow: hidden;
}

@media (prefers-color-scheme: dark) {
  .auth__card {
    background: linear-gradient(
      135deg,
      rgba(32, 32, 32, 0.92),
      rgba(18, 18, 18, 0.9)
    );
    border: 1px solid rgba(255, 255, 255, 0.08);
  }
}

.auth__card::before {
  content: "";
  position: absolute;
  inset: -6px;
  background: radial-gradient(
      circle at 25% 20%,
      rgba(255, 255, 255, 0.18),
      transparent 60%
    ),
    radial-gradient(
      circle at 70% 70%,
      rgba(255, 255, 255, 0.08),
      transparent 70%
    );
  pointer-events: none;
  mix-blend-mode: overlay;
}

.auth__badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 10px;
  margin-bottom: 8px;
  font-size: 12px;
  font-weight: 700;
  color: #0b0b0b;
  background: rgba(68, 211, 18, 0.85);
  border-radius: 999px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.35);
}

.auth__title {
  margin: 0 0 6px;
  font-size: 22px;
  line-height: 1.25;
}

.auth__subtitle {
  margin: 0 0 12px;
  color: var(--muted);
  font-size: 14px;
}

.auth__form {
  display: grid;
  gap: 12px;
}

.auth__field {
  display: grid;
  gap: 6px;
}

.auth__label {
  font-size: 13px;
  color: var(--muted);
}

.auth__input {
  width: 100%;
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid var(--divider);
  background: rgba(255, 255, 255, 0.7);
  color: var(--text);
  font-size: 15px;
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}

@media (prefers-color-scheme: dark) {
  .auth__input {
    background: rgba(18, 18, 18, 0.7);
    border-color: rgba(255, 255, 255, 0.08);
  }
}

.auth__input:focus {
  outline: none;
  border-color: rgba(68, 211, 18, 0.8);
  box-shadow: 0 0 0 3px rgba(68, 211, 18, 0.2);
}

.auth__submit {
  width: 100%;
  border: none;
  padding: 16px;
  border-radius: 20px;
  background: #34c759;
  color: white;
  font-weight: 600;
  font-size: 16px;
  cursor: pointer;
  transition: transform 0.1s, background 0.2s;
  touch-action: manipulation;
  box-shadow: 0 4px 15px rgba(52, 199, 89, 0.3);
}

.auth__submit:active {
  background: #2db84c;
  transform: scale(0.98);
}

.auth__submit:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.auth__hint {
  margin: 0;
  color: var(--muted);
  font-size: 12px;
}

.auth__status {
  margin: 0;
  min-height: 20px;
  font-size: 13px;
}

.auth__status[data-state="loading"] {
  color: var(--muted);
}

.auth__status[data-state="success"] {
  color: #1e8a35;
}

.auth__status[data-state="error"] {
  color: #c43d3d;
}

@keyframes pulse-ring {
  0% {
    transform: scale(0.9);
    opacity: 0.7;
  }
  50% {
    transform: scale(1);
    opacity: 1;
  }
  100% {
    transform: scale(1.08);
    opacity: 0.4;
  }
}

@keyframes wave {
  0% {
    transform: scale(0.75);
    opacity: 0.6;
  }
  100% {
    transform: scale(1.4);
    opacity: 0;
  }
}

@supports (scroll-behavior: smooth) {
  html {
    scroll-behavior: smooth;
  }
}
