/* Text composer, emoji/icon tools, media summary, add menu, and stamp picker styles. */
.td-composer {
  position: relative;
  border: 1px solid #d7d0cc;
  border-radius: 8px;
  background: #fff;
  overflow: hidden;
}

.td-rich-editor {
  display: block;
  width: 100%;
  min-height: 82px;
  max-height: 210px;
  overflow-y: auto;
  border: 0;
  outline: 0;
  padding: 13px 14px;
  color: #241f20;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.65;
  white-space: pre-wrap;
  word-break: break-word;
}

.td-rich-editor:empty::before {
  color: #9a9296;
  content: attr(data-placeholder);
  pointer-events: none;
}

.td-rich-editor:focus {
  box-shadow: inset 0 0 0 2px rgba(91, 182, 255, .18);
}

.td-lexical-editor {
  caret-color: #241f20;
}

@font-face {
  font-family: "TubudecoIcons";
  font-style: normal;
  font-weight: 400;
  font-display: block;
  src:
    url("../fonts/tubudeco-icons.woff2") format("woff2"),
    url("../fonts/tubudeco-icons.woff") format("woff"),
    url("../fonts/tubudeco-icons.ttf") format("truetype");
}

.td-lexical-editor p {
  margin: 0;
}

.td-lexical-icon-text {
  display: inline;
  font-family: "TubudecoIcons", sans-serif;
  font-size: inherit;
  font-variant: normal;
  font-weight: 400;
  speak: never;
  text-transform: none;
  -webkit-font-smoothing: antialiased;
}

.td-lexical-image-host {
  display: inline-flex;
  position: relative;
  max-width: 100%;
  vertical-align: middle;
}

.td-lexical-image-card {
  position: relative;
  display: inline-flex;
  max-width: min(220px, 100%);
  margin: 6px 5px;
  overflow: hidden;
  border: 1px solid #ded6d2;
  border-radius: 7px;
  background: #f7f7f8;
  vertical-align: middle;
}

.td-lexical-image-card img {
  display: block;
  width: 100%;
  max-width: 220px;
  height: auto;
  max-height: 160px;
  object-fit: contain;
}

.td-lexical-image-remove {
  position: absolute;
  top: 4px;
  right: 4px;
  display: grid;
  width: 24px;
  height: 24px;
  border: 0;
  border-radius: 999px;
  background: rgba(36, 31, 32, .78);
  color: #fff;
  cursor: pointer;
  font-size: 0;
  line-height: 1;
  place-items: center;
  text-indent: -999px;
}

.td-lexical-image-remove::before,
.td-lexical-image-remove::after {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 13px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
  content: "";
  transform-origin: 50% 50%;
}

.td-lexical-image-remove::before {
  transform: translate(-50%, -50%) rotate(45deg);
}

.td-lexical-image-remove::after {
  transform: translate(-50%, -50%) rotate(-45deg);
}

.td-editor-load-error {
  border: 1px solid #e2b8bd;
  border-radius: 8px;
  background: #fff5f6;
  color: #8d2635;
  padding: 14px 16px;
  font-size: 14px;
  font-weight: 700;
}

.td-composer-attachments {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  border-top: 1px solid #eee7e4;
  padding: 10px 12px 0;
}

.td-composer-attachment {
  position: relative;
  width: 74px;
  height: 74px;
  overflow: hidden;
  border: 1px solid #ded6d2;
  border-radius: 7px;
  background: #f7f7f8;
}

.td-composer-attachment img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.td-composer-attachment-remove {
  position: absolute;
  top: 4px;
  right: 4px;
  display: grid;
  width: 22px;
  height: 22px;
  border: 0;
  border-radius: 999px;
  background: rgba(36, 31, 32, .78);
  color: #fff;
  cursor: pointer;
  font-size: 0;
  line-height: 1;
  place-items: center;
  text-indent: -999px;
}

.td-composer-attachment-remove::before,
.td-composer-attachment-remove::after {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 13px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
  content: "";
  transform-origin: 50% 50%;
}

.td-composer-attachment-remove::before {
  transform: translate(-50%, -50%) rotate(45deg);
}

.td-composer-attachment-remove::after {
  transform: translate(-50%, -50%) rotate(-45deg);
}

.td-composer-toolbar {
  display: flex;
  align-items: center;
  gap: 6px;
  border-top: 1px solid #eee7e4;
  padding: 8px 10px;
}

.td-composer-done {
  display: none;
}

.td-mobile-input-bar {
  display: none;
}

.td-text-action-card {
  display: none;
}

.td-composer-tool {
  position: relative;
  display: grid;
  width: 34px;
  height: 34px;
  border: 0;
  border-radius: 6px;
  background: transparent;
  color: #625a5e;
  cursor: pointer;
  font-size: 20px;
  font-weight: 900;
  line-height: 1;
  place-items: center;
}

.td-composer-tool:hover,
.td-composer-tool.is-active {
  background: #f3f6f9;
  color: #9f315b;
}

.td-composer-tool-input {
  grid-template-columns: 18px auto;
  width: auto;
  min-width: 70px;
  gap: 5px;
  padding: 0 10px;
  font-size: 13px;
  font-weight: 900;
}

.td-composer-tool-input .td-mobile-bottom-icon {
  width: 18px;
  height: 18px;
}

.td-composer-tool-label {
  line-height: 1;
}

.td-mobile-input-tools {
  display: none;
}

.td-mobile-input-tool-sheet {
  display: none;
}

.td-composer-tool-plus {
  font-size: 0;
  text-indent: -999px;
}

.td-composer-tool-plus::before,
.td-composer-tool-plus::after {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 15px;
  height: 3px;
  border-radius: 999px;
  background: currentColor;
  content: "";
  transform: translate(-50%, -50%);
}

.td-composer-tool-plus::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.td-composer-file {
  display: none;
}

.td-media-summary {
  display: grid;
  grid-template-columns: 64px minmax(0, 1fr) auto;
  gap: 12px;
  align-items: center;
  border: 1px solid #d7d0cc;
  border-radius: 8px;
  background: #fff;
  padding: 12px;
}

.td-media-summary > img,
.td-media-summary > svg {
  display: block;
  width: 64px;
  height: 64px;
  border-radius: 8px;
  background: #f5f6f8;
  object-fit: contain;
}

.td-media-summary > div:not(.td-media-summary-actions):not(.td-crop-editor) strong,
.td-media-summary > div:not(.td-media-summary-actions):not(.td-crop-editor) span {
  display: block;
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.td-media-summary > div:not(.td-media-summary-actions):not(.td-crop-editor) strong {
  color: #241f20;
  font-size: 15px;
  font-weight: 900;
}

.td-media-summary > div:not(.td-media-summary-actions):not(.td-crop-editor) span {
  margin-top: 4px;
  color: #766f73;
  font-size: 12px;
  font-weight: 800;
}

.td-media-summary-actions {
  display: grid;
  grid-template-columns: 1fr;
  gap: 8px;
  width: 128px;
}

.td-media-summary-actions .td-media-summary-action {
  width: 100%;
}

.td-media-summary > .td-crop-editor-summary {
  grid-column: 1 / -1;
}

.td-media-summary-action {
  min-width: 76px;
  min-height: 44px;
  border: 1px solid #d5cbc7;
  border-radius: 8px;
  background: #fbfbfc;
  color: #4a4447;
  cursor: pointer;
  padding: 9px 14px;
  font-size: 14px;
  font-weight: 900;
  transition: background-color .18s ease, border-color .18s ease, color .18s ease, box-shadow .18s ease;
}

.td-media-summary-action:hover {
  border-color: #8fc5ff;
  background: #f3f9ff;
}

.td-media-summary-actions .td-media-crop-action {
  border-color: #d7a5ba;
  background: #fff8fb;
  color: #8f2e56;
}

.td-media-summary-actions .td-media-crop-action:hover,
.td-media-summary-actions .td-media-crop-action.is-active {
  border-color: #bd4a78;
  background: #fff0f6;
  color: #7f274b;
  box-shadow: 0 4px 14px rgba(189, 74, 120, .12);
}

.td-emoji-panel {
  position: static;
  width: 100%;
  border-top: 1px solid #eee7e4;
  border-radius: 0 0 8px 8px;
  background: #fff;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .88);
  padding: 10px 12px 12px;
}

.td-emoji-search {
  width: 100%;
  height: 38px;
  border: 1px solid #d7d0cc;
  border-radius: 6px;
  padding: 0 10px;
  font-size: 14px;
  font-weight: 700;
}

.td-stamp-search-wrap {
  position: relative;
}

.td-stamp-search-wrap .td-stamp-search {
  padding-right: 38px;
}

.td-stamp-search-clear {
  position: absolute;
  top: 50%;
  right: 6px;
  display: grid;
  width: 28px;
  height: 28px;
  align-items: center;
  justify-items: center;
  border: 0;
  border-radius: 6px;
  background: transparent;
  color: #7a7075;
  cursor: pointer;
  padding: 0;
  transform: translateY(-50%);
}

.td-stamp-search-clear::before,
.td-stamp-search-clear::after {
  grid-area: 1 / 1;
  width: 13px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
  content: "";
}

.td-stamp-search-clear::before {
  transform: rotate(45deg);
}

.td-stamp-search-clear::after {
  transform: rotate(-45deg);
}

.td-stamp-search-clear:hover,
.td-stamp-search-clear:focus-visible {
  background: #fff0f6;
  color: #9f315b;
  outline: none;
}

.td-emoji-categories {
  display: flex;
  gap: 7px;
  margin-top: 8px;
  overflow-x: auto;
  overflow-y: hidden;
  padding: 0 1px 4px;
  border-bottom: 1px solid #eee7e4;
  scrollbar-width: none;
  scrollbar-color: rgba(82, 75, 79, .34) transparent;
  -webkit-overflow-scrolling: touch;
}

.td-emoji-categories.is-scrolling {
  scrollbar-width: thin;
}

.td-emoji-categories::-webkit-scrollbar {
  height: 0;
}

.td-emoji-categories.is-scrolling::-webkit-scrollbar {
  height: 6px;
}

.td-emoji-categories::-webkit-scrollbar-track {
  background: transparent;
}

.td-emoji-categories::-webkit-scrollbar-thumb {
  border-radius: 999px;
  background: rgba(82, 75, 79, .34);
}

.td-emoji-category {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 3px;
  flex: 0 0 68px;
  width: 68px;
  height: 48px;
  border: 1px solid #e0d8d4;
  border-radius: 6px;
  background: #fff;
  color: #4f484c;
  cursor: pointer;
  padding: 5px 5px 4px;
}

.td-emoji-category:hover {
  border-color: #d7a5ba;
  background: #fff8fb;
}

.td-emoji-category.is-active {
  border-color: #a64b7d;
  background: #fff0f7;
  color: #8d315f;
  box-shadow: inset 0 0 0 1px rgba(166, 75, 125, .18);
}

.td-emoji-category-svg {
  display: block;
  width: 20px;
  height: 20px;
  fill: currentColor;
}

.td-emoji-category-label {
  display: block;
  width: 100%;
  overflow: hidden;
  font-size: 10px;
  font-weight: 800;
  line-height: 1.1;
  text-align: center;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.td-emoji-category-count {
  display: none;
}

.td-emoji-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(44px, 1fr));
  gap: 6px;
  margin-top: 10px;
  max-height: 164px;
  overflow-y: auto;
  padding-right: 2px;
  overscroll-behavior: contain;
  -webkit-overflow-scrolling: touch;
}

.td-emoji-option {
  position: relative;
  display: grid;
  min-width: 0;
  height: 38px;
  border: 0;
  border-radius: 6px;
  background: #f7f7f8;
  cursor: pointer;
  font-size: 22px;
  line-height: 1;
  place-items: center;
}

.td-emoji-option:hover {
  background: #eef6ff;
}

.td-emoji-option-asset {
  background: #fff8fb;
}

.td-emoji-option-asset img {
  display: block;
  width: 30px;
  height: 30px;
  object-fit: contain;
}

.td-icon-option img {
  display: block;
  width: 24px;
  height: 24px;
  object-fit: contain;
}

.td-emoji-asset-badge {
  position: absolute;
  right: 2px;
  bottom: 2px;
  border-radius: 999px;
  background: #b94778;
  color: #fff;
  padding: 1px 4px;
  font-size: 9px;
  font-weight: 900;
  line-height: 1.2;
  pointer-events: none;
}

.td-preview-attachment {
  display: block;
  overflow: hidden;
  margin-top: 16px;
  border-radius: 6px;
}

.td-preview-attachment img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.td-preview-char.is-asset,
.td-preview-char.is-icon {
  display: inline-grid;
  line-height: 0;
  place-items: center;
  vertical-align: middle;
}

.td-preview-asset-glyph {
  display: block;
  object-fit: contain;
  pointer-events: none;
}

.td-preview-icon-glyph {
  display: block;
  fill: currentColor;
  overflow: visible;
  pointer-events: none;
}

.td-preview-media-part {
  cursor: grab;
}

.td-preview-media-part.is-dragging {
  cursor: grabbing;
}

.td-preview-media-frame {
  display: block;
  box-sizing: border-box;
  overflow: visible;
  line-height: 0;
}

.td-preview-media-image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: none;
}

.td-preview-shape-image {
  object-fit: contain;
  overflow: visible;
}

.td-part-tabs-shell {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 8px;
  align-items: center;
  margin: 0 0 10px;
}

.td-part-tabs-scroll {
  min-width: 0;
  overflow-x: auto;
  overflow-y: hidden;
  padding: 1px 0 3px;
  scrollbar-width: none;
  scrollbar-color: rgba(82, 75, 79, .34) transparent;
  -webkit-overflow-scrolling: touch;
}

.td-part-tabs-scroll.is-scrolling {
  scrollbar-width: thin;
}

.td-part-tabs-scroll::-webkit-scrollbar {
  height: 0;
}

.td-part-tabs-scroll.is-scrolling::-webkit-scrollbar {
  height: 6px;
}

.td-part-tabs-scroll::-webkit-scrollbar-track {
  background: transparent;
}

.td-part-tabs-scroll::-webkit-scrollbar-thumb {
  border-radius: 999px;
  background: rgba(82, 75, 79, .34);
}

.td-part-tabs {
  display: flex;
  gap: 8px;
  align-items: center;
  width: 100%;
  min-width: 100%;
}

.td-part-actions {
  display: flex;
  flex: 0 0 auto;
  gap: 8px;
  align-items: center;
}

.td-part-tab-wrap,
.td-part-add {
  display: inline-grid;
  flex: 0 0 auto;
  align-items: center;
  min-height: 34px;
  border: 1px solid #ded7d4;
  border-radius: 16px;
  background: #f6f3f3;
  color: #4a4447;
  cursor: pointer;
  font-weight: 900;
}

.td-part-tab-wrap {
  grid-template-columns: minmax(0, 1fr) 18px;
  gap: 6px;
  flex: 0 1 auto;
  min-width: 76px;
  max-width: 176px;
  padding: 6px 8px 6px 12px;
  transition:
    transform .16s cubic-bezier(.2, .8, .2, 1),
    opacity .16s ease,
    background-color .16s ease,
    border-color .16s ease,
    box-shadow .16s ease;
  will-change: transform;
}

.td-part-tab-wrap.is-active {
  border-color: #bd4a78;
  background: #bd4a78;
  color: #fff;
  box-shadow: 0 3px 10px rgba(189, 74, 120, .14);
}

.td-part-tab-wrap.is-selected:not(.is-active) {
  border-color: #f0a4bd;
  background: #fff0f5;
  color: #7f274b;
  box-shadow: inset 0 0 0 1px rgba(159, 49, 91, .08);
}

.td-part-tab-wrap.is-selected:not(.is-active) .td-part-tab-thumb {
  border-color: #efb6c8;
}

.td-part-tab-wrap.is-dragging {
  opacity: .55;
  transform: translateY(-1px);
}

.td-part-tab {
  display: grid;
  align-items: center;
  min-height: 22px;
  min-width: 0;
  overflow: hidden;
  border: 0;
  background: transparent;
  color: inherit;
  cursor: pointer;
  padding: 0;
  font-weight: 900;
  text-align: left;
}

.td-part-tab-label {
  display: block;
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  line-height: 21px;
}

.td-part-tab-inline-icon,
.td-layer-inline-icon {
  position: relative;
  display: inline-block;
  width: 1.05em;
  height: 1.05em;
  margin: 0 .03em;
  color: currentColor;
  line-height: 1;
  vertical-align: -0.12em;
  -webkit-text-fill-color: transparent;
}

.td-part-tab-inline-icon::before,
.td-layer-inline-icon::before {
  position: absolute;
  inset: .02em;
  display: block;
  background: currentColor;
  content: "";
}

.td-part-tab-inline-icon::before {
  mask: var(--td-part-tab-icon-url) center / contain no-repeat;
  -webkit-mask: var(--td-part-tab-icon-url) center / contain no-repeat;
}

.td-layer-inline-icon::before {
  mask: var(--td-layer-icon-url) center / contain no-repeat;
  -webkit-mask: var(--td-layer-icon-url) center / contain no-repeat;
}

.td-part-tab-media {
  display: grid;
  grid-template-columns: 24px minmax(0, 1fr);
  gap: 7px;
  align-items: center;
  min-width: 0;
  min-height: 24px;
}

.td-part-tab-thumb {
  display: grid;
  width: 24px;
  height: 24px;
  overflow: hidden;
  border: 1px solid #e2ddda;
  border-radius: 6px;
  background: #fff;
  color: #9f315b;
  font-size: 11px;
  font-weight: 900;
  line-height: 1;
  place-items: center;
}

.td-part-tab-thumb img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.td-part-tab-wrap.is-active .td-part-tab-thumb {
  border-color: #cfd7e2;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, .72);
}

.td-part-tab-close {
  position: relative;
  display: grid;
  align-self: center;
  width: 18px;
  height: 18px;
  overflow: hidden;
  border: 0;
  background: transparent;
  color: currentColor;
  font-size: 0;
  line-height: 1;
  opacity: .72;
  place-items: center;
  text-indent: -999px;
}

.td-part-tab-close::before,
.td-part-tab-close::after {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 10px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
  content: "";
  transform-origin: 50% 50%;
}

.td-part-tab-close::before {
  transform: translate(-50%, -50%) rotate(45deg);
}

.td-part-tab-close::after {
  transform: translate(-50%, -50%) rotate(-45deg);
}

.td-part-tab-close:hover {
  opacity: 1;
}

.td-part-add {
  position: relative;
  width: 36px;
  min-width: 36px;
  height: 36px;
  min-height: 36px;
  overflow: hidden;
  padding: 0;
  font-size: 0;
  line-height: 1;
  place-items: center;
  text-indent: -999px;
}

.td-part-add::before,
.td-part-add::after {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 13px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
  content: "";
  transform: translate(-50%, -50%);
  transition: transform 160ms cubic-bezier(0.22, 1, 0.36, 1);
}

.td-part-add::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.td-part-add.is-active::before {
  transform: translate(-50%, -50%) rotate(45deg);
}

.td-part-add.is-active::after {
  transform: translate(-50%, -50%) rotate(135deg);
}

.td-part-add.is-active {
  border-color: #bd4a78;
  background: #fff0f5;
  color: #9f315b;
}

.td-add-menu,
.td-stamp-picker {
  margin: -8px 0 12px;
  border: 1px solid #d8dce3;
  border-radius: 8px;
  background: #fff;
  padding: 12px;
}

.td-add-menu-title {
  margin-bottom: 8px;
  color: #6d6669;
  font-size: 12px;
  font-weight: 900;
}

.td-add-menu-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
}

.td-add-menu-item {
  display: grid;
  grid-template-columns: 34px minmax(0, 1fr);
  grid-template-areas:
    "icon main"
    "icon sub";
  column-gap: 9px;
  align-items: center;
  min-height: 58px;
  border: 1px solid #e1dbd8;
  border-radius: 8px;
  background: #fbfbfc;
  color: #302b2d;
  cursor: pointer;
  padding: 9px 10px;
  text-align: left;
}

.td-add-menu-item:hover,
.td-add-menu-item.is-active {
  border-color: #8fc5ff;
  background: #f3f9ff;
}

.td-add-menu-item:disabled {
  cursor: default;
  opacity: .45;
}

.td-add-menu-icon {
  display: grid;
  grid-area: icon;
  width: 34px;
  height: 34px;
  border-radius: 8px;
  background: #f1ece9;
  color: #9f315b;
  font-size: 18px;
  font-weight: 900;
  line-height: 1;
  place-items: center;
}

.td-add-menu-svg {
  display: block;
  width: 22px;
  height: 22px;
  fill: currentColor;
}

.td-add-menu-main {
  grid-area: main;
  font-size: 14px;
  font-weight: 900;
  line-height: 1.25;
}

.td-add-menu-sub {
  grid-area: sub;
  color: #7b7478;
  font-size: 11px;
  font-weight: 700;
  line-height: 1.25;
}

.td-stamp-picker {
  margin-top: -4px;
  max-height: min(420px, 48vh);
  overflow-y: auto;
  overscroll-behavior: contain;
}

.td-stamp-picker::-webkit-scrollbar {
  width: 8px;
}

.td-stamp-picker::-webkit-scrollbar-track {
  background: transparent;
}

.td-stamp-picker::-webkit-scrollbar-thumb {
  border-radius: 999px;
  background: #d5d5da;
}

.td-stamp-picker-header {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 10px;
  color: #6d6669;
  font-size: 12px;
  font-weight: 900;
}

.td-stamp-search {
  margin-bottom: 8px;
}

.td-stamp-categories {
  margin-bottom: 10px;
}

.td-stamp-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(78px, 1fr));
  gap: 7px;
}

.td-stamp-option {
  display: grid;
  position: relative;
  gap: 4px;
  justify-items: center;
  min-height: 78px;
  border: 1px solid #e3ddda;
  border-radius: 8px;
  background: #fbfbfc;
  cursor: pointer;
  padding: 6px;
  color: #4a4447;
  font-size: 12px;
  font-weight: 900;
}

.td-stamp-option:hover,
.td-stamp-option.is-active {
  border-color: #8fc5ff;
  background: #f3f9ff;
}

.td-stamp-option img,
.td-stamp-option svg {
  display: block;
  width: 46px;
  height: 46px;
  object-fit: contain;
}

.td-stamp-option.is-locked {
  cursor: not-allowed;
  opacity: .72;
}

.td-stamp-badge {
  position: absolute;
  top: 6px;
  right: 6px;
  min-width: 26px;
  border-radius: 999px;
  background: rgba(34, 29, 27, .78);
  color: #fff;
  padding: 2px 6px;
  font-size: 10px;
  line-height: 1.2;
}

.td-stamp-badge.is-paid {
  background: #bd4a78;
}

.td-stamp-empty {
  grid-column: 1 / -1;
  border: 1px dashed #ddd5d1;
  border-radius: 8px;
  background: #fff;
  color: #756e72;
  padding: 18px 12px;
  font-size: 12px;
  font-weight: 800;
  text-align: center;
}

.td-stamp-replace-picker {
  margin-top: 8px;
}
