.txp-feature-demo-note {
  width: 100%;
  min-height: 560px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.txp-feature-note {
  position: relative;
  z-index: 20;
  width: 100%;
  max-width: 720px;
  margin: 0 auto;
  overflow: hidden;
  border-radius: 26px;
  background: #ffffff;
  border: 1px solid rgba(48, 56, 65, 0.08);
  box-shadow: 0 28px 80px rgba(48, 56, 65, 0.18);
  font-family: "Figtree", sans-serif;
  cursor: default;
  transition:
    width 0.24s ease,
    max-width 0.24s ease,
    border-radius 0.24s ease,
    box-shadow 0.24s ease;
  will-change: transform;
}

.txp-feature-note.is-compact {
  width: min(100%, 470px);
  max-width: 470px;
  border-radius: 22px;
  user-select: none;
}

.txp-feature-note.is-dragging {
  z-index: 2147483000;
  box-shadow: 0 34px 90px rgba(48, 56, 65, 0.26);
  transition: none;
}

.txp-feature-note__top {
  height: 58px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 0 22px;
  color: #303841;
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid rgba(48, 56, 65, 0.06);
  cursor: grab;
  touch-action: none;
  user-select: none;
}

.txp-feature-note.is-dragging .txp-feature-note__top {
  cursor: grabbing;
}

.txp-feature-note.is-compact .txp-feature-note__top {
  height: 58px;
  border-bottom: 0;
}

.txp-feature-note.is-compact .txp-feature-note__editor-wrap,
.txp-feature-note.is-compact .txp-feature-note__footer {
  display: none;
}

.txp-feature-note__title {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
  font-size: 15px;
  font-weight: 700;
  white-space: nowrap;
}

.txp-feature-note__title i {
  color: #303841;
  font-size: 15px;
}

.txp-feature-note__title-main {
  display: inline-flex;
  align-items: center;
}

.txp-feature-note__compact-text {
  display: none;
  min-width: 0;
  overflow: hidden;
  color: #303841;
  font-size: 15px;
  font-weight: 500;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.txp-feature-note.is-compact .txp-feature-note__title {
  flex: 1;
  overflow: hidden;
}

.txp-feature-note.is-compact .txp-feature-note__title i,
.txp-feature-note.is-compact .txp-feature-note__title-main,
.txp-feature-note.is-compact .txp-feature-note__toggle {
  display: none;
}

.txp-feature-note.is-compact .txp-feature-note__compact-text {
  display: block;
}

.txp-feature-note__toggle {
  width: 52px;
  height: 28px;
  position: relative;
  display: inline-flex;
  align-items: center;
  padding: 3px;
  border-radius: 999px;
  background: #c9cdd2;
  box-shadow: inset 0 1px 2px rgba(48, 56, 65, 0.12);
  flex: 0 0 auto;
}

.txp-feature-note__toggle::before {
  content: "";
  width: 22px;
  height: 22px;
  display: block;
  border-radius: 50%;
  background: #ffffff;
  box-shadow: 0 3px 8px rgba(48, 56, 65, 0.18);
}

.txp-feature-note__actions {
  display: flex;
  align-items: center;
  gap: 24px;
  color: #303841;
  font-size: 15px;
  font-weight: 700;
  white-space: nowrap;
}

.txp-feature-note__actions button {
  appearance: none;
  border: 0;
  padding: 0;
  color: inherit;
  background: transparent;
  box-shadow: none;
  outline: none;
  font: inherit;
  cursor: pointer;
}

.txp-feature-note__actions button:hover,
.txp-feature-note__actions button:focus,
.txp-feature-note__actions button:active,
.txp-feature-note__actions button:focus-visible {
  color: #303841;
  background: transparent;
  box-shadow: none;
  outline: none;
}

.txp-feature-note__actions i {
  font-size: 15px;
  opacity: 0.9;
}

.txp-feature-note__compact-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 18px;
  height: 18px;
  appearance: none;
  border: 0;
  padding: 0;
  color: #303841 !important;
  background: transparent !important;
  box-shadow: none !important;
  outline: none !important;
  font: inherit;
  cursor: pointer;
  flex: 0 0 auto;
}

.txp-feature-note__compact-button:hover,
.txp-feature-note__compact-button:focus,
.txp-feature-note__compact-button:active,
.txp-feature-note__compact-button:focus-visible {
  color: #303841 !important;
  background: transparent !important;
  box-shadow: none !important;
  outline: none !important;
}

.txp-feature-note__compact-icon {
  display: inline-flex;
  cursor: pointer;
  opacity: 0.95;
  color: #303841 !important;
}

.txp-feature-note__compact-button:hover .txp-feature-note__compact-icon,
.txp-feature-note__compact-button:focus .txp-feature-note__compact-icon,
.txp-feature-note__compact-button:active .txp-feature-note__compact-icon,
.txp-feature-note__compact-button:focus-visible .txp-feature-note__compact-icon {
  color: #303841 !important;
}

.txp-feature-note.is-compact .txp-feature-note__actions {
  gap: 0;
  margin-left: 12px;
}

.txp-feature-note.is-compact .txp-feature-note__actions > button:not(.txp-feature-note__compact-button),
.txp-feature-note.is-compact .txp-feature-note__actions > i {
  display: none;
}

.txp-feature-note.is-compact .txp-feature-note__compact-button {
  display: inline-flex;
}

.txp-feature-note.is-compact .txp-feature-note__compact-icon {
  display: inline-flex;
}

.txp-feature-note__editor-wrap {
  position: relative;
  display: grid;
  grid-template-columns: 54px 1fr;
  min-height: 360px;
  background: #2f3943;
}

.txp-feature-note__lines {
  padding-top: 18px;
  color: rgba(255, 255, 255, 0.48);
  background: #2f3943;
  font-family: Consolas, monospace !important;
  font-size: 16px;
  line-height: 1.45;
  text-align: center;
  white-space: pre;
  user-select: none;
}

.txp-feature-note__editor {
  width: 100%;
  min-height: 360px;
  border: 0;
  outline: none;
  padding: 18px 24px 24px 0;
  color: #ffffff;
  background: #2f3943;
  font-family: Consolas, monospace !important;
  font-size: clamp(15px, 1.15vw, 18px);
  line-height: 1.45;
  letter-spacing: 0.01em;
  white-space: pre-wrap;
}

.txp-feature-note__cursor {
  display: inline-block;
  width: 8px;
  height: 1em;
  margin-left: 2px;
  background: rgba(255, 255, 255, 0.9);
  vertical-align: -0.14em;
  animation: txpFeatureCursorBlink 0.85s steps(2, start) infinite;
}

.txp-feature-command-menu {
  position: absolute;
  left: 76px;
  top: 52px;
  z-index: 4;
  width: min(420px, calc(100% - 100px));
  overflow: hidden;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.97);
  border: 1px solid rgba(48, 56, 65, 0.12);
  box-shadow: 0 22px 58px rgba(0, 0, 0, 0.24);
  color: #303841;
  opacity: 0;
  transform: translateY(8px);
  pointer-events: none;
  transition: opacity 0.22s ease, transform 0.22s ease;
}

.txp-feature-command-menu.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.txp-feature-command-menu__item {
  display: grid;
  grid-template-columns: 92px 1fr;
  gap: 12px;
  padding: 11px 14px;
  border-bottom: 1px solid rgba(48, 56, 65, 0.07);
  font-family: "Figtree", sans-serif;
}

.txp-feature-command-menu__item:last-child {
  border-bottom: 0;
}

.txp-feature-command-menu__item strong {
  font-size: 13px;
  font-weight: 800;
}

.txp-feature-command-menu__item span {
  color: #6e7681;
  font-size: 12px;
  font-weight: 500;
}

.txp-feature-command-menu__item.is-active {
  background: #f2f4f7;
}

.txp-feature-check {
  color: rgba(255, 255, 255, 0.94);
  cursor: pointer;
  user-select: none;
}

.txp-feature-check:hover {
  color: #ffffff;
}

.txp-feature-check.is-done {
  color: #ffffff;
  font-weight: 800;
}

.txp-feature-fake-mouse {
  position: absolute;
  left: 0;
  top: 0;
  z-index: 8;
  width: 18px;
  height: 24px;
  opacity: 0;
  pointer-events: none;
  transform: translate(0, 0);
  transition:
    opacity 0.22s ease,
    transform 0.52s cubic-bezier(0.22, 1, 0.36, 1);
}

.txp-feature-fake-mouse::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 15px;
  height: 20px;
  background: #ffffff;
  clip-path: polygon(0 0, 0 100%, 5px 77%, 9px 100%, 13px 98%, 9px 75%, 18px 75%);
  filter: drop-shadow(0 4px 7px rgba(0, 0, 0, 0.32));
}

.txp-feature-fake-mouse.is-visible {
  opacity: 1;
}

.txp-feature-fake-mouse.is-clicking {
  transform: translate(var(--txp-mouse-x, 0), var(--txp-mouse-y, 0)) scale(0.86);
}

.txp-feature-link-menu {
  position: absolute;
  left: 76px;
  top: 112px;
  z-index: 5;
  width: min(420px, calc(100% - 100px));
  overflow: hidden;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.97);
  border: 1px solid rgba(48, 56, 65, 0.12);
  box-shadow: 0 22px 58px rgba(0, 0, 0, 0.24);
  color: #303841;
  opacity: 0;
  transform: translateY(8px);
  pointer-events: none;
  transition: opacity 0.22s ease, transform 0.22s ease;
  font-family: "Figtree", sans-serif;
}

.txp-feature-link-menu.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.txp-feature-link-menu__header {
  padding: 13px 16px;
  color: #303841;
  background: #ffffff;
  border-bottom: 1px solid rgba(48, 56, 65, 0.08);
  font-size: 13px;
  font-weight: 800;
}

.txp-feature-link-menu__item {
  padding: 13px 16px;
  border-bottom: 1px solid rgba(48, 56, 65, 0.07);
  background: #ffffff;
}

.txp-feature-link-menu__item:last-child {
  border-bottom: 0;
}

.txp-feature-link-menu__item.is-active {
  background: #f2f4f7;
}

.txp-feature-link-menu__item strong {
  display: block;
  margin-bottom: 4px;
  color: #303841;
  font-size: 13px;
  font-weight: 800;
  line-height: 1.25;
}

.txp-feature-link-menu__item span {
  display: block;
  color: #6e7681;
  font-size: 12px;
  font-weight: 500;
  line-height: 1.35;
}

.txp-feature-linked-line {
  position: relative;
  display: block;
  min-height: 1.45em;
  padding-right: 112px;
  color: #ffffff;
}

.txp-feature-linked-line::selection {
  background: rgba(255, 255, 255, 0.22);
}

.txp-feature-linked-line-marker {
  color: #61b5ff;
  font-weight: 800;
}

.txp-feature-link-badge {
  position: absolute;
  right: 14px;
  top: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 72px;
  padding: 3px 8px;
  border-radius: 999px;
  color: #d9efff;
  background: rgba(35, 126, 190, 0.34);
  border: 1px solid rgba(97, 181, 255, 0.65);
  font-family: "Figtree", sans-serif;
  font-size: 10px;
  font-weight: 800;
  line-height: 1;
  transform: translateY(-50%);
  white-space: nowrap;
}

.txp-feature-link-badge--end {
  color: #d9efff;
  background: rgba(35, 126, 190, 0.22);
}

@media (max-width: 768px) {
  .txp-feature-link-menu {
    left: 54px;
    top: 104px;
    width: calc(100% - 70px);
  }
}

.txp-feature-whatsapp-number {
  display: inline;
  color: #ffffff;
  text-decoration: none;
  cursor: pointer;
  font-weight: 800;
}

.txp-feature-whatsapp-number::after {
  content: "";
  display: none;
}

.txp-feature-whatsapp-number:hover {
  color: #ffffff;
}

.txp-feature-calc-line {
  display: block;
  color: #ffffff;
}

.txp-feature-calc-result {
  display: block;
  color: rgba(255, 255, 255, 0.68);
  font-weight: 800;
}

.txp-feature-calc-separator {
  display: block;
  width: 96px;
  height: 1px;
  margin: 2px 0 3px;
  background: rgba(255, 255, 255, 0.42);
}

.txp-feature-calc-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-left: 12px;
  padding: 4px 10px;
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.76);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.22);
  font-family: "Figtree", sans-serif;
  font-size: 11px;
  font-weight: 800;
  line-height: 1;
  vertical-align: middle;
}

.txp-feature-calc-block {
  display: block;
  margin-bottom: 22px;
}

.txp-feature-calc-block:last-child {
  margin-bottom: 0;
}

.txp-feature-note__clock-wrap {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.txp-feature-note__clock-wrap i {
  transition:
    color 0.18s ease,
    opacity 0.18s ease,
    transform 0.18s ease;
}

.txp-feature-note.has-reminder-on .txp-feature-note__clock-wrap i {
  color: #303841;
  opacity: 1;
  font-weight: 900;
  transform: scale(1.12);
}

.txp-feature-reminder-badge {
  position: absolute;
  right: -18px;
  top: -12px;
  display: none;
  align-items: center;
  justify-content: center;
  min-width: 24px;
  height: 16px;
  padding: 0 6px;
  border-radius: 999px;
  color: #ffffff;
  background: #303841;
  border: 1px solid rgba(48, 56, 65, 0.14);
  box-shadow: 0 8px 18px rgba(48, 56, 65, 0.18);
  font-family: "Figtree", sans-serif;
  font-size: 9px;
  font-weight: 900;
  line-height: 1;
  letter-spacing: 0.02em;
}

.txp-feature-note.has-reminder-on .txp-feature-reminder-badge {
  display: inline-flex;
}

.txp-feature-reminder-waiting {
  display: none;
  align-items: center;
  gap: 9px;
  min-width: 0;
  color: #303841;
  font-size: 15px;
  font-weight: 800;
  white-space: nowrap;
}

.txp-feature-reminder-waiting i {
  color: #303841;
  font-size: 15px;
}

.txp-feature-note.is-compact.has-reminder-on .txp-feature-note__compact-text {
  display: none;
}

.txp-feature-note.is-compact.has-reminder-on .txp-feature-reminder-waiting {
  display: inline-flex;
}

.txp-feature-reminder-command {
  color: #ffffff;
  font-weight: 800;
}

.txp-feature-reminder-note {
  display: block;
  color: rgba(255, 255, 255, 0.86);
}

.txp-feature-note.is-reminder-alert {
  animation: txpFeatureReminderAlert 0.62s ease-in-out 0s 4;
}

@keyframes txpFeatureReminderAlert {
  0%,
  100% {
    box-shadow: 0 28px 80px rgba(48, 56, 65, 0.18);
    transform: translate(var(--txp-feature-x, 0px), var(--txp-feature-y, 0px)) scale(1);
  }

  50% {
    box-shadow:
      0 0 0 4px rgba(48, 56, 65, 0.10),
      0 34px 92px rgba(48, 56, 65, 0.30);
    transform: translate(var(--txp-feature-x, 0px), var(--txp-feature-y, 0px)) scale(1.018);
  }
}

.txp-feature-whatsapp-chat {
  position: absolute;
  right: 22px;
  bottom: 54px;
  z-index: 12;
  width: min(330px, calc(100% - 44px));
  overflow: hidden;
  border-radius: 18px;
  background: #f1f5f3;
  border: 1px solid rgba(48, 56, 65, 0.16);
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.30);
  color: #263238;
  font-family: "Figtree", sans-serif;
  opacity: 0;
  transform: translateY(16px) scale(0.96);
  pointer-events: none;
  transition:
    opacity 0.26s ease,
    transform 0.26s ease;
}

.txp-feature-whatsapp-chat.is-visible {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.txp-feature-whatsapp-chat__top {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 13px 14px;
  color: #ffffff;
  background: #1f7f5c;
}

.txp-feature-whatsapp-chat__avatar {
  width: 34px;
  height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 34px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.18);
  font-size: 15px;
  font-weight: 900;
}

.txp-feature-whatsapp-chat__contact {
  min-width: 0;
}

.txp-feature-whatsapp-chat__contact strong {
  display: block;
  margin-bottom: 2px;
  color: #ffffff;
  font-size: 13px;
  font-weight: 900;
  line-height: 1.15;
}

.txp-feature-whatsapp-chat__contact span {
  display: block;
  color: rgba(255, 255, 255, 0.78);
  font-size: 11px;
  font-weight: 600;
  line-height: 1.15;
}

.txp-feature-whatsapp-chat__body {
  display: grid;
  gap: 9px;
  padding: 16px 14px;
  background:
    radial-gradient(circle at 20% 20%, rgba(31, 127, 92, 0.08), transparent 26%),
    #eef3f0;
}

.txp-feature-whatsapp-chat__bubble {
  width: fit-content;
  max-width: 86%;
  padding: 10px 12px;
  border-radius: 14px;
  background: #ffffff;
  box-shadow: 0 6px 14px rgba(48, 56, 65, 0.08);
  color: #303841;
  font-size: 12px;
  font-weight: 600;
  line-height: 1.35;
}

.txp-feature-whatsapp-chat__bubble--out {
  justify-self: end;
  background: #d9fdd3;
}

.txp-feature-whatsapp-chat__input {
  margin: 0 14px 14px;
  padding: 10px 12px;
  border-radius: 999px;
  color: #7d858f;
  background: #ffffff;
  border: 1px solid rgba(48, 56, 65, 0.08);
  font-size: 11px;
  font-weight: 700;
}

@media (max-width: 768px) {
  .txp-feature-whatsapp-chat {
    right: 12px;
    bottom: 44px;
    width: calc(100% - 24px);
  }
}

.txp-feature-note__footer {
  height: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  padding: 0 18px;
  color: #7d858f;
  background: #f9fafb;
  border-top: 1px solid rgba(48, 56, 65, 0.06);
  font-size: 12px;
  font-weight: 600;
}

.txp-feature-note__footer-icons {
  display: inline-flex;
  align-items: center;
  gap: 18px;
  margin-left: 0;
  color: #6e7681;
  font-weight: 800;
}

.txp-feature-note__footer-icons i {
  font-size: 12px;
}

@keyframes txpFeatureCursorBlink {
  0%,
  45% {
    opacity: 1;
  }

  46%,
  100% {
    opacity: 0;
  }
}

@media (max-width: 768px) {
  .txp-feature-demo-note {
    min-height: auto;
  }

  .txp-feature-note {
    border-radius: 20px;
  }

  .txp-feature-note__top {
    height: auto;
    min-height: 58px;
    padding: 14px 16px;
    align-items: center;
  }

  .txp-feature-note__actions {
    gap: 14px;
    font-size: 13px;
  }

  .txp-feature-note__actions > button:not(.txp-feature-note__compact-button) {
    display: none;
  }

  .txp-feature-note__editor-wrap {
    grid-template-columns: 42px 1fr;
    min-height: 330px;
  }

  .txp-feature-note__lines {
    font-size: 14px;
  }

  .txp-feature-note__editor {
    min-height: 330px;
    font-size: 13px;
  }

  .txp-feature-command-menu {
    left: 54px;
    top: 48px;
    width: calc(100% - 70px);
  }

  .txp-feature-command-menu__item {
    grid-template-columns: 76px 1fr;
  }

  .txp-feature-note__footer {
    justify-content: center;
    overflow-x: auto;
  }
}


.txp-feature-table-window {
  width: 100%;
  max-width: 760px;
  overflow: hidden;
  border-radius: 26px;
  background: #f7f8fa;
  border: 1px solid rgba(48, 56, 65, 0.08);
  box-shadow: 0 28px 80px rgba(48, 56, 65, 0.18);
  font-family: "Figtree", sans-serif;
}

.txp-feature-table-window__top {
  height: 58px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 0 22px;
  color: #303841;
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid rgba(48, 56, 65, 0.06);
}

.txp-feature-table-window__brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
}

.txp-feature-table-window__brand i {
  font-size: 20px;
  color: #303841;
}

.txp-feature-table-window__brand-text {
  display: grid;
  gap: 2px;
  min-width: 0;
}

.txp-feature-table-window__brand-text strong {
  color: #303841;
  font-size: 15px;
  font-weight: 800;
  line-height: 1.1;
}

.txp-feature-table-window__brand-text span {
  color: #7d858f;
  font-size: 11px;
  font-weight: 600;
  line-height: 1.1;
}

.txp-feature-table-window__actions {
  display: inline-flex;
  align-items: center;
  gap: 24px;
  color: #303841;
  font-size: 15px;
}

.txp-feature-table-window__toolbar {
  height: 50px;
  display: flex;
  align-items: center;
  gap: 26px;
  padding: 0 24px;
  color: #303841;
  background: #f7f8fa;
}

.txp-feature-table-window__toolbar i {
  font-size: 15px;
}

.txp-feature-table-window__toolbar strong {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-left: auto;
  color: #303841;
  font-size: 13px;
  font-weight: 800;
}

.txp-feature-table-window__toolbar span {
  color: #7d858f;
  font-size: 12px;
  font-weight: 600;
}

.txp-feature-table-wrap {
  padding: 0 20px;
  background: #f7f8fa;
}

.txp-feature-table-grid {
  width: 100%;
  border-collapse: collapse;
  table-layout: fixed;
  background: #ffffff;
  color: #303841;
  font-size: 12px;
}

.txp-feature-table-grid th,
.txp-feature-table-grid td {
  height: 30px;
  border: 1px solid #e6e9ee;
  padding: 0 10px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.txp-feature-table-grid th {
  color: #303841;
  background: #f6f8fa;
  font-size: 11px;
  font-weight: 800;
  text-align: center;
}

.txp-feature-table-grid .txp-feature-table-row-number {
  width: 40px;
  color: #7d858f;
  background: #f6f8fa;
  text-align: center;
  font-weight: 700;
}

.txp-feature-table-grid td {
  color: #303841;
  background: #ffffff;
  font-weight: 600;
}

.txp-feature-table-grid td.is-active-cell {
  box-shadow: inset 0 0 0 2px rgba(48, 56, 65, 0.55);
}

.txp-feature-table-grid td.is-typing::after {
  content: "";
  display: inline-block;
  width: 7px;
  height: 1em;
  margin-left: 2px;
  background: #303841;
  vertical-align: -0.15em;
  animation: txpFeatureTableCursorBlink 0.85s steps(2, start) infinite;
}

.txp-feature-table-window__bottom {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 24px 12px;
  background: #f7f8fa;
}

.txp-feature-table-window__sheet {
  min-width: 92px;
  padding: 9px 18px;
  border-radius: 10px;
  color: #303841;
  background: #ffffff;
  box-shadow: 0 8px 20px rgba(48, 56, 65, 0.06);
  font-size: 12px;
  font-weight: 800;
  text-align: center;
}

.txp-feature-table-window__save {
  padding: 0 24px 20px;
  color: #7d858f;
  background: #f7f8fa;
  font-size: 11px;
  font-weight: 600;
}

@keyframes txpFeatureTableCursorBlink {
  0%,
  45% {
    opacity: 1;
  }

  46%,
  100% {
    opacity: 0;
  }
}

@media (max-width: 768px) {
  .txp-feature-table-window {
    border-radius: 20px;
  }

  .txp-feature-table-window__top {
    height: auto;
    min-height: 58px;
    padding: 14px 16px;
  }

  .txp-feature-table-window__actions {
    gap: 14px;
  }

  .txp-feature-table-window__toolbar {
    gap: 18px;
    overflow-x: auto;
    padding: 0 16px;
  }

  .txp-feature-table-wrap {
    padding: 0 12px;
    overflow-x: auto;
  }

  .txp-feature-table-grid {
    min-width: 620px;
  }
}

.txp-image-slot--tall {
  min-height: auto;
}

.txp-organization__visual .txp-image-slot {
  background: transparent;
  border: 0;
  box-shadow: none;
  padding: 0;
  overflow: visible;
}

.txp-organization__visual .txp-image-slot::before,
.txp-organization__visual .txp-image-slot::after {
  display: none;
}

.txp-organization__image {
  display: block;
  width: min(100%, 760px);
  height: auto;
  margin: 0 auto;
  object-fit: contain;
  border-radius: 0;
  box-shadow: none;
  transform: scale(1.12);
  transform-origin: center;
}

@media (max-width: 768px) {
  .txp-organization__image {
    width: 100%;
    transform: scale(1);
  }
}