@import "https://fonts.googleapis.com/css2?family=Material+Symbols+Outlined";

/* node_modules/@hundred_dev/easy-email-editor/lib/style.css */
.ee-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: Material Symbols Outlined;
  font-style: normal;
  font-weight: 400;
  line-height: 1;
  letter-spacing: normal;
  text-transform: none;
  white-space: nowrap;
  direction: ltr;
  -webkit-font-smoothing: antialiased;
  -webkit-font-feature-settings: "liga";
  font-feature-settings: "liga";
  font-variation-settings:
    "FILL" 0,
    "wght" 400,
    "GRAD" 0,
    "opsz" 24;
  color: inherit;
  cursor: pointer;
  pointer-events: auto;
  font-size: 16px;
}
.ee-icon--12 {
  font-size: 12px;
}
.ee-icon--14 {
  font-size: 14px;
}
.ee-icon--18 {
  font-size: 18px;
}
@keyframes ee-spin {
  to {
    transform: rotate(360deg);
  }
}
#ee-message-root {
  position: fixed;
  top: 16px;
  left: 50%;
  z-index: 3000;
  display: flex;
  flex-direction: column;
  gap: 8px;
  pointer-events: none;
  transform: translate(-50%);
}
.ee-message {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  max-width: min(92vw, 560px);
  box-sizing: border-box;
  min-height: 40px;
  padding: 0 12px;
  border: 1px solid var(--ee-control-border, #d5deea);
  border-radius: 8px;
  background: #ffffff;
  color: var(--color-text-1, #152238);
  font-size: 13px;
  line-height: 1;
  box-shadow: 0 10px 30px #15223814;
  opacity: 0;
  transform: translateY(-6px) scale(.98);
  transition: opacity .12s ease, transform .12s ease;
  pointer-events: auto;
  cursor: pointer;
}
.ee-message--visible {
  opacity: 1;
  transform: translateY(0) scale(1);
}
.ee-message__dot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  flex: 0 0 auto;
}
.ee-message__text {
  min-width: 0;
  white-space: nowrap;
}
.ee-message--success {
  border-color: #aee5c2;
  background: #ebf9f0;
}
.ee-message--success .ee-message__dot {
  background: rgb(34, 153, 84);
}
.ee-message--error {
  border-color: #efc7c4;
  background: #fff5f5;
}
.ee-message--error .ee-message__dot {
  background: rgb(214, 45, 32);
}
.ee-message--warning {
  border-color: #f8e0b4;
  background: #fff7e8;
}
.ee-message--warning .ee-message__dot {
  background: rgb(208, 132, 27);
}
.ee-message--info {
  border-color: rgb(var(--primary-2, 190, 218, 255));
  background: rgb(var(--primary-1, 232, 243, 255));
}
.ee-message--info .ee-message__dot {
  background: rgb(var(--primary-6, 22, 93, 255));
}
.ee-btn[disabled],
.ee-btn[disabled]:hover,
.ee-btn[disabled]:focus,
.ee-btn[disabled]:active {
  color: var(--ee-control-muted, #5f6e86);
  border-color: var(--ee-control-border, #d5deea);
  background: #eef2f7;
  text-shadow: none;
  box-shadow: none;
  opacity: 1;
  cursor: not-allowed;
}
.ee-btn,
.ee-btn:active,
.ee-btn:focus {
  outline: 0;
}
.ee-btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  font-weight: 500;
  white-space: nowrap;
  text-align: center;
  background-image: none;
  border: 1px solid var(--ee-control-border, #d5deea);
  box-shadow: none;
  cursor: pointer;
  transition: all .3s cubic-bezier(.645, .045, .355, 1);
  user-select: none;
  touch-action: manipulation;
  height: 40px;
  padding: 0 14px;
  font-size: 14px;
  border-radius: 8px;
  color: var(--ee-control-text, #152238);
  background: var(--ee-control-surface, #fff);
}
.ee-btn__icon,
.ee-btn__content {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.ee-btn:hover:not(:disabled),
.ee-btn:focus-visible:not(:disabled) {
  border-color: var(--ee-control-border-hover, #c2cfe0);
  background: var(--ee-control-surface-hover, #f8fbff);
  box-shadow: none;
  outline: none;
}
.ee-btn--small {
  height: 32px;
  padding: 0 10px;
  font-size: 13px;
  border-radius: 8px;
}
.ee-btn--mini {
  height: 28px;
  min-height: 28px;
  padding: 0 10px;
  font-size: 12px;
  border-radius: 8px;
}
.ee-btn--compact {
  height: 32px;
  min-height: 32px;
}
.ee-btn--primary {
  border-color: var(--ee-primary, #0b6bcb);
  background: var(--ee-primary, #0b6bcb);
  color: var(--ee-control-surface, #fff);
}
.ee-btn--primary:hover:not(:disabled),
.ee-btn--primary:focus-visible:not(:disabled) {
  border-color: color-mix(in srgb, var(--ee-primary, #0b6bcb) 85%, #000);
  background: color-mix(in srgb, var(--ee-primary, #0b6bcb) 85%, #000);
  color: var(--ee-control-surface, #fff);
}
.ee-btn--primary[disabled],
.ee-btn--primary[disabled]:hover,
.ee-btn--primary[disabled]:focus,
.ee-btn--primary[disabled]:active {
  border-color: var(--ee-control-border, #d5deea);
  background: #eef2f7;
  color: var(--ee-control-muted, #5f6e86);
  opacity: 1;
}
.ee-btn--small.ee-btn--primary {
  height: 32px;
  padding: 0 10px;
  font-size: 13px;
}
.ee-btn--mini.ee-btn--primary {
  height: 28px;
  min-height: 28px;
  padding: 0 10px;
  font-size: 12px;
}
.ee-btn--text {
  background: transparent;
  border-color: transparent;
  color: var(--ee-control-heading-color, #667085);
}
.ee-btn--text:hover:not(:disabled),
.ee-btn--text:focus-visible:not(:disabled) {
  background: var(--ee-control-surface-hover, #f8fbff);
  border-color: transparent;
}
.ee-btn--text.ee-btn--icon-only {
  width: auto;
  min-width: auto;
  padding: 0;
  background: transparent;
  border-color: transparent;
}
.ee-btn--circle {
  border-radius: 9999px;
}
.ee-btn--square {
  border-radius: 8px;
}
.ee-btn--icon-only {
  width: 40px;
  min-width: 40px;
  padding: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #4b5567;
  background: #fff;
  border-radius: 8px;
  overflow: hidden;
}
.ee-btn--icon-only.ee-btn--mini {
  width: 28px;
  min-width: 28px;
  height: 28px;
}
.ee-btn--icon-only:hover:not(:disabled),
.ee-btn--icon-only:focus-visible:not(:disabled) {
  background: #f8fbff;
}
.ee-btn--icon-only[disabled],
.ee-btn--icon-only[disabled]:hover,
.ee-btn--icon-only[disabled]:focus,
.ee-btn--icon-only[disabled]:active {
  background: #eef2f7;
  color: #5f6e86;
  border-color: #d5deea;
  opacity: 1;
}
.ee-no-border {
  border: none !important;
  box-shadow: none !important;
}
.ee-image-gallery-portal-root {
  position: fixed;
  inset: 0;
  z-index: 2147483647;
  pointer-events: none;
}
.ee-image-gallery-portal-root .ee-image-gallery-overlay {
  pointer-events: auto;
  z-index: 2147483647;
}
.ee-image-gallery-top-layer {
  width: 100vw;
  max-width: none;
  height: 100vh;
  max-height: none;
  margin: 0;
  padding: 0;
  border: 0;
  background: transparent;
  color: inherit;
  overflow: hidden;
  z-index: 2147483647;
}
.ee-image-gallery-top-layer::backdrop {
  background: transparent;
}
.ee-image-gallery-overlay {
  background:
    radial-gradient(
      circle at top,
      rgba(243, 163, 51, .16),
      transparent 34%),
    rgba(18, 26, 39, .56);
  backdrop-filter: blur(10px);
}
.ee-image-gallery-modal.ee-modal__dialog {
  width: min(1080px, 100vw - 48px);
  border: 1px solid rgba(213, 222, 234, .88);
  box-shadow: 0 28px 80px #0a122047, 0 8px 24px #0a12201f;
}
.ee-image-gallery-modal .ee-modal__header {
  padding: 18px 22px;
  background:
    linear-gradient(
      180deg,
      rgba(248, 251, 255, .96) 0%,
      rgba(255, 255, 255, .98) 100%);
}
.ee-image-gallery-modal .ee-modal__title {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--ee-control-text, #152238);
}
.ee-image-gallery-modal__title-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 10px;
  color: #b56e00;
  background: rgba(243, 163, 51, .14);
}
.ee-image-gallery-modal__title-copy {
  display: grid;
  gap: 2px;
}
.ee-image-gallery-modal__eyebrow {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--ee-control-heading-color, #667085);
}
.ee-image-gallery-modal__name {
  font-size: 16px;
  font-weight: 600;
}
.ee-image-gallery-modal__body.ee-modal__body {
  padding: 20px;
  background:
    linear-gradient(
      180deg,
      rgba(248, 251, 255, .75) 0%,
      rgb(255, 255, 255) 220px);
}
.ee-image-gallery-layout {
  display: grid;
  gap: 16px;
}
.ee-image-gallery-browser-shell {
  display: grid;
  grid-template-columns: minmax(240px, 280px) minmax(0, 1fr);
  gap: 16px;
  align-items: start;
}
.ee-image-gallery-browser-shell--full {
  grid-template-columns: minmax(0, 1fr);
}
.ee-image-gallery-sidebar,
.ee-image-gallery-main {
  min-width: 0;
}
.ee-image-gallery-browser-shell--full .ee-image-gallery-main {
  width: 100%;
}
.ee-image-gallery-sidebar {
  display: grid;
  gap: 16px;
}
.ee-image-gallery-sidebar__section {
  display: grid;
  gap: 12px;
}
.ee-image-gallery-sidebar__empty {
  padding: 12px;
  border-radius: 12px;
  background: rgba(248, 251, 255, .94);
  color: #667085;
  font-size: 13px;
  line-height: 1.5;
}
.ee-image-gallery-panel {
  border: 1px solid var(--ee-control-border, #d5deea);
  border-radius: 14px;
  background: rgba(255, 255, 255, .92);
  box-shadow: 0 6px 20px #0f172a0a;
}
.ee-image-gallery-panel--padded {
  padding: 14px;
}
.ee-image-gallery-panel--compact {
  padding: 12px 14px;
}
.ee-image-gallery-panel__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}
.ee-image-gallery-panel__label {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 10px;
  color: var(--ee-control-heading-color, #667085);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
}
.ee-image-gallery-panel__header .ee-image-gallery-panel__label {
  margin-bottom: 0;
}
.ee-image-gallery-panel__label--tight {
  margin-bottom: 4px;
}
.ee-image-gallery-panel__subcopy {
  color: #667085;
  font-size: 12px;
  line-height: 1.45;
}
.ee-image-gallery-toolbar {
  display: grid;
  gap: 12px;
}
.ee-image-gallery-toolbar__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}
.ee-image-gallery-toolbar__location {
  display: grid;
  gap: 4px;
  min-width: min(100%, 420px);
}
.ee-image-gallery-toolbar__location-title {
  font-size: 20px;
  line-height: 1.15;
  font-weight: 600;
  color: var(--ee-control-text, #152238);
}
.ee-image-gallery-toolbar__actions,
.ee-image-gallery-chip-row,
.ee-image-gallery-breadcrumbs {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  align-items: center;
}
.ee-image-gallery-location {
  display: grid;
  gap: 8px;
}
.ee-image-gallery-search-row {
  display: flex;
  gap: 10px 12px;
  flex-wrap: wrap;
  align-items: center;
}
.ee-image-gallery-search {
  position: relative;
  flex: 1 1 280px;
  min-width: 240px;
}
.ee-image-gallery-breadcrumbs {
  gap: 6px;
  color: #667085;
  min-width: 0;
  overflow-x: auto;
  padding-bottom: 2px;
}
.ee-image-gallery-breadcrumbs__separator {
  flex: 0 0 auto;
  color: #98a2b3;
  font-size: 12px;
}
.ee-image-gallery-breadcrumb {
  appearance: none;
  border: 0;
  background: transparent;
  padding: 0;
  margin: 0;
  color: #667085;
  font-size: 13px;
  line-height: 1.4;
  cursor: pointer;
  white-space: nowrap;
}
.ee-image-gallery-breadcrumb:hover,
.ee-image-gallery-breadcrumb:focus-visible {
  color: var(--ee-control-text, #152238);
  outline: none;
}
.ee-image-gallery-breadcrumb--active {
  color: var(--ee-control-text, #152238);
  font-weight: 600;
}
.ee-image-gallery-search__icon {
  position: absolute;
  top: 50%;
  left: 12px;
  transform: translateY(-50%);
  color: var(--ee-control-heading-color, #667085);
  pointer-events: none;
}
.ee-image-gallery-search__input {
  width: 100%;
  min-height: 40px;
  padding: 0 14px 0 40px;
  border-radius: 10px;
  border: 1px solid var(--ee-control-border, #d5deea);
  background: var(--ee-control-surface, #fff);
  color: var(--ee-control-text, #152238);
  font-size: 14px;
}
.ee-image-gallery-search__button.ee-button {
  height: 40px;
  min-height: 40px;
  padding-top: 0;
  padding-bottom: 0;
}
.ee-image-gallery-search__button--text.ee-button {
  background: transparent;
  border-color: transparent;
  color: var(--ee-control-heading-color, #667085);
}
.ee-image-gallery-search__button--text.ee-button:hover:not(:disabled),
.ee-image-gallery-search__button--text.ee-button:focus-visible:not(:disabled) {
  background: var(--ee-control-surface-hover, #f8fbff);
  border-color: transparent;
}
.ee-image-gallery-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 32px;
  padding: 0 12px;
  border-radius: 999px;
  border: 1px solid var(--ee-control-border, #d5deea);
  background: var(--ee-control-surface, #fff);
  color: var(--ee-control-text, #152238);
  font-size: 13px;
  cursor: pointer;
  transition:
    background .2s ease,
    border-color .2s ease,
    color .2s ease;
}
.ee-image-gallery-chip:hover,
.ee-image-gallery-chip:focus-visible {
  outline: none;
  border-color: var(--ee-control-border-hover, #c2cfe0);
  background: var(--ee-control-surface-hover, #f8fbff);
}
.ee-image-gallery-chip--active:hover,
.ee-image-gallery-chip--active:focus-visible {
  border-color: #243045e6;
  background: #243045;
  color: #fff;
}
.ee-image-gallery-chip--active {
  border-color: #243045e6;
  background: #243045;
  color: #fff;
}
.ee-image-gallery-chip__icon {
  opacity: .72;
}
.ee-image-gallery-chip--active .ee-image-gallery-chip__icon {
  opacity: .92;
}
.ee-image-gallery-nav-list {
  display: grid;
  gap: 8px;
}
.ee-image-gallery-nav-item {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 10px;
  align-items: start;
  width: 100%;
  padding: 11px 12px;
  border-radius: 12px;
  border: 1px solid var(--ee-control-border, #d5deea);
  background: #fff;
  color: var(--ee-control-text, #152238);
  cursor: pointer;
  text-align: left;
  transition:
    border-color .2s ease,
    background .2s ease,
    box-shadow .2s ease,
    transform .2s ease;
}
.ee-image-gallery-nav-item:hover,
.ee-image-gallery-nav-item:focus-visible {
  outline: none;
  border-color: var(--ee-control-border-hover, #c2cfe0);
  background: var(--ee-control-surface-hover, #f8fbff);
  transform: translateY(-1px);
}
.ee-image-gallery-nav-item--active,
.ee-image-gallery-nav-item--active:hover,
.ee-image-gallery-nav-item--active:focus-visible {
  border-color: #243045e6;
  background: #243045;
  box-shadow: 0 12px 24px #2430452e;
  color: #fff;
  transform: none;
}
.ee-image-gallery-nav-item__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 10px;
  background: rgba(243, 163, 51, .12);
  color: #8e5a00;
}
.ee-image-gallery-nav-item--active .ee-image-gallery-nav-item__icon {
  background: rgba(255, 255, 255, .14);
  color: #fff;
}
.ee-image-gallery-nav-item__content {
  display: grid;
  gap: 2px;
  min-width: 0;
}
.ee-image-gallery-nav-item__title,
.ee-image-gallery-nav-item__meta {
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.ee-image-gallery-nav-item__title {
  font-size: 13px;
  line-height: 1.4;
  font-weight: 600;
}
.ee-image-gallery-nav-item__meta {
  color: #667085;
  font-size: 11px;
  line-height: 1.4;
}
.ee-image-gallery-nav-item--active .ee-image-gallery-nav-item__meta {
  color: #ffffffb8;
}
.ee-image-gallery-subfolder-loading {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #667085;
  padding: 4px 0;
}
.ee-image-gallery-grid-wrap {
  position: relative;
  min-height: 220px;
}
.ee-image-gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(210px, 1fr));
  gap: 16px;
  transition: opacity .12s ease;
}
.ee-image-gallery-grid--loading {
  opacity: .4;
}
.ee-image-gallery-card {
  display: grid;
  grid-template-rows: auto 1fr;
  border: 1px solid var(--ee-control-border, #d5deea);
  border-radius: 16px;
  background: #fff;
  overflow: hidden;
  box-shadow: 0 8px 22px #0f172a0f;
}
.ee-image-gallery-card__media {
  position: relative;
  aspect-ratio: 4/3;
  background:
    linear-gradient(
      180deg,
      rgba(242, 246, 252, .92) 0%,
      rgb(232, 238, 247) 100%);
  overflow: hidden;
}
.ee-image-gallery-card__media:after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 56px;
  background:
    linear-gradient(
      180deg,
      transparent 0%,
      rgba(21, 34, 56, .18) 100%);
  pointer-events: none;
}
.ee-image-gallery-card__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.ee-image-gallery-card__body {
  display: grid;
  gap: 10px;
  padding: 14px;
}
.ee-image-gallery-card__title {
  font-size: 13px;
  line-height: 1.4;
  font-weight: 600;
  color: var(--ee-control-text, #152238);
  word-break: break-word;
}
.ee-image-gallery-card:hover .ee-image-gallery-card__title,
.ee-image-gallery-card:focus-within .ee-image-gallery-card__title {
  color: var(--ee-control-text, #152238);
}
.ee-image-gallery-card__key,
.ee-image-gallery-card__meta {
  color: var(--ee-control-heading-color, #667085);
  font-size: 12px;
  line-height: 1.45;
  word-break: break-word;
}
.ee-image-gallery-card:hover .ee-image-gallery-card__key,
.ee-image-gallery-card:hover .ee-image-gallery-card__meta,
.ee-image-gallery-card:focus-within .ee-image-gallery-card__key,
.ee-image-gallery-card:focus-within .ee-image-gallery-card__meta {
  color: var(--ee-control-heading-color, #667085);
}
.ee-image-gallery-card__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}
.ee-image-gallery-card__actions {
  display: flex;
  gap: 8px;
  align-items: center;
  justify-content: flex-end;
  flex-wrap: wrap;
}
.ee-image-gallery-card__select {
  min-width: 0;
}
.ee-image-gallery-loading-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 18px;
  background: rgba(248, 251, 255, .72);
  backdrop-filter: blur(4px);
  pointer-events: none;
}
.ee-image-gallery-loading-overlay--empty {
  position: relative;
  min-height: 220px;
  background: transparent;
  backdrop-filter: none;
}
.ee-image-gallery-loading-overlay__card {
  display: grid;
  justify-items: center;
  gap: 10px;
  min-width: 180px;
  padding: 18px 20px;
  border: 1px solid rgba(213, 222, 234, .92);
  border-radius: 16px;
  background: rgba(255, 255, 255, .92);
  box-shadow: 0 12px 32px #0f172a1a;
  color: #475467;
  text-align: center;
}
.ee-image-gallery-empty {
  border: 1px dashed var(--ee-control-border, #d5deea);
  border-radius: 14px;
  padding: 28px;
  background: rgba(255, 255, 255, .78);
  text-align: center;
  color: #667085;
}
.ee-image-gallery-error {
  color: #b42318;
  background: #fef3f2;
  border: 1px solid #fecdca;
  border-radius: 12px;
  padding: 12px 14px;
}
.ee-image-gallery-load-more {
  display: flex;
  justify-content: center;
  padding-bottom: 8px;
}
@media (max-width: 900px) {
  .ee-image-gallery-browser-shell {
    grid-template-columns: 1fr;
  }
  .ee-image-gallery-sidebar {
    order: 2;
  }
  .ee-image-gallery-main {
    order: 1;
  }
}
@media (max-width: 720px) {
  .ee-image-gallery-modal.ee-modal__dialog {
    width: min(100vw - 20px, 1080px);
  }
  .ee-image-gallery-modal .ee-modal__header {
    padding: 16px 16px 14px;
  }
  .ee-image-gallery-modal__body.ee-modal__body {
    padding: 14px;
  }
  .ee-image-gallery-toolbar__actions,
  .ee-image-gallery-search-row {
    width: 100%;
  }
  .ee-image-gallery-toolbar__actions {
    justify-content: flex-start;
  }
  .ee-image-gallery-search {
    flex-basis: 100%;
    min-width: 100%;
  }
}
._Stack_1cvhd_1 {
  gap: 16px;
}
._Stack_1cvhd_1 > ._Item_1cvhd_4 {
  max-width: 100%;
}
._Stack_1cvhd_1 {
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
}
._noWrap_1cvhd_13 {
  flex-wrap: nowrap;
}
._spacingNone_1cvhd_17 {
  gap: 0;
}
._spacingNone_1cvhd_17 > ._Item_1cvhd_4 {
  max-width: 100%;
}
._spacingExtraTight_1cvhd_24 {
  gap: 4px;
}
._spacingExtraTight_1cvhd_24 > ._Item_1cvhd_4 {
  max-width: 100%;
}
._spacingTight_1cvhd_31 {
  gap: 12px;
}
._spacingTight_1cvhd_31 > ._Item_1cvhd_4 {
  max-width: 100%;
}
._spacingLoose_1cvhd_38 {
  gap: 20px;
}
._spacingLoose_1cvhd_38 > ._Item_1cvhd_4 {
  max-width: 100%;
}
._spacingExtraLoose_1cvhd_45 {
  gap: 32px;
}
._spacingExtraLoose_1cvhd_45 > ._Item_1cvhd_4 {
  max-width: 100%;
}
._distributionLeading_1cvhd_52 {
  justify-content: flex-start;
}
._distributionTrailing_1cvhd_56 {
  justify-content: flex-end;
}
._distributionCenter_1cvhd_60 {
  justify-content: center;
}
._distributionEqualSpacing_1cvhd_64 {
  width: 100%;
  justify-content: space-between;
  gap: 0;
}
._distributionFill_1cvhd_70 > ._Item_1cvhd_4 {
  flex: 1 1 auto;
}
._distributionFillEvenly_1cvhd_74 > ._Item_1cvhd_4 {
  flex: 1 1 auto;
}
@supports (min-width: fit-content) {
  ._distributionFillEvenly_1cvhd_74 > ._Item_1cvhd_4 {
    flex: 1 0 0%;
    min-width: fit-content;
  }
}
._alignmentLeading_1cvhd_84 {
  align-items: flex-start;
}
._alignmentTrailing_1cvhd_88 {
  align-items: flex-end;
}
._alignmentCenter_1cvhd_92 {
  align-items: center;
}
._alignmentFill_1cvhd_96 {
  align-items: stretch;
}
._alignmentBaseline_1cvhd_100 {
  align-items: baseline;
}
._vertical_1cvhd_104 {
  flex-direction: column;
}
._Item_1cvhd_4 {
  flex: 0 0 auto;
  min-width: 0;
}
._Item-fill_1cvhd_113 {
  flex: 1 1 auto;
}
.ee-tabs {
  display: flex;
  flex-direction: column;
  width: 100%;
  height: 100%;
  min-height: 0;
}
.ee-tab-wrapper {
  color: var(--ee-control-heading-color, #667085);
  font-size: 14px;
  padding: 0 8px;
  font-variant: tabular-nums;
  line-height: 1.5715;
  list-style: none;
  font-feature-settings: "tnum";
  width: 100%;
  height: 61px;
  box-sizing: border-box;
  background-color: var(--ee-control-surface-muted, #f2f5f9);
  border: 1px solid var(--ee-control-border, #d5deea);
  border-left: none;
  border-right: none;
  position: relative;
  z-index: 40;
}
.ee-tab-content {
  flex: 1 1 auto;
  min-height: 0;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}
.ee-tab-header {
  display: flex;
  align-items: center;
  gap: 8px;
  width: 100%;
  height: 100%;
}
.ee-tab-items {
  display: flex;
  align-items: center;
}
.ee-tab-items-inner {
  display: flex;
  align-items: center;
  gap: 8px;
}
.ee-tab-wrapper--left {
  height: 100%;
}
.ee-tab-pane {
  min-height: 0;
}
.ee-tab-item {
  position: relative;
  padding: 0;
  background: transparent;
  border: 0;
}
.ee-tab-button {
  width: 40px;
  min-width: 40px;
  height: 40px;
  padding: 0;
  border-radius: 8px;
  background: var(--ee-control-surface, #fff);
  border: 1px solid var(--ee-control-border, #d5deea);
  color: var(--ee-control-heading-color, #667085);
  box-shadow: none;
}
.ee-tab-button--label {
  width: auto;
  min-width: 0;
  padding: 0 14px;
}
.ee-tab-item:hover .ee-tab-button,
.ee-tab-item:focus-within .ee-tab-button {
  background: var(--ee-control-surface-hover, #f8fbff);
  border-color: var(--ee-control-border-hover, #c2cfe0);
  color: var(--ee-primary, #0b6bcb);
}
.ee-tab-item--active .ee-tab-button {
  color: var(--ee-primary, #0b6bcb);
  border-color: color-mix(in srgb, var(--ee-primary, #0b6bcb) 24%, #fff);
  background: color-mix(in srgb, var(--ee-primary, #0b6bcb) 10%, #fff);
}
.ee-tab-item--active:after {
  content: none;
}
._flash_k2oy5_1 {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  max-width: 100%;
  box-sizing: border-box;
  height: 40px;
  min-height: 40px;
  padding: 0 12px;
  border: 1px solid var(--ee-control-border, #d5deea);
  border-radius: 8px;
  background: var(--ee-control-surface, #ffffff);
  color: var(--ee-control-text, #152238);
  font-size: 13px;
  line-height: 1;
}
._dot_k2oy5_18 {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  flex: 0 0 auto;
}
._text_k2oy5_25 {
  min-width: 0;
  white-space: nowrap;
}
._success_k2oy5_30 {
  border-color: #aee5c2;
  background: #ebf9f0;
}
._success_k2oy5_30 ._dot_k2oy5_18 {
  background: rgb(34, 153, 84);
}
._error_k2oy5_39 {
  border-color: #efc7c4;
  background: #fff5f5;
}
._error_k2oy5_39 ._dot_k2oy5_18 {
  background: rgb(214, 45, 32);
}
._warning_k2oy5_48 {
  border-color: #f8e0b4;
  background: #fff7e8;
}
._warning_k2oy5_48 ._dot_k2oy5_18 {
  background: rgb(208, 132, 27);
}
._info_k2oy5_57 {
  border-color: rgb(var(--primary-2, 190, 218, 255));
  background: rgb(var(--primary-1, 232, 243, 255));
}
._info_k2oy5_57 ._dot_k2oy5_18 {
  background: rgb(var(--primary-6, 22, 93, 255));
}
#easy-email-editor {
  box-sizing: border-box;
  font-family: var(--ee-editor-font, "Open Sans", sans-serif);
  scrollbar-gutter: stable;
}
#easy-email-editor * {
  box-sizing: border-box;
}
.easy-email-overlay {
  overflow: auto;
}
.easy-email-overlay {
  overflow: auto !important;
}
.easy-email-overlay::-webkit-scrollbar {
  -webkit-appearance: none;
  width: 6px !important;
}
.easy-email-overlay::-webkit-scrollbar-thumb {
  background-color: #00000038;
  border-radius: 999px;
  box-shadow: none;
  -webkit-box-shadow: none;
}
.ee-tab-extra {
  display: flex;
  align-items: center;
  gap: 10px;
  position: relative;
  flex: 1 1 auto;
  min-width: 0;
  padding: 0;
  min-height: 60px;
  height: 60px;
  box-sizing: border-box;
}
.ee-tab-message {
  flex: 1 1 auto;
  min-width: 0;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.ee-tab-message > * {
  max-width: 100%;
  min-width: 0;
}
.ee-tab-flash {
  pointer-events: none;
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  margin-right: 8px;
}
.ee-tab-flash-message {
  pointer-events: auto;
}
.ee-tab-actions {
  flex: 0 0 auto;
  margin-left: auto;
  display: inline-flex;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
}
.ee-tab-action {
  display: inline-flex;
  align-items: center;
  justify-content: flex-end;
}
.editor-toolbar-actions {
  display: inline-flex;
  align-items: center;
}
.editor-toolbar-statusShell {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  max-width: min(520px, 100%);
  border: none;
  border-radius: 0;
  padding: 0;
  background: transparent;
  box-shadow: none;
  pointer-events: none;
}
.editor-toolbar-statusText {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 120px;
  height: 40px;
  padding: 0 14px;
  border: 1px solid #d5deea;
  border-radius: 8px;
  background: #fff;
  color: #152238;
  font-size: 15px;
  font-weight: 500;
  line-height: 1;
  white-space: nowrap;
  box-shadow: none;
}
.editor-toolbar-statusShell:empty {
  display: none;
}
.editor-toolbar-statusText:empty {
  display: none;
}
.editor-toolbar-status__text {
  overflow: hidden;
  text-overflow: ellipsis;
}
.editor-toolbar-statusShell--saved {
  border-color: #aee5c2;
  background: #ebf9f0;
}
.editor-toolbar-statusShell--saved .editor-toolbar-statusText {
  border-color: #1f8f5f2e;
  background: #ebf9f0;
  color: #1f8f5f;
}
.editor-toolbar-statusShell--dirty {
  border-color: #f8e0b4;
  background: #fff7e8;
}
.editor-toolbar-statusShell--dirty .editor-toolbar-statusText {
  border-color: #f8e0b4;
  background: #fff7e8;
  color: #d0841b;
}
.editor-toolbar-statusShell--saving {
  border-color: rgb(var(--primary-2, 190, 218, 255));
  background: rgb(var(--primary-1, 232, 243, 255));
}
.editor-toolbar-statusShell--saving .editor-toolbar-statusText {
  border-color: rgb(var(--primary-2, 190, 218, 255));
  background: rgb(var(--primary-1, 232, 243, 255));
  color: rgb(var(--primary-6, 22, 93, 255));
}
.editor-toolbar-statusShell--error {
  border-color: #fcc9c9;
  background: rgb(255, 241, 241);
}
.editor-toolbar-statusShell--error .editor-toolbar-statusText {
  border-color: #fcc9c9;
  background: rgb(255, 241, 241);
  color: #d62d20;
}
.editor-toolbar-statusShell--saved .editor-toolbar-statusText,
.editor-toolbar-statusShell--dirty .editor-toolbar-statusText,
.editor-toolbar-statusShell--saving .editor-toolbar-statusText,
.editor-toolbar-statusShell--error .editor-toolbar-statusText {
  min-width: 120px;
}
.editor-inline-save {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 120px;
  height: 40px;
  padding: 0 14px;
  border: 1px solid #d5deea;
  border-radius: 8px;
  background: #eef2f7;
  color: #5f6e86;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0;
  text-transform: none;
  line-height: 1;
  cursor: pointer;
  transition:
    background-color .2s ease,
    color .2s ease,
    box-shadow .2s ease,
    transform .2s ease;
  transition:
    background-color .2s ease,
    color .2s ease,
    border-color .2s ease,
    box-shadow .2s ease,
    transform .2s ease;
}
.editor-inline-save--active {
  background: var(--ee-primary, #0b6bcb);
  border-color: var(--ee-primary, #0b6bcb);
  color: #fff;
}
.ee-tab-button--fullscreen-active,
.ee-tab-button--fullscreen-active:hover:not(:disabled),
.ee-tab-button--fullscreen-active:focus-visible:not(:disabled) {
  border-color: color-mix(in srgb, var(--ee-primary, #0b6bcb) 24%, #fff);
  background: color-mix(in srgb, var(--ee-primary, #0b6bcb) 10%, #fff);
  color: var(--ee-primary, #0b6bcb);
}
.editor-inline-save:hover:not(:disabled) {
  box-shadow: none;
  transform: none;
}
.editor-inline-save:focus-visible {
  outline: none;
  box-shadow: none;
}
.editor-inline-save:disabled {
  cursor: default;
  opacity: 1;
  box-shadow: none;
  transform: none;
}
.editor-save-label {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.easy-email-editor-tabStatus {
  display: inline-flex;
  align-items: center;
  height: 24px;
  padding: 0 10px;
  border-radius: 999px;
  border: 1px solid var(--ee-control-border, #d5deea);
  background: #fff;
  font-size: 12px;
  line-height: 24px;
  color: var(--color-text-2, rgb(134, 144, 156));
  white-space: nowrap;
}
.easy-email-editor-tabStatus--dirty {
  color: #d0841b;
  border-color: #f8e0b4;
  background: rgb(255, 247, 232);
}
.easy-email-editor-tabStatus--saving {
  color: var(--ee-primary, #0b6bcb);
  border-color: color-mix(in srgb, var(--ee-primary, #0b6bcb) 24%, #fff);
  background: color-mix(in srgb, var(--ee-primary, #0b6bcb) 10%, #fff);
}
.easy-email-editor-tabStatus--saved {
  color: #229954;
  border-color: #aee5c2;
  background: rgb(235, 249, 240);
}
.easy-email-editor-tabStatus--error {
  color: #d62d20;
  border-color: #fcc9c9;
  background: rgb(255, 240, 240);
}
.ee-tab-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.ee-unsaved-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  position: absolute;
  right: -6px;
  top: -3px;
  background: rgb(245, 63, 63);
  box-shadow: 0 0 0 2px #fff;
}
.ee-ai-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  color: var(--color-text-2, rgb(102, 112, 133));
  transition: color .2s ease;
}
.ee-ai-icon.ee-icon {
  cursor: inherit;
  pointer-events: none;
  font-size: 20px;
}
.ee-ai-icon--active {
  color: rgb(var(--primary-6, 22, 93, 255));
}
.ee-tools-panel {
  position: relative;
  display: inline-flex;
  align-items: center;
}
.ee-tools-actions {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.ee-tool-icon {
  cursor: inherit;
}
.ee-tool-icon--muted,
.ee-tool-icon--disabled {
  opacity: .75;
}
.easy-email-editor-toolsPopover {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  min-width: 250px;
  max-width: 320px;
  border-radius: 8px;
  border: 1px solid var(--ee-control-border, #d5deea);
  box-shadow: 0 10px 24px #1617181f;
  background: #fff;
  padding: 12px;
  z-index: 1200;
}
.easy-email-editor-toolsPopover--prompt {
  min-width: 360px;
  max-width: 560px;
}
.easy-email-editor-toolsPopoverTitle {
  margin: 0 0 8px;
  font-size: 12px;
  font-weight: 600;
  color: var(--color-text-1, rgb(29, 33, 41));
}
.easy-email-editor-aiMode {
  margin: 0;
  font-size: 11px;
  color: var(--color-text-3, rgb(134, 144, 156));
  text-transform: uppercase;
  letter-spacing: .02em;
}
.easy-email-editor-aiMetaHeader {
  margin: 0 0 10px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}
.easy-email-editor-aiStatus {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  min-height: 22px;
  padding: 0 8px;
  font-size: 10px;
  letter-spacing: .02em;
  text-transform: uppercase;
  border: 1px solid var(--ee-control-border, #d5deea);
  background: #fff;
  color: var(--color-text-2, rgb(102, 112, 133));
  white-space: nowrap;
}
.easy-email-editor-aiStatus--loading-model,
.easy-email-editor-aiStatus--running,
.easy-email-editor-aiStatus--validating {
  color: rgb(var(--primary-6, 22, 93, 255));
  border-color: rgb(var(--primary-2, 190, 218, 255));
  background: rgb(var(--primary-1, 232, 243, 255));
}
.easy-email-editor-aiStatus--review-ready,
.easy-email-editor-aiStatus--applied {
  color: #229954;
  border-color: #aee5c2;
  background: rgb(235, 249, 240);
}
.easy-email-editor-aiStatus--error {
  color: #d62d20;
  border-color: #fcc9c9;
  background: rgb(255, 240, 240);
}
.easy-email-editor-aiMeta {
  margin: 0 0 10px;
  font-size: 11px;
  color: var(--color-text-2, rgb(102, 112, 133));
  line-height: 1.4;
  word-break: break-word;
}
.easy-email-editor-aiProgress {
  position: relative;
  height: 6px;
  border-radius: 999px;
  margin: 0 0 8px;
  overflow: hidden;
  background: rgb(235, 239, 245);
}
.easy-email-editor-aiProgressBar {
  width: 100%;
  height: 100%;
  border-radius: inherit;
  transform-origin: left center;
  transform: scaleX(0);
  background:
    linear-gradient(
      90deg,
      rgb(57, 110, 185),
      rgb(91, 158, 255));
  transition: transform .2s ease;
}
.easy-email-editor-aiProgress--indeterminate .easy-email-editor-aiProgressBar {
  width: 45%;
  animation: easy-email-editor-aiProgress-indeterminate 1.2s ease-in-out infinite;
}
.easy-email-editor-aiProgressText {
  margin: 0 0 10px;
  font-size: 11px;
  color: var(--color-text-3, rgb(134, 144, 156));
}
.easy-email-editor-aiLabel {
  display: inline-block;
  margin-bottom: 6px;
  font-size: 12px;
  color: var(--color-text-2, rgb(102, 112, 133));
}
.easy-email-editor-aiSelect {
  width: 100%;
  height: 30px;
  border: 1px solid var(--ee-control-border, #d5deea);
  border-radius: 6px;
  padding: 0 8px;
  margin: 0 0 10px;
  font-size: 12px;
  color: var(--color-text-1, rgb(29, 33, 41));
  background: #fff;
  outline: none;
}
.easy-email-editor-aiSelect:focus {
  border-color: rgb(var(--primary-6, 22, 93, 255));
}
@keyframes easy-email-editor-aiProgress-indeterminate {
  0% {
    transform: translate(-20%) scaleX(1);
    opacity: .6;
  }
  50% {
    transform: translate(100%) scaleX(1);
    opacity: 1;
  }
  to {
    transform: translate(220%) scaleX(1);
    opacity: .6;
  }
}
.easy-email-editor-aiPromptHints {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin: 0 0 10px;
}
.easy-email-editor-aiPromptChip {
  border: 1px solid var(--ee-control-border, #d5deea);
  border-radius: 999px;
  background: #fff;
  color: var(--color-text-2, rgb(102, 112, 133));
  font-size: 11px;
  line-height: 1.3;
  padding: 4px 8px;
  cursor: pointer;
  text-align: left;
}
.easy-email-editor-aiPromptChip:hover:not(:disabled) {
  border-color: rgb(var(--primary-4, 22, 93, 255));
  color: rgb(var(--primary-6, 22, 93, 255));
}
.easy-email-editor-aiPromptChip:disabled {
  opacity: .65;
  cursor: not-allowed;
}
.easy-email-editor-aiTextarea {
  width: 100%;
  min-height: 104px;
  resize: vertical;
  border: 1px solid var(--ee-control-border, #d5deea);
  border-radius: 6px;
  padding: 8px 10px;
  font-size: 12px;
  color: var(--color-text-1, rgb(29, 33, 41));
  outline: none;
  transition: border-color .2s ease;
}
.easy-email-editor-aiTextarea:focus {
  border-color: rgb(var(--primary-6, 22, 93, 255));
}
.easy-email-editor-aiTextareaMeta {
  margin-top: 6px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  font-size: 11px;
  color: var(--color-text-3, rgb(134, 144, 156));
}
.easy-email-editor-aiTextareaCount--warn {
  color: #d0841b;
  font-weight: 600;
}
.easy-email-editor-aiMessage {
  margin: 8px 0 0;
  font-size: 12px;
}
.easy-email-editor-aiMessage--success,
.easy-email-editor-aiMessage--applied,
.easy-email-editor-aiMessage--review-ready {
  color: #229954;
}
.easy-email-editor-aiMessage--error {
  color: #d62d20;
}
.easy-email-editor-aiMessage--running,
.easy-email-editor-aiMessage--loading-model,
.easy-email-editor-aiMessage--validating {
  color: rgb(var(--primary-6, 22, 93, 255));
}
.easy-email-editor-aiRawSection {
  margin-top: 8px;
}
.easy-email-editor-aiRawActions {
  display: flex;
  align-items: center;
  gap: 6px;
}
.easy-email-editor-aiRawToggle {
  height: 24px;
  font-size: 11px;
  padding: 0 8px;
}
.easy-email-editor-aiRawResponse {
  margin: 8px 0 0;
  border: 1px solid var(--ee-control-border, #d5deea);
  border-radius: 6px;
  background: rgb(248, 249, 250);
  color: var(--color-text-1, rgb(29, 33, 41));
  font-size: 11px;
  line-height: 1.45;
  padding: 8px;
  max-height: 180px;
  overflow: auto;
  white-space: pre-wrap;
  word-break: break-word;
}
.easy-email-editor-aiReviewPanel {
  margin-top: 10px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.easy-email-editor-aiReviewHeader {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}
.easy-email-editor-aiReviewTitle {
  margin: 0;
  font-size: 12px;
  font-weight: 600;
  color: var(--color-text-1, rgb(29, 33, 41));
}
.easy-email-editor-aiReviewBadge {
  display: inline-flex;
  align-items: center;
  height: 22px;
  padding: 0 8px;
  border-radius: 999px;
  background: rgb(var(--primary-1, 232, 243, 255));
  color: rgb(var(--primary-6, 22, 93, 255));
  font-size: 11px;
  white-space: nowrap;
}
.easy-email-editor-aiReviewFields {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.easy-email-editor-aiReviewCard {
  border: 1px solid var(--ee-control-border, #d5deea);
  border-radius: 8px;
  padding: 10px;
  background: rgb(255, 255, 255);
}
.easy-email-editor-aiReviewCardTitle {
  margin: 0 0 8px;
  font-size: 12px;
  font-weight: 600;
  color: var(--color-text-1, rgb(29, 33, 41));
}
.easy-email-editor-aiReviewCompare {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
}
.easy-email-editor-aiReviewCompare--json {
  margin-top: 8px;
}
.easy-email-editor-aiReviewValue {
  min-width: 0;
  padding: 8px;
  border-radius: 6px;
  background: rgb(248, 249, 250);
}
.easy-email-editor-aiReviewValue--next {
  background: rgb(235, 249, 240);
}
.easy-email-editor-aiReviewValueLabel {
  display: inline-block;
  margin-bottom: 4px;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: .03em;
  color: var(--color-text-3, rgb(134, 144, 156));
}
.easy-email-editor-aiReviewValue p {
  margin: 0;
  font-size: 12px;
  line-height: 1.5;
  color: var(--color-text-1, rgb(29, 33, 41));
  word-break: break-word;
}
.easy-email-editor-aiReviewStats {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
}
.easy-email-editor-aiReviewStat {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 8px;
  border-radius: 6px;
  background: rgb(248, 249, 250);
  font-size: 11px;
  color: var(--color-text-2, rgb(102, 112, 133));
}
.easy-email-editor-aiReviewStat strong {
  font-size: 13px;
  color: var(--color-text-1, rgb(29, 33, 41));
}
.easy-email-editor-aiReviewDeltaList {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin: 8px 0;
}
.easy-email-editor-aiReviewDelta {
  display: inline-flex;
  align-items: center;
  min-height: 24px;
  padding: 0 8px;
  border-radius: 999px;
  font-size: 11px;
  border: 1px solid transparent;
}
.easy-email-editor-aiReviewDelta--added {
  background: rgb(235, 249, 240);
  color: #229954;
  border-color: #aee5c2;
}
.easy-email-editor-aiReviewDelta--removed {
  background: rgb(255, 240, 240);
  color: #d62d20;
  border-color: #fcc9c9;
}
.easy-email-editor-aiReviewHint {
  margin: 8px 0;
  font-size: 11px;
  color: var(--color-text-2, rgb(102, 112, 133));
}
.easy-email-editor-shortcutsList,
.easy-email-editor-historyList {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.easy-email-editor-shortcutsList li,
.easy-email-editor-historyList li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  font-size: 12px;
  color: var(--color-text-2, rgb(102, 112, 133));
}
.easy-email-editor-inlineActions {
  margin-top: 10px;
  display: flex;
  gap: 8px;
}
.easy-email-editor-popoverButton {
  appearance: none;
  border: 1px solid var(--ee-control-border, #d5deea);
  background: #fff;
  color: var(--color-text-1, rgb(29, 33, 41));
  border-radius: 4px;
  font-size: 12px;
  line-height: 1;
  height: 28px;
  padding: 0 10px;
  cursor: pointer;
}
.easy-email-editor-popoverButton--compact {
  height: 32px;
  min-height: 32px;
  padding: 0 10px;
  font-size: 13px;
}
.easy-email-editor-popoverButton:hover {
  border-color: rgb(var(--primary-4, 22, 93, 255));
  color: rgb(var(--primary-6, 22, 93, 255));
}
.easy-email-editor-popoverButton:disabled {
  opacity: .6;
  cursor: not-allowed;
}
.easy-email-editor-popoverButton--primary {
  border-color: rgb(var(--primary-6, 22, 93, 255));
  background: rgb(var(--primary-6, 22, 93, 255));
  color: #fff;
}
.easy-email-editor-popoverButton--primary:hover {
  border-color: rgb(var(--primary-5, 22, 93, 255));
  background: rgb(var(--primary-5, 22, 93, 255));
  color: #fff;
}
.easy-email-editor-popoverButton--primary:disabled {
  cursor: not-allowed;
  opacity: .6;
}
.easy-email-editor-popoverDanger {
  border-color: #fac2c2;
  color: #d62d20;
}
.easy-email-editor-toolsPopoverNote {
  margin: 0;
  font-size: 12px;
  color: var(--color-text-2, rgb(102, 112, 133));
}
._strong_7ulli_1 {
  font-weight: 600;
}
._subdued_7ulli_5 {
  color: #6d7175;
}
._largest_7ulli_9 {
  font-size: 24px;
}
._extraLarge_7ulli_13 {
  font-size: 20px;
}
._large_7ulli_9 {
  font-size: 18px;
}
._normal_7ulli_21 {
  font-size: 16px;
}
._small_7ulli_25 {
  font-size: 14px;
}
._smallest_7ulli_29 {
  font-size: 12px;
}
.ee-modal {
  position: fixed;
  inset: 0;
  z-index: 2500;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  background: rgba(16, 24, 40, .45);
  box-sizing: border-box;
}
.ee-modal__dialog {
  display: flex;
  flex-direction: column;
  max-width: 100%;
  max-height: 100%;
  overflow: hidden;
  border-radius: 12px;
  background: var(--ee-control-surface, #fff);
  box-shadow: 0 20px 60px #0f172a38;
}
.ee-modal__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 16px 20px;
  border-bottom: 1px solid var(--ee-control-border, #d5deea);
}
.ee-modal__title {
  min-width: 0;
  font-size: 16px;
  font-weight: 600;
  color: var(--ee-control-heading-color, #667085);
}
.ee-modal__close {
  appearance: none;
  border: none;
  background: transparent;
  color: var(--ee-control-heading-color, #667085);
  font-size: 24px;
  line-height: 1;
  cursor: pointer;
}
.ee-modal__body {
  min-height: 0;
  padding: 20px;
  overflow: auto;
}
.ee-modal__footer {
  display: flex;
  justify-content: flex-end;
  gap: 8px;
  padding: 16px 20px 20px;
  border-top: 1px solid var(--ee-control-border, #d5deea);
}

/* node_modules/@hundred_dev/easy-email-extensions/lib/style.css */
.SimpleLayout,
#easy-email-editor {
  --ee-editor-font: "Roboto", sans-serif;
  --ee-primary: #0b6bcb;
  --ee-control-height: 40px;
  --ee-control-radius: 8px;
  --ee-control-border: #d5deea;
  --ee-control-border-hover: #c2cfe0;
  --ee-border: var(--ee-control-border);
  --ee-control-text: #152238;
  --ee-control-heading-color: #667085;
  --ee-control-muted: #5f6e86;
  --ee-control-surface: #ffffff;
  --ee-control-surface-muted: #f2f5f9;
  --ee-control-surface-hover: #f8fbff;
  --ee-control-label-size: 14px;
  --ee-control-label-color: var(--ee-control-heading-color);
  --ee-control-label-width: 130px;
  --ee-control-field-width: calc(100% - 130px - var(--ee-control-gap, 10px));
  --ee-control-font: var(--ee-editor-font);
  --ee-control-gap: 10px;
  --color-menu-light-bg: #f2f5f9;
  font-family: var(--ee-editor-font) !important;
  font-size: 14px !important;
  line-height: 1.4;
}
.SimpleLayout .ee-row-label,
#easy-email-editor .ee-row-label,
.SimpleLayout .ee-font-import-label,
#easy-email-editor .ee-font-import-label,
.SimpleLayout .ee-helper-text,
#easy-email-editor .ee-helper-text,
.SimpleLayout .ee-row-help,
#easy-email-editor .ee-row-help {
  font-size: var(--ee-control-label-size, 14px) !important;
  line-height: 1.2 !important;
}
.SimpleLayout .ee-input,
#easy-email-editor .ee-input,
.SimpleLayout .ee-select-trigger,
#easy-email-editor .ee-select-trigger,
.SimpleLayout .ee-textarea-input,
#easy-email-editor .ee-textarea-input,
.SimpleLayout .ee-auto-complete,
#easy-email-editor .ee-auto-complete {
  font-family: var(--ee-control-font) !important;
  font-size: 14px !important;
}
.ee-helper-text {
  color: #6d7175;
  font-weight: 400;
  line-height: 1.3;
  text-transform: none;
  letter-spacing: normal;
}
.ee-sr-only {
  position: absolute !important;
  top: 0;
  clip: rect(1px, 1px, 1px, 1px) !important;
  overflow: hidden !important;
  height: 1px !important;
  width: 1px !important;
  padding: 0 !important;
  border: 0 !important;
}
.ee-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 2fr);
  column-gap: var(--ee-control-gap, 10px);
  align-items: start;
  width: 100%;
  box-sizing: border-box;
}
.ee-row--stacked {
  display: flex;
  flex-direction: column;
  gap: var(--ee-control-gap, 10px);
}
.ee-row-label {
  width: 100%;
  min-width: 0;
  max-width: 100%;
  height: 38px;
  min-height: 38px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  text-align: right;
  line-height: 1.2;
  color: var(--ee-control-heading-color, #667085);
  font-size: var(--ee-control-label-size);
  font-family: var(--ee-control-font);
  font-weight: 400;
}
.ee-row-label > span {
  display: block;
  width: 100%;
  white-space: normal;
  overflow-wrap: anywhere;
}
.ee-font-import-label {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  color: var(--ee-control-heading-color, #667085);
  font-size: var(--ee-control-label-size);
  line-height: 1.2;
  white-space: nowrap;
}
.ee-font-import-label__text {
  display: inline-block;
}
.ee-font-import-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  width: 100%;
  min-width: 0;
}
.ee-row-control {
  min-width: 0;
  width: 100%;
  overflow: hidden;
  min-height: 32px;
  display: flex;
  align-items: center;
}
.ee-row--textarea .ee-row-control {
  overflow: visible;
  align-items: stretch;
}
.ee-row--textarea .ee-row-control__stack {
  align-items: stretch;
}
.ee-row--textarea .ee-control {
  overflow: visible;
  align-items: stretch;
}
.ee-font-import-item {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding-bottom: 6px;
}
.ee-font-import-item__fields {
  display: grid;
  gap: 10px;
}
.ee-font-import-item__actions {
  display: flex;
  justify-content: flex-end;
  margin-top: -2px;
}
.ee-font-import-item__delete {
  width: 20px;
  min-width: 20px;
  height: 20px;
  min-height: 20px;
  padding: 0;
  gap: 0;
}
.ee-control {
  min-width: 0;
  width: 100%;
  overflow: hidden;
  min-height: 32px;
  display: flex;
  align-items: center;
}
.ee-row-control__stack {
  width: 100%;
  min-width: 0;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 4px;
}
.ee-row-control__stack--end {
  align-items: flex-end;
}
.ee-control__stack {
  width: 100%;
  min-width: 0;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 4px;
}
.ee-row-control--end {
  justify-content: flex-end;
}
.ee-row--stacked .ee-row-label {
  height: auto;
  min-height: 0;
  justify-content: flex-start;
  text-align: left;
}
.ee-row--stacked .ee-row-label > span {
  white-space: normal;
  overflow-wrap: normal;
}
.ee-row--stacked .ee-row-control {
  width: 100%;
}
.ee-row--label-hidden {
  grid-template-columns: minmax(0, 1fr);
}
.ee-row--label-hidden .ee-row-control,
.ee-row--label-hidden .ee-row-control--end {
  grid-column: 1/-1;
}
.ee-row--action-only {
  display: flex;
  justify-content: flex-end;
}
.ee-row-action {
  min-width: 0;
  width: 100%;
  display: flex;
  align-items: center;
}
.ee-row-action--end {
  justify-content: flex-end;
}
.ee-row-help {
  margin-top: 4px;
  line-height: 1.2;
  color: var(--ee-control-heading-color, #667085);
  opacity: .7;
  font-size: 11px;
}
.ee-row-help--no-margin {
  margin-top: 0;
}
.ee-row-help--right {
  display: flex;
  align-self: stretch;
  justify-content: flex-end;
  width: 100%;
  max-width: 100%;
  text-align: right;
  margin-left: auto;
}
.ee-row-help--error,
.ee-field-help--error .ee-row-help {
  color: rgb(var(--danger-6, 217 45 32));
}
.ee-field-help {
  display: block;
  width: 100%;
  min-width: 0;
  box-sizing: border-box;
}
.ee-card {
  display: flex;
  flex-direction: column;
  min-width: 0;
  width: 100%;
  box-sizing: border-box;
  background: var(--ee-control-surface, #fff);
  border: 1px solid var(--ee-control-border, #d5deea);
  border-radius: var(--ee-control-radius, 8px);
}
.ee-popover {
  background: var(--ee-popover-background, #fff);
  border: 1px solid var(--ee-control-border, #d5deea);
  border-radius: 12px;
  box-shadow: 0 0 32px #0f172a2e;
}
.ee-popover__trigger {
  display: inline-flex;
}
.ee-control-group {
  width: 100%;
  min-width: 0;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: var(--ee-control-group-gap, 12px);
}
.ee-control-group--align-start {
  align-items: flex-start;
}
.ee-control-group--align-center {
  align-items: center;
}
.ee-control-group--align-end {
  align-items: flex-end;
}
.ee-control-group--align-stretch {
  align-items: stretch;
}
.ee-control-group--gap-extraTight,
.ee-control-group--gap-mini {
  --ee-control-group-gap: 4px;
}
.ee-control-group--gap-tight,
.ee-control-group--gap-small {
  --ee-control-group-gap: 8px;
}
.ee-control-group--gap-medium {
  --ee-control-group-gap: 12px;
}
.ee-control-group--gap-large {
  --ee-control-group-gap: 16px;
}
.ee-checkbox {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 20px;
  color: var(--ee-control-text, #152238);
  font-size: var(--ee-control-label-size, 15px);
  font-family: var(--ee-control-font);
  cursor: pointer;
  user-select: none;
}
.ee-checkbox input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}
.ee-checkbox__box {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  width: 16px;
  height: 16px;
  border-radius: 4px;
  border: 1px solid var(--ee-control-border, #d5deea);
  background: #fff;
  box-sizing: border-box;
  transition:
    background-color .15s ease,
    border-color .15s ease,
    box-shadow .15s ease;
}
.ee-checkbox__box:after {
  content: "";
  width: 6px;
  height: 9px;
  border-right: 2px solid #fff;
  border-bottom: 2px solid #fff;
  transform: rotate(45deg) scale(0);
  transform-origin: center;
  transition: transform .15s ease;
}
.ee-checkbox--checked .ee-checkbox__box {
  background: var(--ee-primary, #0b6bcb);
  border-color: var(--ee-primary, #0b6bcb);
}
.ee-checkbox--checked .ee-checkbox__box:after {
  transform: rotate(45deg) scale(1);
}
.ee-checkbox:hover .ee-checkbox__box,
.ee-checkbox:focus-within .ee-checkbox__box {
  border-color: var(--ee-primary, #0b6bcb);
  box-shadow: 0 0 0 2px color-mix(in srgb, var(--ee-primary, #0b6bcb) 12%, transparent);
}
.ee-checkbox__label {
  min-width: 0;
  line-height: 1.25;
}
.ee-switch {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  width: 44px;
  min-width: 44px;
  height: 24px;
  padding: 0;
  border: none;
  background: transparent;
  cursor: pointer;
}
.ee-switch__track {
  position: relative;
  width: 100%;
  height: 100%;
  border-radius: 999px;
  background: #d8e0ea;
  transition: background-color .15s ease;
  box-sizing: border-box;
}
.ee-switch__thumb {
  position: absolute;
  top: 2px;
  left: 2px;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 1px 3px #0f172a33;
  transition: transform .15s ease, left .15s ease;
}
.ee-switch--checked .ee-switch__track {
  background: var(--ee-primary, #0b6bcb);
}
.ee-switch--checked .ee-switch__thumb {
  left: 22px;
}
.ee-switch:focus-visible {
  outline: none;
}
.ee-switch:focus-visible .ee-switch__track {
  box-shadow: 0 0 0 2px color-mix(in srgb, var(--ee-primary, #0b6bcb) 18%, transparent);
}
.ee-edit-tab {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.ee-edit-tab__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.ee-edit-tab__tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.ee-edit-tab__tab {
  appearance: none;
  border: 1px solid var(--ee-control-border, #d5deea);
  border-radius: 999px;
  background: var(--ee-panel-surface, #fff);
  color: var(--ee-control-text, #152238);
  padding: 6px 12px;
  font: inherit;
  cursor: pointer;
}
.ee-edit-tab__tab--active {
  border-color: var(--ee-primary, #4c7dff);
  color: var(--ee-primary, #4c7dff);
  background: color-mix(in srgb, var(--ee-primary, #4c7dff) 10%, #fff);
}
.ee-edit-tab__body {
  border: 1px solid var(--ee-control-border, #d5deea);
  border-radius: 10px;
  background: var(--ee-panel-surface, #fff);
  overflow: hidden;
}
.ee-edit-tab__controls {
  display: flex;
  justify-content: flex-end;
  padding: 10px 12px 0;
}
.ee-edit-tab__panel {
  padding: 12px;
}
.ee-auto-complete {
  display: flex;
  align-items: stretch;
  width: 100%;
  height: var(--ee-control-height, 40px);
  box-sizing: border-box;
  border: 1px solid var(--ee-control-border, #d5deea);
  border-radius: var(--ee-control-radius, 8px);
  overflow: hidden;
  background: var(--ee-control-surface, #fff);
  color: var(--ee-control-text, #152238);
  font-size: var(--ee-control-label-size, 15px);
  font-family: var(--ee-control-font);
}
.ee-auto-complete-input {
  width: 100%;
  height: 100%;
  border: none;
  background: transparent;
  box-shadow: none;
  color: var(--ee-control-text, #152238);
  font-size: inherit;
  font-family: inherit;
}
.ee-auto-complete .ee-input {
  height: 100%;
  border: none !important;
  box-shadow: none !important;
  background: transparent !important;
}
.ee-auto-complete .ee-input {
  width: 100%;
  border-radius: 8px;
  padding: 0 !important;
}
.ee-auto-complete .ee-input {
  padding: 0 10px;
  color: var(--ee-control-text);
  font-family: var(--ee-control-font);
}
.ee-select {
  width: 100%;
  height: var(--ee-control-height, 40px);
  border: 1px solid var(--ee-control-border, #d5deea);
  border-radius: var(--ee-control-radius, 8px);
  box-sizing: border-box;
  background: var(--ee-control-surface, #fff);
  overflow: hidden;
  position: relative;
  font-family: var(--ee-control-font);
}
.ee-select--open {
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
}
.ee-select-trigger {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  border: none;
  background: transparent;
  padding: 0 10px;
  color: var(--ee-control-text, #152238);
  font-family: var(--ee-control-font);
  font-size: var(--ee-control-label-size, 15px);
  line-height: 1.2;
  cursor: pointer;
  outline: none;
}
.ee-select-trigger:disabled {
  cursor: not-allowed;
  color: var(--ee-control-muted, #5f6e86);
}
.ee-select-trigger:focus-visible {
  outline: none;
}
.ee-select-value {
  min-width: 0;
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  text-align: left;
}
.ee-select-value--placeholder {
  color: var(--ee-control-muted, #5f6e86);
}
.ee-select-icon {
  flex: 0 0 auto;
  width: 16px;
  height: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--ee-control-muted, #5f6e86);
}
.ee-select-dropdown {
  margin-top: -1px;
  border: 1px solid var(--ee-control-border, #d5deea);
  border-radius: var(--ee-control-radius, 8px);
  border-top-left-radius: 0;
  border-top-right-radius: 0;
  background: var(--ee-control-surface, #fff);
  box-shadow: 0 8px 24px #0f172a1f;
  overflow: auto;
  padding: 4px 0;
}
.ee-select-option {
  width: 100%;
  min-height: 36px;
  display: flex;
  align-items: center;
  padding: 8px 10px;
  border: none;
  background: transparent;
  color: var(--ee-control-text, #152238);
  font-family: var(--ee-control-font);
  font-size: 14px;
  line-height: 1.2;
  text-align: left;
  cursor: pointer;
}
.ee-select-option:hover,
.ee-select-option--active {
  background: rgba(56, 132, 255, .08);
}
.ee-select-option--selected {
  font-weight: 500;
}
.ee-select-option--disabled {
  color: var(--ee-control-muted, #5f6e86);
  cursor: not-allowed;
  opacity: .6;
}
.ee-border-style-select__option {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 42px;
  gap: 12px;
  align-items: center;
  width: 100%;
}
.ee-border-style-select__sample {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  min-width: 0;
}
.ee-border-style-select__sample-line {
  width: 100%;
  border-bottom-width: 2px;
  border-bottom-color: var(--ee-control-text, #152238);
}
.ee-border-style-select__label {
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.ee-menu {
  display: flex;
  flex-direction: column;
  width: 100%;
  border: 1px solid var(--ee-control-border, #d5deea);
  border-radius: var(--ee-control-radius, 8px);
  overflow: hidden;
  background: var(--ee-control-surface, #fff);
}
.ee-menu__item {
  width: 100%;
  min-height: 36px;
  display: flex;
  align-items: center;
  padding: 8px 10px;
  border: none;
  background: transparent;
  color: var(--ee-control-text, #152238);
  font: inherit;
  text-align: left;
  cursor: pointer;
}
.ee-menu__item:hover,
.ee-menu__item--selected {
  background: rgba(11, 107, 203, .08);
}
.ee-menu__item--disabled {
  color: var(--ee-control-muted, #5f6e86);
  cursor: not-allowed;
  opacity: .6;
}
.ee-tooltip {
  pointer-events: none;
}
.ee-tooltip__content {
  padding: 8px 10px;
  color: var(--ee-control-text, #152238);
  font-size: 12px;
  line-height: 1.35;
}
.ee-tooltip--mini .ee-tooltip__content {
  padding: 6px 8px;
  font-size: 11px;
}
.ee-slider {
  width: 100%;
  accent-color: var(--ee-primary, #0b6bcb);
}
.ee-input {
  width: 100%;
  height: var(--ee-control-height, 40px);
  border: 1px solid var(--ee-control-border, #d5deea);
  border-radius: var(--ee-control-radius, 8px);
  box-sizing: border-box;
  background: var(--ee-control-surface, #fff);
  color: var(--ee-control-text, #152238);
  font-size: var(--ee-control-label-size, 15px);
  font-family: var(--ee-control-font);
  padding: 0 10px;
  outline: none;
  overflow: hidden;
}
.ee-font-family-select {
  position: relative;
  width: 100%;
}
.ee-font-family-select__trigger-content {
  display: inline-block;
  min-width: 0;
  max-width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  font-family: var(--ee-font-family-preview, var(--ee-control-font));
}
.ee-font-family-select__option-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  width: 100%;
  font-family: var(--ee-font-family-preview, var(--ee-control-font));
}
.ee-font-family-select__label {
  font-size: 14px;
  line-height: 1.2;
  white-space: nowrap;
}
.ee-font-family-select__sample {
  opacity: .7;
  font-size: 12px;
  white-space: nowrap;
}
.ee-input-unit {
  display: flex;
  align-items: stretch;
  width: 100%;
  height: var(--ee-control-height, 40px);
  box-sizing: border-box;
  border: 1px solid var(--ee-control-border, #d5deea);
  border-radius: var(--ee-control-radius, 8px);
  overflow: hidden;
  background: var(--ee-control-surface, #fff);
  font-family: var(--ee-control-font);
}
.ee-input-unit-input {
  flex: 1;
  min-width: 0;
  height: 100%;
  border: none;
  outline: none;
  background: transparent;
  border-radius: 0;
  box-shadow: none;
  padding: 0 var(--ee-control-gap, 10px);
  font-size: var(--ee-control-label-size, 15px);
  color: var(--ee-control-text, #152238);
  font-family: var(--ee-control-font);
}
.ee-input-unit-unit {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 36px;
  width: 36px;
  padding: 0;
  border-left: 1px solid var(--ee-control-border, #d5deea);
  color: var(--ee-control-muted, #5f6e86);
  font-size: 12px;
  background: var(--ee-control-surface, #fff);
  white-space: nowrap;
}
.ee-corner-toggle {
  background: transparent;
  border-color: transparent;
  color: var(--ee-control-muted, #5f6e86);
  opacity: .68;
}
.ee-corner-toggle:hover:not(:disabled),
.ee-corner-toggle:focus-visible:not(:disabled) {
  background: var(--ee-control-surface-hover, #f8fbff);
  border-color: var(--ee-control-border-hover, #c2cfe0);
  opacity: 1;
}
.ee-color {
  display: flex;
  align-items: stretch;
  width: 100%;
  height: var(--ee-control-height, 40px);
  box-sizing: border-box;
  border: 1px solid var(--ee-control-border, #d5deea);
  border-radius: var(--ee-control-radius, 8px);
  overflow: hidden;
  background: var(--ee-control-surface, #fff);
  font-family: var(--ee-control-font);
}
.ee-color__trigger {
  display: inline-flex;
  align-items: stretch;
  min-width: 0;
}
.ee-color__swatch {
  display: inline-block;
  height: 100%;
  width: 40px;
  box-sizing: border-box;
  padding: 0;
  border: none;
  border-radius: 0;
  font-size: 0;
  position: relative;
  cursor: pointer;
  background: var(--ee-control-surface, #fff);
}
.ee-color__trigger-surface {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 100%;
  box-sizing: border-box;
  padding: 0;
  border: none;
  font-size: 0;
  position: relative;
  cursor: pointer;
  background: var(--ee-control-surface, #fff);
  flex: 0 0 38px;
}
.ee-color__trigger-surface--split {
  border-right: 1px solid rgba(213, 222, 234, .72);
  border-radius: 2px 0 0 2px;
}
.ee-color__trigger-surface--rounded {
  border-radius: var(--ee-control-radius, 8px);
}
.ee-color__trigger-preview {
  position: relative;
  display: block;
  border: none;
  border-radius: inherit;
  width: 100%;
  height: 100%;
  text-align: center;
  background: var(--ee-control-surface, #fff);
}
.ee-color-swatch--split {
  border-right: 1px solid var(--ee-control-border, #d5deea);
}
.ee-color-swatch-color {
  position: relative;
  display: block;
  border: none;
  border-radius: 0;
  width: 100%;
  height: 100%;
  text-align: center;
}
.ee-color-swatch-color--transparent {
  background-image:
    linear-gradient(
      45deg,
      #d9d9d9 25%,
      transparent 25%,
      transparent 75%,
      #d9d9d9 75%,
      #d9d9d9),
    linear-gradient(
      45deg,
      #d9d9d9 25%,
      transparent 25%,
      transparent 75%,
      #d9d9d9 75%,
      #d9d9d9);
  background-position: 0 0, 4px 4px;
  background-size: 8px 8px;
}
.ee-color-input {
  flex: 1;
  height: 100%;
  border: none !important;
  border-radius: 0;
  box-shadow: none !important;
  background: transparent;
  color: var(--ee-control-text, #152238);
  font-family: var(--ee-control-font);
  padding: 0 var(--ee-control-gap, 10px);
  outline: none;
  min-width: 0;
}
.ee-color .ee-color-input {
  border: none !important;
  box-shadow: none !important;
  background: transparent !important;
}
.ee-image-uploader {
  width: 100%;
}
.ee-image-uploader__container {
  display: flex;
  flex-wrap: wrap;
}
.ee-image-uploader__row {
  width: 100%;
}
.ee-image-uploader__row-input {
  flex: 1;
}
.ee-image-uploader__icon-button {
  width: 30px;
}
.ee-image-uploader__autocomplete-item {
  display: flex;
  align-items: center;
  width: 100%;
  gap: 8px;
  border: none;
  background: transparent;
  padding: 8px 10px;
  text-align: left;
  cursor: pointer;
  color: inherit;
  border-radius: 8px;
}
.ee-image-uploader__autocomplete-item:hover {
  background: rgba(11, 107, 203, .08);
}
.ee-image-uploader__autocomplete-icon {
  width: 20px;
  height: 20px;
}
.ee-image-uploader__autocomplete-popup {
  display: flex;
  flex-direction: column;
  gap: 4px;
  min-width: 220px;
  padding: 8px;
  border: 1px solid var(--ee-control-border, #d5deea);
  border-radius: 12px;
  background: var(--ee-panel-surface, #fff);
  box-shadow: 0 12px 32px #0f172a1f;
}
.ee-image-uploader__hidden-input {
  display: none;
}
.ee-image-uploader__preview-image {
  width: 100%;
}
.ee-image-uploader__gallery-modal {
  width: 860px;
}
.ee-image-uploader__gallery-button {
  min-width: 0;
}
.ee-image-uploader__gallery-button[aria-expanded=true],
.ee-image-uploader__gallery-button--active {
  box-shadow: 0 0 0 1px #f3a33338, 0 8px 16px #f3a33324;
}
.ee-image-uploader__action-grid {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.ee-image-uploader__item {
  margin: 0 8px 8px 0;
  border-radius: 4px;
  border: 1px solid #d9d9d9;
  padding: 8px;
  width: 104px;
  height: 104px;
}
.ee-image-uploader__info {
  position: relative;
  height: 100%;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.ee-image-uploader__info:before {
  content: " ";
  position: absolute;
  z-index: 1;
  background-color: #00000080;
  transition: all .3s;
  width: 100%;
  height: 100%;
  opacity: 0;
}
.ee-image-uploader__info img {
  width: 100%;
  border: 1px solid #f2f2f2;
  transition: all .3s;
}
.ee-image-uploader__actions {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: 10;
  white-space: nowrap;
  transition: all .3s;
  opacity: 0;
}
.ee-image-uploader__actions a {
  color: #eee;
  margin: 0 4px;
}
.ee-image-uploader__actions a:hover {
  color: #fff;
}
.ee-image-uploader__info:hover:before {
  opacity: 1;
}
.ee-image-uploader__info:hover .ee-image-uploader__actions {
  opacity: 1;
}
.ee-image-uploader__upload {
  margin: 0 8px 8px 0;
  border: 1px dotted;
  width: 104px;
  height: 104px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  cursor: pointer;
}
.ee-image-uploader__compact-wrap {
  width: 100%;
  min-height: var(--ee-control-height, 40px);
  display: flex;
  align-items: center;
  gap: 0;
  border: 1px solid var(--ee-control-border, #d5deea);
  border-radius: var(--ee-control-radius, 8px);
  overflow: hidden;
  background: var(--ee-control-surface, #fff);
}
.ee-image-uploader__compact-preview {
  width: 40px;
  height: 40px;
  padding: 0;
  border: 0;
  background: transparent;
  appearance: none;
  border-right: 1px solid var(--ee-control-border, #d5deea);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
.ee-image-uploader__compact-preview img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.ee-image-uploader__compact-placeholder {
  color: var(--ee-control-muted, #5f6e86);
  display: flex;
  align-items: center;
  justify-content: center;
}
.ee-image-uploader__compact-input {
  width: 100%;
  flex: 1;
  border: none !important;
  border-radius: 0 !important;
  box-shadow: none !important;
  background: transparent !important;
}
.ee-image-uploader__compact-gallery {
  width: 40px;
  height: 40px;
  flex: 0 0 40px;
  padding: 0;
  border: 0;
  border-left: 1px solid var(--ee-control-border, #d5deea);
  background: transparent;
  color: var(--ee-control-muted, #5f6e86);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  appearance: none;
}
.ee-image-uploader__compact-gallery:hover,
.ee-image-uploader__compact-gallery:focus-visible {
  background: rgba(11, 107, 203, .08);
}
.ee-image-uploader__compact-actions {
  display: none;
}
.ee-image-uploader__compact-actions-below {
  display: flex;
  justify-content: flex-start;
  gap: 8px;
  width: 100%;
  margin-top: 8px;
}
.ee-image-uploader__gallery-toolbar {
  display: flex;
  gap: 12px;
  margin-bottom: 16px;
}
.ee-image-uploader__gallery-toolbar-actions {
  display: flex;
  gap: 8px;
}
.ee-image-uploader__gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(152px, 1fr));
  gap: 12px;
  min-height: 120px;
}
.ee-image-uploader__gallery-card {
  border: 1px solid var(--ee-control-border, #d5deea);
  border-radius: 10px;
  padding: 8px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  background: #fff;
}
.ee-image-uploader__gallery-select {
  display: block;
  border: 0;
  background: #f8fafc;
  border-radius: 8px;
  padding: 0;
  overflow: hidden;
  cursor: pointer;
  aspect-ratio: 1;
}
.ee-image-uploader__gallery-select img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.ee-image-uploader__gallery-meta {
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-height: 38px;
}
.ee-image-uploader__gallery-name {
  font-size: 12px;
  font-weight: 600;
  color: #111827;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.ee-image-uploader__gallery-date {
  font-size: 11px;
  color: #6b7280;
}
.ee-image-uploader__gallery-empty {
  grid-column: 1/-1;
  padding: 32px 0;
  text-align: center;
  color: #6b7280;
}
.ee-image-uploader__gallery-loading,
.ee-image-uploader__gallery-footer {
  display: flex;
  justify-content: center;
  margin-top: 16px;
}
.ee-select--compact {
  height: var(--ee-control-height, 40px);
  min-height: var(--ee-control-height, 40px);
}
.ee-select--compact .ee-select-trigger {
  font-size: 14px;
  padding: 0 10px;
}
.ee-border-style-select__option {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  width: 100%;
}
.ee-border-style-select__label {
  flex: 1 1 auto;
  min-width: 0;
}
.ee-border-style-select__sample {
  flex: 0 0 56px;
  display: flex;
  align-items: center;
}
.ee-border-style-select__sample-line {
  display: block;
  width: 100%;
  border-bottom-width: 2px;
  border-bottom-color: var(--ee-control-heading-color, #667085);
}
.ee-border-style-select__option--dashed .ee-border-style-select__sample-line {
  border-bottom-style: dashed;
}
.ee-border-style-select__option--dotted .ee-border-style-select__sample-line {
  border-bottom-style: dotted;
}
.ee-border-style-select__option--solid .ee-border-style-select__sample-line {
  border-bottom-style: solid;
}
.ee-border-style-select__option--double .ee-border-style-select__sample-line {
  border-bottom-style: double;
}
.ee-border-style-select__option--ridge .ee-border-style-select__sample-line {
  border-bottom-style: ridge;
}
.ee-border-style-select__option--groove .ee-border-style-select__sample-line {
  border-bottom-style: groove;
}
.ee-border-style-select__option--inset .ee-border-style-select__sample-line {
  border-bottom-style: inset;
}
.ee-border-style-select__option--outset .ee-border-style-select__sample-line {
  border-bottom-style: outset;
}
.ee-select--full {
  width: 100%;
  flex: 1 1 auto;
  min-width: 0;
}
.ee-panel-header {
  border: 1px solid var(--ee-control-border, #d5deea);
  border-top: none;
  border-bottom: none;
  padding: 12px 24px;
  color: var(--ee-control-heading-color, #667085);
}
.ee-panel-body {
  padding: 0;
}
.ee-panel-shell {
  display: flex;
  flex-direction: column;
  min-height: 0;
  height: 100%;
}
.ee-panel-shell__header {
  border: 1px solid var(--ee-control-border, #d5deea);
  border-top: none;
  border-bottom: none;
  border-right: none;
  border-left: none;
  padding: 12px 24px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  color: var(--ee-control-heading-color, #667085);
  box-sizing: border-box;
}
.ee-panel-shell__title {
  min-width: 0;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--ee-control-text, #152238);
  font-family: var(--ee-control-font);
  font-size: 15px;
  font-weight: 500;
  line-height: 1.2;
}
.ee-panel-shell__actions {
  margin-left: auto;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.ee-panel-shell__body {
  padding: 0;
  flex: 1 1 auto;
  min-height: 0;
}
.ee-attributes-panel-wrapper {
  height: 100%;
  min-height: 0;
  display: flex;
  flex-direction: column;
}
.ee-attributes-panel-wrapper__body {
  flex: 1 1 auto;
  min-height: 0;
  display: flex;
  flex-direction: column;
}
.ee-attributes-panel-wrapper__body--padding-lg {
  padding: 20px;
}
.ee-panel-eye {
  color: var(--ee-control-heading-color, #667085);
  cursor: pointer;
  display: inline-flex;
  opacity: .7;
  font-size: 18px;
}
.ee-block-preview {
  position: relative;
}
.ee-block-preview--icon {
  min-height: 132px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border-radius: 12px;
  background:
    linear-gradient(
      180deg,
      #eef4ff 0%,
      #e3ebff 100%);
}
.ee-block-preview__iconCard {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 8px;
  place-items: center;
  padding: 16px 18px;
  border: 1px solid rgba(11, 107, 203, .14);
  border-radius: 16px;
  background: rgba(255, 255, 255, .8);
  box-shadow: 0 10px 28px #0f172a14;
}
.ee-block-preview__icon {
  color: #0b6bcb;
  font-size: 18px;
}
.ee-block-preview__label {
  color: #152238;
  font-size: 13px;
  font-weight: 700;
}
.ee-block-preview__overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
}
.ee-inline-icon-label {
  display: inline-flex;
  align-items: center;
  gap: 4px;
}
.ee-block-preview--clip {
  overflow: hidden;
}
.ee-block-preview__full {
  width: 100%;
}
.ee-block-preview__indent {
  padding-left: 20px;
}
.ee-merge-tags {
  color: var(--ee-control-text, #152238);
}
.ee-merge-tags__node-button {
  width: 100%;
}
.ee-text-style--regular {
  font-weight: 400;
}
.ee-icon--heading {
  color: var(--ee-control-heading-color, #667085);
}
.ee-textarea {
  width: 100%;
  min-height: calc(var(--ee-control-height, 40px) * 5);
  box-sizing: border-box;
  border: 1px solid var(--ee-control-border) !important;
  border-radius: var(--ee-control-radius) !important;
  box-shadow: none !important;
  background: var(--ee-control-surface) !important;
  color: var(--ee-control-text) !important;
  font-family: var(--ee-control-font) !important;
  font-size: var(--ee-control-label-size) !important;
  line-height: 1.2 !important;
}
.ee-textarea-input {
  width: 100%;
  min-height: calc(var(--ee-control-height, 40px) * 5);
  box-sizing: border-box;
  border: none !important;
  outline: none !important;
  box-shadow: none !important;
  background: transparent !important;
  padding: calc(var(--ee-control-gap) + 2px) var(--ee-control-gap) !important;
  color: inherit !important;
  font: inherit !important;
  resize: vertical;
}
.ee-add-to-collection-modal {
  z-index: 2000;
}
.ee-edit-grid-tab {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.ee-edit-grid-tab__item {
  overflow: hidden;
  border: 1px solid var(--ee-control-border, #d5deea);
  border-radius: 10px;
  background: var(--ee-panel-surface, #fff);
}
.ee-edit-grid-tab__item-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 10px 12px;
  border-bottom: 1px solid var(--ee-control-border, #d5deea);
  font-size: 13px;
  font-weight: 500;
}
.ee-edit-grid-tab__item-title {
  min-width: 0;
}
.ee-edit-grid-tab__actions {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.ee-edit-grid-tab__item-body {
  padding: 12px;
}
.ee-html-editor {
  display: flex;
  flex-direction: column;
  width: min(1200px, 100vw - 48px);
  max-width: 100%;
  max-height: calc(100vh - 48px);
}
.ee-html-editor__header {
  padding: 12px 16px;
  border-bottom: 1px solid var(--ee-control-border, #d5deea);
  flex: 0 0 auto;
}
.ee-html-editor__body {
  display: flex;
  flex: 1 1 auto;
  min-height: 0;
  height: calc(100vh - 132px);
}
.ee-html-editor__editor,
.ee-html-editor__preview {
  flex: 1 1 0;
  min-width: 0;
  min-height: 0;
}
.ee-html-editor__preview {
  overflow: auto;
  padding: 10px;
  border-left: 1px solid var(--ee-control-border, #d5deea);
}
.ee-btn--clean {
  border-radius: 8px;
  color: var(--ee-control-muted, #5f6e86);
  background: transparent;
  border: 1px solid transparent;
  height: 20px;
  min-height: 20px;
  padding: 0 8px;
  font-size: 12px;
  line-height: 1;
  font-weight: 400;
  opacity: .68;
}
.ee-btn--clean .ee-btn__content {
  gap: 4px;
}
.ee-btn--clean:hover:not(:disabled),
.ee-btn--clean:focus-visible:not(:disabled) {
  background: var(--ee-control-surface-hover, #f8fbff);
  border-color: var(--ee-control-border-hover, #c2cfe0);
  opacity: 1;
}
.ee-btn--clean[disabled],
.ee-btn--clean[disabled]:hover,
.ee-btn--clean[disabled]:focus,
.ee-btn--clean[disabled]:active {
  background: transparent;
  border-color: transparent;
  color: var(--ee-control-muted, #5f6e86);
  opacity: .24;
}
.ee-tab-warningTrigger {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-width: 0;
  max-width: 100%;
  height: 38px;
  padding: 0 12px;
  border: 1px solid rgb(244, 196, 118);
  border-radius: 999px;
  background:
    linear-gradient(
      180deg,
      #fff8eb 0%,
      #fff3dd 100%);
  color: #8a5a12;
  font-size: 12px;
  font-weight: 700;
  line-height: 1;
  cursor: pointer;
  overflow: hidden;
  box-shadow: 0 1px #ffffffd9 inset;
}
.ee-tab-warningTrigger:hover {
  background:
    linear-gradient(
      180deg,
      #fff5df 0%,
      #ffeecb 100%);
}
.ee-tab-warningTrigger:focus-visible {
  outline: none;
  box-shadow: 0 0 0 2px #d0841b2e;
}
.ee-tab-warningTrigger__summary {
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.ee-tab-warningTrigger__action {
  flex: 0 0 auto;
  color: #9a6115;
  opacity: .9;
}
.ee-tab-warningDialog__body {
  display: flex;
  flex-direction: column;
  gap: 14px;
  color: #152238;
  padding: 14px 16px 16px;
  box-sizing: border-box;
}
.ee-tab-warningOverlay {
  position: fixed;
  inset: 0;
  z-index: 2147483646;
  background: rgba(13, 24, 39, .32);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
}
.ee-tab-warningDialog {
  width: min(580px, 100%);
  max-height: min(78vh, 720px);
  overflow: auto;
  border-radius: 20px;
  background: #fff;
  border: 1px solid #d5deea;
  box-shadow: 0 28px 80px #10182838;
  padding: 8px;
  box-sizing: border-box;
}
.ee-tab-warningDialog__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 16px 12px;
  border-bottom: 1px solid #edf1f5;
  background:
    linear-gradient(
      180deg,
      #ffffff 0%,
      #fbfcfe 100%);
  border-top-left-radius: 14px;
  border-top-right-radius: 14px;
}
.ee-tab-warningDialog__headerCopy {
  display: flex;
  flex-direction: column;
  gap: 4px;
  min-width: 0;
}
.ee-tab-warningDialog__eyebrow {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: #8a5a12;
}
.ee-tab-warningDialog__title {
  font-size: 17px;
  font-weight: 800;
  color: #152238;
}
.ee-tab-warningDialog__close {
  width: 32px;
  height: 32px;
  border: 1px solid #d5deea;
  border-radius: 999px;
  background: #fff;
  color: #5f6e86;
  font-size: 18px;
  line-height: 1;
  cursor: pointer;
}
.ee-tab-warningDialog__close:hover {
  background: #f8fbff;
  color: #152238;
}
.ee-tab-warningDialog__lead,
.ee-tab-warningDialog__footer {
  margin: 2px 0 0;
  line-height: 1.45;
  font-size: 14px;
  color: #475467;
}
.ee-tab-warningDialog__summaryRow {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  flex-wrap: wrap;
}
.ee-tab-warningDialog__summaryBadge {
  flex: 0 0 auto;
  padding: 6px 10px;
  border-radius: 999px;
  background: #fff7e8;
  color: #8a5a12;
  border: 1px solid rgba(244, 196, 118, .55);
  font-size: 12px;
  font-weight: 700;
  line-height: 1;
}
.ee-tab-warningDialog__list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.ee-tab-warningDialog__item {
  padding: 14px 16px 15px;
  border: 1px solid #d5deea;
  border-radius: 14px;
  background:
    linear-gradient(
      180deg,
      #ffffff 0%,
      #fbfcfe 100%);
  box-shadow: inset 0 0 0 1px #ffffff8c;
}
.ee-tab-warningDialog__itemTitle {
  font-weight: 800;
  margin-bottom: 6px;
  font-size: 15px;
}
.ee-tab-warningDialog__itemText {
  line-height: 1.45;
  font-size: 14px;
  color: #344054;
}
.ee-tab-warningDialog__itemMeta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 10px;
}
.ee-tab-warningDialog__pill {
  display: inline-flex;
  align-items: center;
  min-height: 24px;
  padding: 0 8px;
  border-radius: 999px;
  background: #eaf2ff;
  color: #2451a3;
  font-size: 12px;
  font-weight: 600;
}
.ee-tab-warningDialog__pill--soft {
  background: #f2f5f9;
  color: #667085;
}
.ee-tab-warningDialog__footer {
  padding: 12px 14px;
  border-radius: 12px;
  background: #f8fbff;
  border: 1px solid #e6eefb;
  color: #344054;
  font-weight: 600;
}
._tree_4kp2l_1 {
  width: 100%;
  display: flex;
  flex-direction: column;
}
#BlockLayerManager {
  padding: 8px;
  box-sizing: border-box;
}
._title_4kp2l_12 {
  display: flex;
  flex: 1;
  justify-content: space-between;
  align-items: center;
  position: relative;
  min-height: 28px;
  padding-left: 4px;
}
._titleIcon_4kp2l_22 {
  font-size: 12px;
  color: var(--ee-control-heading-color, #667085);
  flex: 0 0 auto;
}
._titleText_4kp2l_28 {
  overflow: hidden;
  white-space: nowrap;
  width: 5em;
  text-overflow: ellipsis;
  min-width: 0;
  color: var(--ee-control-heading-color, #667085);
}
._titleTextInner_4kp2l_37 {
  color: inherit;
}
._dragCluster_4kp2l_41 {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-left: 8px;
  color: var(--ee-control-heading-color, #667085);
  opacity: 1 !important;
}
._dragDots_4kp2l_50 {
  display: inline-flex;
  align-items: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity .12s ease;
}
#BlockLayerManager .block-layer-eye-toggle {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  background: transparent;
  padding: 0;
  margin: 0 0 0 8px;
  color: var(--ee-control-heading-color, #667085);
  cursor: pointer;
  flex: 0 0 auto;
}
#BlockLayerManager .block-layer-eye-toggle--visible {
  opacity: 0;
  visibility: hidden;
  transition: opacity .12s ease;
}
#BlockLayerManager [data-tree-idx]:hover .block-layer-eye-toggle--visible,
#BlockLayerManager .block-layer-eye-toggle--hidden,
#BlockLayerManager [data-tree-idx]:hover .dragDots {
  opacity: 1;
  visibility: visible;
}
#BlockLayerManager [data-tree-idx][data-selected=true] .titleIcon,
#BlockLayerManager [data-tree-idx][data-selected=true] .titleTextInner {
  color: rgb(var(--primary-7));
  font-weight: 400;
}
._tree_1vtr2_1 {
  width: 100%;
  display: flex;
  flex-direction: column;
}
._node_1vtr2_7 {
  width: 100%;
}
._row_1vtr2_11 {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 28px;
  border-radius: 0;
  border: 1px solid transparent;
  transition: background-color .12s ease;
}
._row_1vtr2_11:hover {
  background: rgba(161, 172, 188, .12);
  border-radius: 3px;
}
._rowSelected_1vtr2_26:hover {
  background: rgba(22, 119, 255, .12);
}
._rowSelected_1vtr2_26 {
  background: rgba(22, 119, 255, .12);
  border: 1px solid rgba(22, 119, 255, .25);
  box-shadow: inset 3px 0 0 rgb(var(--primary-6));
  border-radius: 3px;
}
._rowDropTop_1vtr2_37,
._rowDropBottom_1vtr2_38,
._rowDropInside_1vtr2_39 {
  background: transparent;
}
[data-selected=true] ._dragIcon_1vtr2_43 {
  color: rgb(var(--primary-7));
}
[data-selected=true] ._switcherIcon_1vtr2_47 {
  border-left-color: rgb(var(--primary-7));
}
._rowDropTop_1vtr2_37:before,
._rowDropBottom_1vtr2_38:after,
._rowDropInside_1vtr2_39:after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--selected-color, rgb(22, 93, 255));
  border-radius: 999px;
  z-index: 2;
  pointer-events: none;
}
._rowDropTop_1vtr2_37:before {
  top: 0;
}
._rowDropBottom_1vtr2_38:after {
  bottom: 0;
}
._rowDropInside_1vtr2_39:after {
  top: 50%;
  transform: translateY(-50%);
}
._switcher_1vtr2_47 {
  width: 28px;
  height: 28px;
  border: 0;
  background: transparent;
  padding: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  flex: 0 0 28px;
}
._switcher_1vtr2_47:hover {
  background: rgba(255, 255, 255, .45);
}
._switcherIcon_1vtr2_47 {
  width: 0;
  height: 0;
  border-top: 5px solid transparent;
  border-bottom: 5px solid transparent;
  border-left: 6px solid var(--ee-control-heading-color, #667085);
  transition: transform .15s ease;
}
._switcherIconOpen_1vtr2_104 {
  transform: rotate(90deg);
}
._switcherPlaceholder_1vtr2_108 {
  width: 28px;
  height: 28px;
  flex: 0 0 28px;
}
._title_1vtr2_114 {
  flex: 1 1 auto;
  min-width: 0;
  display: flex;
  align-items: center;
}
._dragIcon_1vtr2_43 {
  margin-left: auto;
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
}
._dragIconPlaceholder_1vtr2_128 {
  margin-left: auto;
  flex: 0 0 24px;
}
._children_1vtr2_133 {
  display: flex;
  flex-direction: column;
}
._wrap_xmhxw_1 {
  position: fixed;
  left: 500px;
  top: 200px;
  z-index: 9999;
  background-color: var(--ee-control-surface, #ffffff);
  box-shadow: 1px 1px 4px #0000001a;
  border-radius: 8px;
  overflow: hidden;
  font-weight: 400;
}
._wrap_xmhxw_1 ._listItem_xmhxw_12 {
  padding: 5px 15px;
  display: flex;
  flex-wrap: nowrap;
  cursor: default !important;
}
._wrap_xmhxw_1 ._listItem_xmhxw_12:hover {
  background-color: var(--ee-control-surface-hover, #f8fbff);
}
._contextmenuMark_xmhxw_22 {
  position: fixed;
  width: 100vw;
  height: 100vh;
  left: 0;
  top: 0;
  z-index: 9998;
}
._colorPicker_1g5it_1 .sketch-picker .flexbox-fix:nth-child(3) {
  display: none !important;
}
._colorPickerContent_1g5it_5 {
  width: 202px;
  padding-top: 12px;
  padding-bottom: 12px;
}
._colorPickerContentSection_1g5it_11 {
  padding: 0 16px;
}
._colorPickerContentSwatches_1g5it_15 {
  display: grid;
  grid-template-columns: repeat(6, 20px);
  gap: 6px;
  justify-content: space-between;
}
._colorPickerContentSwatch_1g5it_15 {
  border: 1px solid var(--ee-control-border, #d5deea);
  display: inline-flex;
  height: 20px;
  width: 20px;
  box-sizing: border-box;
  padding: 4px;
  border-radius: 4px;
  position: relative;
  cursor: pointer;
}
._colorPickerContentSwatchTransparent_1g5it_34 {
  background-image:
    linear-gradient(
      45deg,
      #d9d9d9 25%,
      transparent 25%,
      transparent 75%,
      #d9d9d9 75%,
      #d9d9d9),
    linear-gradient(
      45deg,
      #d9d9d9 25%,
      transparent 25%,
      transparent 75%,
      #d9d9d9 75%,
      #d9d9d9);
  background-position: 0 0, 4px 4px;
  background-size: 8px 8px;
}
._colorPickerContentPickerRow_1g5it_40 {
  padding: 8px 16px 0;
}
._colorPickerContentPickerButton_1g5it_44 {
  display: flex;
  box-sizing: border-box;
  align-items: center;
  justify-content: center;
  color: #333;
  font-size: 12px;
  text-align: center;
  padding: 0 10px;
  border: 1px solid var(--ee-control-border, #d5deea);
  border-radius: 6px;
  background: #fff;
  height: 32px;
  cursor: pointer;
  user-select: none;
  width: 100%;
  position: relative;
}
._colorPickerContentPickerButtonLabel_1g5it_65 {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
}
._colorPickerContentPickerInput_1g5it_72 {
  position: absolute;
  inset: 0;
  opacity: 0;
  cursor: pointer;
  width: 100%;
  height: 100%;
}
._trigger_dhryf_1 {
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  line-height: 1;
}
._emptyState_rtspl_1 {
  margin-top: 200px;
  padding: 0 50px;
}
._richTextHost_rtspl_6 {
  position: absolute;
}
._fullWidthField_rtspl_10 {
  width: 100%;
  min-width: 0;
}
._fontFamilyInput_rtspl_15 {
  padding-left: 10px;
  padding-right: 10px;
}
._collapse_1sgwm_1 {
  width: 100%;
  display: flex;
  flex-direction: column;
}
._item_1sgwm_7 {
  border-top: none;
}
._header_1sgwm_11 {
  width: 100%;
  box-sizing: border-box;
  display: flex;
  align-items: center;
  gap: 10px;
  border: none;
  border-radius: 0;
  color: inherit;
  font: inherit;
  text-align: left;
  min-height: 40px;
  padding: 8px 14px;
  cursor: pointer;
  outline: none;
  border-top: none;
  border-bottom: 1px solid var(--ee-control-border, #d5deea);
  background: #ebeff5;
}
._header_1sgwm_11:hover {
  background: #e6ebf2;
}
._icon_1sgwm_36 {
  position: relative;
  flex: 0 0 auto;
  width: 16px;
  height: 16px;
  transform: rotate(0);
  transition: transform .15s ease;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 16 16'%3E%3Cpath d='M5 3.75L11 8L5 12.25Z' fill='rgb(128, 138, 154)'/%3E%3C/svg%3E");
}
._iconOpen_1sgwm_49 {
  transform: rotate(90deg);
}
._headerText_1sgwm_53 {
  flex: 1 1 auto;
  min-width: 0;
  font-weight: 400;
  color: var(--ee-control-heading-color, #667085);
}
._extra_1sgwm_60 {
  display: flex;
  align-items: center;
  flex: 0 0 auto;
  margin-left: auto;
}
._content_1sgwm_67 {
  background: #f2f5f9;
  padding: 12px 14px;
  border-bottom: 1px solid var(--ee-control-border, #d5deea);
}
._item_1sgwm_7:last-child ._content_1sgwm_67 {
  border-bottom: none;
}
._root_74625_1 {
  display: flex;
  width: 100%;
  overflow: hidden;
  min-width: 0;
  height: var(--ee-layout-height);
}
._fullscreen_74625_9 ._panelCard_74625_9 {
  border-radius: 0;
}
._SimpleLayout_74625_13 *::-webkit-scrollbar {
  -webkit-appearance: none;
  width: 6px !important;
}
._SimpleLayout_74625_13 *::-webkit-scrollbar-thumb {
  background-color: #00000038;
  border-radius: 999px;
  box-shadow: none;
  -webkit-box-shadow: none;
}
._customScrollBar_74625_24 {
  overflow: scroll;
}
._customScrollBar_74625_24::-webkit-scrollbar {
  -webkit-appearance: none;
  width: 6px !important;
}
._customScrollBar_74625_24::-webkit-scrollbar-thumb {
  background-color: #00000038;
  border-radius: 999px;
  box-shadow: none;
  -webkit-box-shadow: none;
}
._customScrollBarV2_74625_38 {
  overflow: scroll;
}
._customScrollBarV2_74625_38::-webkit-scrollbar {
  -webkit-appearance: none;
  width: 6px !important;
}
._customScrollBarV2_74625_38::-webkit-scrollbar-thumb {
  background-color: #00000038;
  border-radius: 999px;
  box-shadow: none;
  -webkit-box-shadow: none;
}
._leftRail_74625_52 {
  width: 120px;
  padding-right: 0;
  margin-top: -1px;
  z-index: 5;
  background: #f2f5f9;
  overflow: visible;
}
._leftScroll_74625_61 {
  flex: 1 1 auto;
  min-height: 0;
  overflow-y: auto;
  overflow-x: visible;
  position: relative;
  z-index: 6;
}
._canvasRail_74625_70 {
  flex: 1;
  min-width: 0;
  overflow: hidden;
  margin-top: -1px;
}
._rightSide_74625_77 {
  width: 340px;
  min-width: 300px;
  max-width: 340px;
  background: #f2f5f9;
  margin-top: -1px;
  display: flex;
  flex-direction: column;
  min-height: 0;
  overflow: hidden;
}
._panelCard_74625_9 {
  height: 100%;
  background: #f2f5f9;
  border: none;
  display: flex;
  flex-direction: column;
  min-height: 0;
  overflow: hidden;
}
._panelScroll_74625_99 {
  height: 100%;
  overflow-y: auto;
}
._layoutTabs_74625_104 {
  flex: 1 1 auto;
  height: 100%;
  background: #f2f5f9;
  min-height: 0;
}
._tabTitle_74625_111 {
  height: 60px;
  line-height: 60px;
}
._promptPanel_74625_116 {
  padding: 12px;
  display: grid;
  gap: 12px;
}
._promptHeader_74625_122 {
  display: flex;
  align-items: center;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--ee-control-border, #d5deea);
}
._promptTitle_74625_129 {
  margin-left: 8px;
  font-size: 13px;
  font-weight: 400;
  color: var(--ee-control-heading-color, #667085);
}
._promptBody_74625_136 {
  display: grid;
  gap: 10px;
}
._promptTextarea_74625_141 {
  width: 100%;
}
._promptButton_74625_145 {
  min-width: 120px;
}
._promptActions_74625_149 {
  display: flex;
  justify-content: flex-end;
  margin-top: 12px;
}
._promptError_74625_155 {
  color: var(--color-danger, rgb(214, 45, 32));
  font-size: 12px;
}
._promptHint_74625_160 {
  color: var(--color-text-2, rgb(102, 112, 133));
  font-size: 12px;
}
._promptIntro_74625_165 {
  display: block;
  margin-bottom: 8px;
  font-size: 13px;
  color: var(--ee-control-muted, #5f6e86);
}
._htmlEditorSaveButton_74625_172 {
  background-color: var(--ee-primary, #0b6bcb);
  color: var(--ee-control-surface, #fff);
  border: 1px solid var(--ee-primary, #0b6bcb);
  border-radius: 8px;
  padding: 10px 14px;
  font-size: 15px;
  font-weight: 600;
  box-shadow: none;
}
._htmlEditorLoading_74625_183 {
  height: 100%;
  width: 100%;
  display: flex;
  align-items: center;
  background-color: #263238;
  justify-content: center;
  font-size: 24px;
  color: #fff;
}
._htmlEditorPreview_74625_194 {
  margin: auto;
}
._htmlEditorPreviewWidth_74625_198 {
  width: min(var(--ee-html-editor-width, 600px), 100%);
  max-width: 100%;
  box-sizing: border-box;
}
._configurationDrawerShell_74625_204 {
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  padding: 0;
  background: var(--ee-control-surface, #ffffff);
  box-sizing: border-box;
}
.easy-email-extensions-Tools-Popover {
  padding: 0;
}
.easy-email-extensions-Tools-Popover.rich-text-toolbar-popover--merge-tags {
  z-index: 10;
}
.easy-email-extensions-Tools-Popover.rich-text-toolbar-popover--merge-tags {
  background-color: var(--color-bg-5);
}
.rich-text-toolbar-popover__content {
  padding: 12px 14px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  color: var(--ee-control-heading-color, #667085);
}
.rich-text-toolbar-popover__link-content {
  width: 360px;
  min-width: 360px;
  max-width: min(420px, calc(100vw - 24px));
}
.rich-text-toolbar-popover__switch-row.ee-control-group {
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  gap: 8px;
  min-height: 32px;
}
.rich-text-toolbar-popover__scroll {
  max-width: 150px;
  max-height: 350px;
  overflow-y: auto;
  overflow-x: hidden;
}
.rich-text-toolbar-popover__menu {
  border: none;
  padding: 0;
}
.rich-text-toolbar-popover__menu-item {
  line-height: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.rich-text-toolbar-popover__menu-sample {
  opacity: .62;
  font-size: 12px;
  font-family: inherit;
  white-space: nowrap;
}
.rich-text-toolbar-popover__heading-menu {
  width: 248px;
  min-width: 248px;
  border: none;
  padding: 6px;
}
.rich-text-toolbar-popover__text-style-content {
  display: flex;
  flex-direction: column;
  gap: 10px;
  width: 268px;
  min-width: 268px;
  padding: 6px;
  box-sizing: border-box;
  max-height: 360px;
  overflow-y: auto;
}
.rich-text-toolbar-popover__text-style-section {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.rich-text-toolbar-popover__text-style-divider {
  height: 1px;
  background: rgba(213, 222, 234, .9);
}
.rich-text-toolbar-popover__text-style-heading-menu {
  width: 100%;
  min-width: 0;
  padding: 0;
}
.rich-text-toolbar-popover__text-style-size-menu {
  width: 100%;
}
.rich-text-toolbar-popover__text-style-size-item {
  min-height: 32px;
  padding-top: 6px;
  padding-bottom: 6px;
}
.rich-text-toolbar-popover__heading-item {
  min-height: 38px;
  height: auto;
  padding: 7px 9px;
  border-radius: 8px;
  line-height: 1.2;
  display: flex;
  justify-content: space-between;
  gap: 14px;
}
.rich-text-toolbar-popover__heading-item:hover {
  background: rgba(11, 107, 203, .08);
}
.rich-text-toolbar-popover__heading-preview {
  color: #152238;
  font-weight: 400;
  letter-spacing: -.01em;
  white-space: nowrap;
}
.rich-text-toolbar-popover__text-style-default-item .rich-text-toolbar-popover__heading-preview,
.rich-text-toolbar-popover__text-style-default-item .rich-text-toolbar-popover__heading-size {
  color: #98a2b3;
}
.rich-text-toolbar-popover__text-style-heading-item .rich-text-toolbar-popover__heading-preview {
  font-weight: 600;
}
.rich-text-toolbar-popover__heading-size {
  color: #667085;
  font-size: 12px;
  white-space: nowrap;
  flex-shrink: 0;
}
.rich-text-toolbar__text-style-button {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.rich-text-toolbar__text-style-badge {
  position: absolute;
  right: -7px;
  bottom: -7px;
  min-width: 12px;
  height: 12px;
  padding: 0 2px;
  border-radius: 999px;
  background: #0b6bcb;
  color: #fff;
  border: .5px solid #0b6bcb;
  font-size: 7px;
  line-height: 12px;
  text-align: center;
  pointer-events: none;
  box-sizing: border-box;
}
.rich-text-toolbar-popover__link-label {
  color: var(--ee-control-heading-color, #667085);
}
.rich-text-toolbar-font-family-popup {
  display: flex;
  flex-direction: column;
  gap: 4px;
  overflow-y: auto;
  overflow-x: hidden;
  padding: 8px;
  border: 1px solid var(--ee-control-border, #d5deea);
  border-radius: 10px;
  background: var(--ee-control-surface, #ffffff);
  box-shadow: 0 12px 30px #1522381f;
}
.rich-text-toolbar-font-family-popup__item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  width: 100%;
  min-height: 34px;
  padding: 6px 10px;
  border: 0;
  border-radius: 8px;
  background: transparent;
  color: #1d2b40;
  cursor: pointer;
  text-align: left;
  transition: background-color .15s ease, color .15s ease;
}
.rich-text-toolbar-font-family-popup__item:hover,
.rich-text-toolbar-font-family-popup__item--active {
  background: rgba(84, 131, 255, .12);
}
.rich-text-toolbar-font-family-popup__label {
  font-size: 14px;
  line-height: 1.2;
  white-space: nowrap;
}
.rich-text-toolbar-font-family-popup__sample {
  opacity: .7;
  font-size: 12px;
  white-space: nowrap;
}
.easy-email-extensions-Tools-Popover *::-webkit-scrollbar {
  -webkit-appearance: none;
  width: 5px;
}
.easy-email-extensions-Tools-Popover *::-webkit-scrollbar-thumb {
  border-radius: 5px;
  background-color: #00000080;
  box-shadow: 0 0 1px #ffffff80;
  -webkit-box-shadow: 0 0 1px rgba(255, 255, 255, .5);
}
.ee-rich-text-bottom-panel {
  position: absolute;
  left: 50%;
  bottom: 40px;
  transform: translate(-50%);
  display: inline-flex;
  align-items: center;
  gap: 2px;
  padding: 8px 10px;
  border: 1px solid #d5deea;
  border-radius: 12px;
  background: #fff;
  box-shadow: 0 12px 32px #15223824;
  pointer-events: auto;
  z-index: 102;
}
.ee-rich-text-bottom-panel .rich-text-toolbar {
  display: inline-flex;
  flex-wrap: nowrap;
  align-items: center;
}
.ee-rich-text-bottom-panel .rich-text-toolbar__inner {
  display: inline-flex;
  align-items: center;
}
.ee-rich-text-bottom-panel .rich-text-toolbar__group {
  display: inline-flex;
  align-items: center;
  padding: 1px;
  border-radius: 2px;
  transition: background-color .1s linear;
}
.ee-rich-text-bottom-panel .rich-text-toolbar__group:hover,
.ee-rich-text-bottom-panel .rich-text-toolbar__group--active {
  background-color: #eef2f7;
}
.ee-rich-text-bottom-panel .easy-email-extensions-emailToolItem {
  color: #152238;
  width: 30px;
  height: 30px;
}
.ee-rich-text-bottom-panel .easy-email-extensions-emailToolItem:hover:not(.easy-email-extensions-emailToolItem-active) {
  color: #0b6bcb;
  background: #edf5ff;
  box-shadow: inset 0 0 0 1px #0b6bcb29;
}
.ee-rich-text-bottom-panel .easy-email-extensions-emailToolItem-active:hover,
.ee-rich-text-bottom-panel .easy-email-extensions-emailToolItem-active {
  background: #0b6bcb;
  color: #fff;
  box-shadow: 0 6px 16px #0b6bcb38;
}
.ee-rich-text-bottom-panel .easy-email-extensions-emailToolItem .rich-text-toolbar__color-button {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 14px;
  height: 14px;
}
.ee-rich-text-bottom-panel .easy-email-extensions-emailToolItem .rich-text-toolbar__font-size-button,
.ee-rich-text-bottom-panel .easy-email-extensions-emailToolItem .rich-text-toolbar__text-style-button {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.ee-rich-text-bottom-panel .easy-email-extensions-emailToolItem .rich-text-toolbar__font-size-badge,
.ee-rich-text-bottom-panel .easy-email-extensions-emailToolItem .rich-text-toolbar__text-style-badge {
  position: absolute;
  right: -7px;
  bottom: -7px;
  min-width: 12px;
  height: 12px;
  padding: 0 2px;
  border-radius: 999px;
  background: #fff;
  color: #10233f;
  border: .5px solid #000;
  font-size: 7px;
  line-height: 12px;
  text-align: center;
  pointer-events: none;
  box-sizing: border-box;
}
.ee-rich-text-bottom-panel .easy-email-extensions-emailToolItem .rich-text-toolbar__font-size-badge--active,
.ee-rich-text-bottom-panel .easy-email-extensions-emailToolItem .rich-text-toolbar__text-style-badge {
  background: #0b6bcb;
  color: #fff;
  border-color: #0b6bcb;
}
.ee-rich-text-bottom-panel .easy-email-extensions-emailToolItem .rich-text-toolbar__heading-button {
  display: inline-flex;
  align-items: center;
  gap: 4px;
}
.ee-rich-text-bottom-panel .easy-email-extensions-emailToolItem .rich-text-toolbar__heading-button-label {
  font-size: 8px;
  line-height: 1;
  letter-spacing: .04em;
  opacity: .7;
  text-transform: uppercase;
}
.ee-rich-text-bottom-panel .easy-email-extensions-emailToolItem .rich-text-toolbar__color-button-swatch {
  position: absolute;
  right: -2px;
  bottom: -2px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  border: .5px solid #000;
  pointer-events: none;
}
.ee-rich-text-bottom-panel .easy-email-extensions-emailToolItem-active .rich-text-toolbar__color-button-swatch {
  border-color: #ffffffeb;
  box-shadow: 0 0 0 1px #10233f1f;
}
.ee-rich-text-bottom-panel .easy-email-extensions-emailToolItem-active:after {
  background: #fff;
}
.ee-rich-text-bottom-panel .rich-text-toolbar__style-summary {
  background: #f8fafc;
  box-shadow: inset 0 0 0 1px #d5deea;
  color: #475569;
}
.ee-rich-text-bottom-panel .easy-email-extensions-divider {
  background-color: #d5deea;
}
._BlocksPanel_k9p58_1 img {
  max-width: 100%;
}
._blocksPanelRoot_k9p58_5 {
  position: relative;
}
._blocksPanelPopup_k9p58_9 {
  position: fixed;
  left: 60px;
  z-index: 200;
  max-height: 85vh;
  transition: width .5s;
  width: var(--ee-blocks-panel-width, 650px);
  background: var(--color-bg-2);
  box-shadow:
    0 1px 5px #0000001f,
    0 2px 10px #00000014,
    0 1px 20px #00000014;
}
._blocksPanelPopupDragging_k9p58_20 {
  pointer-events: none;
}
._blocksPanelCard_k9p58_24 {
  background: var(--ee-control-surface-muted, #f2f5f9);
}
._blocksPanelTabPane_k9p58_28 {
  padding: 0;
  overflow: auto;
  height: 500px;
}
._blocksPanelTabTitle_k9p58_34 {
  padding-bottom: 10px;
}
._blocksPanelTabTitleFirst_k9p58_38 {
  padding-top: 5px;
}
._blocksPanelScroll_k9p58_42 {
  max-height: 100%;
  overflow: auto;
  overflow-x: hidden;
  padding: 24px 48px 24px 24px;
}
._blocksPanelHeader_k9p58_49 {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 16px 12px;
  font-weight: 400;
  color: var(--ee-control-heading-color, #667085);
}
._blockItem_k9p58_58 {
  text-align: center;
  padding: 3px 12px;
  border-radius: 15px;
  min-width: 60px;
  color: var(--ee-control-heading-color, #667085);
}
._closeBtn_k9p58_66 {
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}
._closeBtn_k9p58_66:hover {
  background-color: var(--ee-control-surface-hover, #f8fbff);
}
._root_184a1_1 {
  position: relative;
}
._wrapper_184a1_5 {
  position: absolute;
  height: 100%;
  transform: translate(32px);
  top: 0;
  right: 0;
  display: flex;
  justify-content: flex-end;
}
._mask_184a1_15 {
  width: 270px;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  cursor: default;
  position: relative;
  transition: all .3s;
  pointer-events: auto;
}
._dragHandle_184a1_26 {
  position: relative;
  z-index: 10;
}
._dragIcon_184a1_31 {
  font-size: 25px;
  line-height: 25px;
  cursor: grab;
}
._drag_184a1_26 {
  background-color: #000000a6;
}
._customTextArea_q00y2_1[readonly] {
  color: var(--color-text-2);
}
._customTextArea_q00y2_1[readonly]:hover {
  border-color: var(--ee-control-border, #d5deea);
}
._customTextArea_q00y2_1[readonly]:focus {
  border-color: var(--ee-control-border, #d5deea);
  background-color: transparent;
  box-shadow: none;
}
._codeField_q00y2_13 {
  display: grid;
  gap: 8px;
}
._codeActions_q00y2_18 {
  display: flex;
  justify-content: flex-end;
}
._copyButton_q00y2_23._ee-btn_q00y2_23 {
  color: var(--color-text-3, #86909c);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-width: auto;
  width: auto;
  white-space: nowrap;
}
._copyButton_q00y2_23._ee-btn_q00y2_23:hover:not(:disabled),
._copyButton_q00y2_23._ee-btn_q00y2_23:focus-visible:not(:disabled) {
  color: var(--color-text-1, #152238);
}
._copySuccessIcon_q00y2_38 {
  width: 12px;
  height: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
}
._sourceCodePanel_q00y2_47 {
  height: 100%;
}
._sourceCodeCollapse_q00y2_51 {
  display: flex;
  flex-direction: column;
  min-height: 0;
  padding: 0;
}
html.os-html,
html.os-html > .os-host {
  display: block;
  overflow: hidden;
  box-sizing: border-box;
  height: 100% !important;
  width: 100% !important;
  min-width: 100% !important;
  min-height: 100% !important;
  margin: 0 !important;
  position: absolute !important;
}
html.os-html > .os-host > .os-padding {
  position: absolute;
}
body.os-dragging,
body.os-dragging * {
  cursor: default;
}
.os-host,
.os-host-textarea {
  position: relative;
  overflow: visible !important;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -ms-flex-line-pack: start;
  align-content: flex-start;
  -webkit-box-align: start;
  -ms-flex-align: start;
  -ms-grid-row-align: flex-start;
  align-items: flex-start;
}
.os-host-flexbox {
  overflow: hidden !important;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.os-host-flexbox > .os-size-auto-observer {
  height: inherit !important;
}
.os-host-flexbox > .os-content-glue {
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
  -ms-flex-negative: 0;
  flex-shrink: 0;
}
.os-host-flexbox > .os-size-auto-observer,
.os-host-flexbox > .os-content-glue {
  min-height: 0;
  min-width: 0;
  -webkit-box-flex: 0;
  -ms-flex-positive: 0;
  flex-grow: 0;
  -ms-flex-negative: 1;
  flex-shrink: 1;
  -ms-flex-preferred-size: auto;
  flex-basis: auto;
}
#os-dummy-scrollbar-size {
  position: fixed;
  opacity: 0;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
  visibility: hidden;
  overflow: scroll;
  height: 500px;
  width: 500px;
}
#os-dummy-scrollbar-size > div {
  width: 200%;
  height: 200%;
  margin: 10px 0;
}
#os-dummy-scrollbar-size:before,
#os-dummy-scrollbar-size:after,
.os-content:before,
.os-content:after {
  content: "";
  display: table;
  width: .01px;
  height: .01px;
  line-height: 0;
  font-size: 0;
  flex-grow: 0;
  flex-shrink: 0;
  visibility: hidden;
}
#os-dummy-scrollbar-size,
.os-viewport {
  -ms-overflow-style: scrollbar !important;
}
.os-viewport-native-scrollbars-invisible#os-dummy-scrollbar-size,
.os-viewport-native-scrollbars-invisible.os-viewport {
  scrollbar-width: none !important;
}
.os-viewport-native-scrollbars-invisible#os-dummy-scrollbar-size::-webkit-scrollbar,
.os-viewport-native-scrollbars-invisible.os-viewport::-webkit-scrollbar,
.os-viewport-native-scrollbars-invisible#os-dummy-scrollbar-size::-webkit-scrollbar-corner,
.os-viewport-native-scrollbars-invisible.os-viewport::-webkit-scrollbar-corner {
  display: none !important;
  width: 0px !important;
  height: 0px !important;
  visibility: hidden !important;
  background: transparent !important;
}
.os-content-glue {
  box-sizing: inherit;
  max-height: 100%;
  max-width: 100%;
  width: 100%;
  pointer-events: none;
}
.os-padding {
  box-sizing: inherit;
  direction: inherit;
  position: absolute;
  overflow: visible;
  padding: 0;
  margin: 0;
  inset: 0;
  width: auto !important;
  height: auto !important;
  z-index: 0;
}
.os-host-overflow > .os-padding {
  overflow: hidden;
}
.os-viewport {
  direction: inherit !important;
  box-sizing: inherit !important;
  resize: none !important;
  outline: none !important;
  position: absolute;
  overflow: hidden;
  inset: 0;
  padding: 0;
  margin: 0;
  -webkit-overflow-scrolling: touch;
}
.os-content-arrange {
  position: absolute;
  z-index: -1;
  min-height: 1px;
  min-width: 1px;
  pointer-events: none;
}
.os-content {
  direction: inherit;
  box-sizing: border-box !important;
  position: relative;
  display: block;
  height: 100%;
  width: 100%;
  visibility: visible;
}
.os-content > .os-textarea {
  box-sizing: border-box !important;
  direction: inherit !important;
  background: transparent !important;
  outline: 0px none transparent !important;
  overflow: hidden !important;
  position: absolute !important;
  display: block !important;
  top: 0 !important;
  left: 0 !important;
  margin: 0 !important;
  border-radius: 0 !important;
  float: none !important;
  -webkit-filter: none !important;
  filter: none !important;
  border: none !important;
  resize: none !important;
  -webkit-transform: none !important;
  transform: none !important;
  max-width: none !important;
  max-height: none !important;
  box-shadow: none !important;
  -webkit-perspective: none !important;
  perspective: none !important;
  opacity: 1 !important;
  z-index: 1 !important;
  clip: auto !important;
  vertical-align: baseline !important;
  padding: 0;
}
.os-host-rtl > .os-padding > .os-viewport > .os-content > .os-textarea {
  right: 0 !important;
}
.os-content > .os-textarea-cover {
  z-index: -1;
  pointer-events: none;
}
.os-content > .os-textarea[wrap=off] {
  white-space: pre !important;
  margin: 0 !important;
}
.os-text-inherit {
  font-family: inherit;
  font-size: inherit;
  font-weight: inherit;
  font-style: inherit;
  font-variant: inherit;
  text-transform: inherit;
  text-decoration: inherit;
  text-indent: inherit;
  text-align: inherit;
  text-shadow: inherit;
  text-overflow: inherit;
  letter-spacing: inherit;
  word-spacing: inherit;
  line-height: inherit;
  unicode-bidi: inherit;
  direction: inherit;
  color: inherit;
  cursor: text;
}
.os-resize-observer,
.os-resize-observer-host {
  box-sizing: inherit;
  display: block;
  visibility: hidden;
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  overflow: hidden;
  pointer-events: none;
  z-index: -1;
}
.os-resize-observer-host {
  padding: inherit;
  border: inherit;
  border-color: transparent;
  border-style: solid;
  box-sizing: border-box;
}
.os-resize-observer-host.observed {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
}
.os-resize-observer-host > .os-resize-observer,
.os-resize-observer-host.observed > .os-resize-observer {
  height: 200%;
  width: 200%;
  padding: inherit;
  border: inherit;
  margin: 0;
  display: block;
  box-sizing: content-box;
}
.os-resize-observer-host.observed > .os-resize-observer,
.os-resize-observer-host.observed > .os-resize-observer:before {
  display: flex;
  position: relative;
  flex-grow: 1;
  flex-shrink: 0;
  flex-basis: auto;
  box-sizing: border-box;
}
.os-resize-observer-host.observed > .os-resize-observer:before {
  content: "";
  box-sizing: content-box;
  padding: inherit;
  border: inherit;
  margin: 0;
}
.os-size-auto-observer {
  box-sizing: inherit !important;
  height: 100%;
  width: inherit;
  max-width: 1px;
  position: relative;
  float: left;
  max-height: 1px;
  overflow: hidden;
  z-index: -1;
  padding: 0;
  margin: 0;
  pointer-events: none;
  -webkit-box-flex: inherit;
  -ms-flex-positive: inherit;
  flex-grow: inherit;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
}
.os-size-auto-observer > .os-resize-observer {
  width: 1000%;
  height: 1000%;
  min-height: 1px;
  min-width: 1px;
}
.os-resize-observer-item {
  position: absolute;
  inset: 0;
  overflow: hidden;
  z-index: -1;
  opacity: 0;
  direction: ltr !important;
  -webkit-box-flex: 0 !important;
  -ms-flex: none !important;
  flex: none !important;
}
.os-resize-observer-item-final {
  position: absolute;
  left: 0;
  top: 0;
  -webkit-transition: none !important;
  transition: none !important;
  -webkit-box-flex: 0 !important;
  -ms-flex: none !important;
  flex: none !important;
}
.os-resize-observer {
  -webkit-animation-duration: 1ms;
  animation-duration: 1ms;
  -webkit-animation-name: os-resize-observer-dummy-animation;
  animation-name: os-resize-observer-dummy-animation;
}
object.os-resize-observer {
  box-sizing: border-box !important;
}
@-webkit-keyframes os-resize-observer-dummy-animation {
  0% {
    cursor: auto;
  }
  to {
    cursor: none;
  }
}
@keyframes os-resize-observer-dummy-animation {
  0% {
    cursor: auto;
  }
  to {
    cursor: none;
  }
}
.os-host-transition > .os-scrollbar,
.os-host-transition > .os-scrollbar-corner {
  -webkit-transition:
    opacity .3s,
    visibility .3s,
    top .3s,
    right .3s,
    bottom .3s,
    left .3s;
  transition:
    opacity .3s,
    visibility .3s,
    top .3s,
    right .3s,
    bottom .3s,
    left .3s;
}
html.os-html > .os-host > .os-scrollbar {
  position: absolute;
  z-index: 999999;
}
.os-scrollbar,
.os-scrollbar-corner {
  position: absolute;
  opacity: 1;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
  z-index: 1;
}
.os-scrollbar-corner {
  bottom: 0;
  right: 0;
}
.os-scrollbar {
  pointer-events: none;
}
.os-scrollbar-track {
  pointer-events: auto;
  position: relative;
  height: 100%;
  width: 100%;
  padding: 0 !important;
  border: none !important;
}
.os-scrollbar-handle {
  pointer-events: auto;
  position: absolute;
  width: 100%;
  height: 100%;
}
.os-scrollbar-handle-off,
.os-scrollbar-track-off {
  pointer-events: none;
}
.os-scrollbar.os-scrollbar-unusable,
.os-scrollbar.os-scrollbar-unusable * {
  pointer-events: none !important;
}
.os-scrollbar.os-scrollbar-unusable .os-scrollbar-handle {
  opacity: 0 !important;
}
.os-scrollbar-horizontal {
  bottom: 0;
  left: 0;
}
.os-scrollbar-vertical {
  top: 0;
  right: 0;
}
.os-host-rtl > .os-scrollbar-horizontal {
  right: 0;
}
.os-host-rtl > .os-scrollbar-vertical {
  right: auto;
  left: 0;
}
.os-host-rtl > .os-scrollbar-corner {
  right: auto;
  left: 0;
}
.os-scrollbar-auto-hidden,
.os-padding + .os-scrollbar-corner,
.os-host-resize-disabled.os-host-scrollbar-horizontal-hidden > .os-scrollbar-corner,
.os-host-scrollbar-horizontal-hidden > .os-scrollbar-horizontal,
.os-host-resize-disabled.os-host-scrollbar-vertical-hidden > .os-scrollbar-corner,
.os-host-scrollbar-vertical-hidden > .os-scrollbar-vertical,
.os-scrollbar-horizontal.os-scrollbar-auto-hidden + .os-scrollbar-vertical + .os-scrollbar-corner,
.os-scrollbar-horizontal + .os-scrollbar-vertical.os-scrollbar-auto-hidden + .os-scrollbar-corner,
.os-scrollbar-horizontal.os-scrollbar-auto-hidden + .os-scrollbar-vertical.os-scrollbar-auto-hidden + .os-scrollbar-corner {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}
.os-scrollbar-corner-resize-both {
  cursor: nwse-resize;
}
.os-host-rtl > .os-scrollbar-corner-resize-both {
  cursor: nesw-resize;
}
.os-scrollbar-corner-resize-horizontal {
  cursor: ew-resize;
}
.os-scrollbar-corner-resize-vertical {
  cursor: ns-resize;
}
.os-dragging .os-scrollbar-corner.os-scrollbar-corner-resize {
  cursor: default;
}
.os-host-resize-disabled.os-host-scrollbar-horizontal-hidden > .os-scrollbar-vertical {
  top: 0;
  bottom: 0;
}
.os-host-resize-disabled.os-host-scrollbar-vertical-hidden > .os-scrollbar-horizontal,
.os-host-rtl.os-host-resize-disabled.os-host-scrollbar-vertical-hidden > .os-scrollbar-horizontal {
  right: 0;
  left: 0;
}
.os-scrollbar:hover,
.os-scrollbar-corner.os-scrollbar-corner-resize {
  opacity: 1 !important;
  visibility: visible !important;
}
.os-scrollbar-corner.os-scrollbar-corner-resize {
  background-image: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiIHN0YW5kYWxvbmU9Im5vIj8+PHN2ZyAgIHhtbG5zOmRjPSJodHRwOi8vcHVybC5vcmcvZGMvZWxlbWVudHMvMS4xLyIgICB4bWxuczpjYz0iaHR0cDovL2NyZWF0aXZlY29tbW9ucy5vcmcvbnMjIiAgIHhtbG5zOnJkZj0iaHR0cDovL3d3dy53My5vcmcvMTk5OS8wMi8yMi1yZGYtc3ludGF4LW5zIyIgICB4bWxuczpzdmc9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiAgIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgICB3aWR0aD0iMTAiICAgaGVpZ2h0PSIxMCIgICB2ZXJzaW9uPSIxLjEiPiAgPGcgICAgIHRyYW5zZm9ybT0idHJhbnNsYXRlKDAsLTEwNDIuMzYyMikiICAgICBzdHlsZT0iZGlzcGxheTppbmxpbmUiPiAgICA8cGF0aCAgICAgICBzdHlsZT0iZmlsbDojMDAwMDAwO2ZpbGwtb3BhY2l0eTowLjQ5NDExNzY1O2ZpbGwtcnVsZTpldmVub2RkO3N0cm9rZTpub25lIiAgICAgICBkPSJtIDcuNDI0MjE4NywxMDQyLjM2MjIgYyAtMC43MjM1NzkyLDAgLTEuMzEwMTU2MiwwLjU4NjYgLTEuMzEwMTU2MiwxLjMxMDIgMCwwLjI5OSAwLjEwNDM0MTksMC41NzEgMC4yNzI5NDkyLDAuNzkxNSAwLjIwOTEwMjQsMC4xNDEzIDAuNDY1NjIwNiwwLjIxODQgMC43MzY5NjI5LDAuMjE4NCAwLjcyMzU3OTMsMCAxLjMxMDE1NjMsLTAuNTg2NiAxLjMxMDE1NjMsLTEuMzEwMiAwLC0wLjI3MTMgLTAuMDc3MDkzLC0wLjUyNzggLTAuMjE4MzU5NCwtMC43MzcgLTAuMjIwNDk0MSwtMC4xNjg2IC0wLjQ5MjU0NDMsLTAuMjcyOSAtMC43OTE1NTI4LC0wLjI3MjkgeiBtIDAsMy4wODQzIGMgLTAuNzIzNTc5MiwwIC0xLjMxMDE1NjIsMC41ODY2IC0xLjMxMDE1NjIsMS4zMTAyIDAsMC4yOTkgMC4xMDQzNDE5LDAuNTcxIDAuMjcyOTQ5MiwwLjc5MTUgMC4yMDkxMDI0LDAuMTQxMyAwLjQ2NTYyMDYsMC4yMTg0IDAuNzM2OTYyOSwwLjIxODQgMC43MjM1NzkzLDAgMS4zMTAxNTYzLC0wLjU4NjYgMS4zMTAxNTYzLC0xLjMxMDIgMCwtMC4yNzEzIC0wLjA3NzA5MywtMC41Mjc4IC0wLjIxODM1OTQsLTAuNzM2OSAtMC4yMjA0OTQxLC0wLjE2ODYgLTAuNDkyNTQ0MywtMC4yNzMgLTAuNzkxNTUyOCwtMC4yNzMgeiBtIC0zLjA4NDMyNjEsMCBjIC0wLjcyMzU3OTMsMCAtMS4zMTAxNTYzLDAuNTg2NiAtMS4zMTAxNTYzLDEuMzEwMiAwLDAuMjk5IDAuMTA0MzQxOSwwLjU3MSAwLjI3Mjk0OTIsMC43OTE1IDAuMjA5MTAyNCwwLjE0MTMgMC40NjU2MjA3LDAuMjE4NCAwLjczNjk2MjksMC4yMTg0IDAuNzIzNTc5MywwIDEuMzEwMTU2MywtMC41ODY2IDEuMzEwMTU2MywtMS4zMTAyIDAsLTAuMjcxMyAtMC4wNzcwOTMsLTAuNTI3OCAtMC4yMTgzNTk0LC0wLjczNjkgLTAuMjIwNDk0LC0wLjE2ODYgLTAuNDkyNTQ0MiwtMC4yNzMgLTAuNzkxNTUyNywtMC4yNzMgeiBtIC0zLjAyOTczNjQsMy4wMjk4IEMgMC41ODY1NzY5MywxMDQ4LjQ3NjMgMCwxMDQ5LjA2MjggMCwxMDQ5Ljc4NjQgYyAwLDAuMjk5IDAuMTA0MzQxOSwwLjU3MTEgMC4yNzI5NDkyMiwwLjc5MTYgMC4yMDkxMDIyOSwwLjE0MTIgMC40NjU2MjA2NSwwLjIxODMgMC43MzY5NjI4OCwwLjIxODMgMC43MjM1NzkzLDAgMS4zMTAxNTYzLC0wLjU4NjUgMS4zMTAxNTYzLC0xLjMxMDEgMCwtMC4yNzE0IC0wLjA3NzA5MywtMC41Mjc5IC0wLjIxODM1OTQsLTAuNzM3IC0wLjIyMDQ5NDEsLTAuMTY4NiAtMC40OTI1NDQzLC0wLjI3MjkgLTAuNzkxNTUyOCwtMC4yNzI5IHogbSAzLjAyOTczNjQsMCBjIC0wLjcyMzU3OTMsMCAtMS4zMTAxNTYzLDAuNTg2NSAtMS4zMTAxNTYzLDEuMzEwMSAwLDAuMjk5IDAuMTA0MzQxOSwwLjU3MTEgMC4yNzI5NDkyLDAuNzkxNiAwLjIwOTEwMjQsMC4xNDEyIDAuNDY1NjIwNywwLjIxODMgMC43MzY5NjI5LDAuMjE4MyAwLjcyMzU3OTMsMCAxLjMxMDE1NjMsLTAuNTg2NSAxLjMxMDE1NjMsLTEuMzEwMSAwLC0wLjI3MTQgLTAuMDc3MDkzLC0wLjUyNzkgLTAuMjE4MzU5NCwtMC43MzcgLTAuMjIwNDk0LC0wLjE2ODYgLTAuNDkyNTQ0MiwtMC4yNzI5IC0wLjc5MTU1MjcsLTAuMjcyOSB6IG0gMy4wODQzMjYxLDAgYyAtMC43MjM1NzkyLDAgLTEuMzEwMTU2MiwwLjU4NjUgLTEuMzEwMTU2MiwxLjMxMDEgMCwwLjI5OSAwLjEwNDM0MTksMC41NzExIDAuMjcyOTQ5MiwwLjc5MTYgMC4yMDkxMDI0LDAuMTQxMiAwLjQ2NTYyMDYsMC4yMTgzIDAuNzM2OTYyOSwwLjIxODMgMC43MjM1NzkzLDAgMS4zMTAxNTYzLC0wLjU4NjUgMS4zMTAxNTYzLC0xLjMxMDEgMCwtMC4yNzE0IC0wLjA3NzA5MywtMC41Mjc5IC0wLjIxODM1OTQsLTAuNzM3IC0wLjIyMDQ5NDEsLTAuMTY4NiAtMC40OTI1NDQzLC0wLjI3MjkgLTAuNzkxNTUyOCwtMC4yNzI5IHoiLz4gIDwvZz4gIDxnICAgICBzdHlsZT0iZGlzcGxheTppbmxpbmUiPiAgICA8cGF0aCAgICAgICBzdHlsZT0iZmlsbDojZmZmZmZmO2ZpbGwtb3BhY2l0eToxO2ZpbGwtcnVsZTpldmVub2RkO3N0cm9rZTpub25lIiAgICAgICBkPSJtIDguMjE1NzcxNSwwLjI3Mjk0OTIyIGMgMC4xNDEyNjY3LDAuMjA5MTAyMjkgMC4yMTgzNTk0LDAuNDY1NjIwNjUgMC4yMTgzNTk0LDAuNzM2OTYyODggMCwwLjcyMzU3OTMgLTAuNTg2NTc3LDEuMzEwMTU2MyAtMS4zMTAxNTYzLDEuMzEwMTU2MyAtMC4yNzEzNDIzLDAgLTAuNTI3ODYwNSwtMC4wNzcwOTMgLTAuNzM2OTYyOSwtMC4yMTgzNTk0IDAuMjM5NDEwNCwwLjMxMzA4NTkgMC42MTI2MzYyLDAuNTE4NjAzNSAxLjAzNzIwNywwLjUxODYwMzUgMC43MjM1NzkzLDAgMS4zMTAxNTYzLC0wLjU4NjU3NyAxLjMxMDE1NjMsLTEuMzEwMTU2MyAwLC0wLjQyNDU3MDc2IC0wLjIwNTUxNzYsLTAuNzk3Nzk2NTkgLTAuNTE4NjAzNSwtMS4wMzcyMDY5OCB6IG0gMCwzLjA4NDMyNjE4IGMgMC4xNDEyNjY3LDAuMjA5MTAyMyAwLjIxODM1OTQsMC40NjU2MjA2IDAuMjE4MzU5NCwwLjczNjk2MjkgMCwwLjcyMzU3OTMgLTAuNTg2NTc3LDEuMzEwMTU2MiAtMS4zMTAxNTYzLDEuMzEwMTU2MiAtMC4yNzEzNDIzLDAgLTAuNTI3ODYwNSwtMC4wNzcwOTMgLTAuNzM2OTYyOSwtMC4yMTgzNTkzIDAuMjM5NDEwNCwwLjMxMzA4NTkgMC42MTI2MzYyLDAuNTE4NjAzNSAxLjAzNzIwNywwLjUxODYwMzUgMC43MjM1NzkzLDAgMS4zMTAxNTYzLC0wLjU4NjU3NyAxLjMxMDE1NjMsLTEuMzEwMTU2MyAwLC0wLjQyNDU3MDggLTAuMjA1NTE3NiwtMC43OTc3OTY3IC0wLjUxODYwMzUsLTEuMDM3MjA3IHogbSAtMy4wODQzMjYyLDAgYyAwLjE0MTI2NjcsMC4yMDkxMDIzIDAuMjE4MzU5NCwwLjQ2NTYyMDYgMC4yMTgzNTk0LDAuNzM2OTYyOSAwLDAuNzIzNTc5MyAtMC41ODY1NzcsMS4zMTAxNTYyIC0xLjMxMDE1NjMsMS4zMTAxNTYyIC0wLjI3MTM0MjIsMCAtMC41Mjc4NjA1LC0wLjA3NzA5MyAtMC43MzY5NjI5LC0wLjIxODM1OTMgMC4yMzk0MTA0LDAuMzEzMDg1OSAwLjYxMjYzNjMsMC41MTg2MDM1IDEuMDM3MjA3MSwwLjUxODYwMzUgMC43MjM1NzkzLDAgMS4zMTAxNTYyLC0wLjU4NjU3NyAxLjMxMDE1NjIsLTEuMzEwMTU2MyAwLC0wLjQyNDU3MDggLTAuMjA1NTE3NSwtMC43OTc3OTY3IC0wLjUxODYwMzUsLTEuMDM3MjA3IHogTSAyLjEwMTcwOSw2LjM4NzAxMTcgYyAwLjE0MTI2NjcsMC4yMDkxMDI0IDAuMjE4MzU5NCwwLjQ2NTYyMDYgMC4yMTgzNTk0LDAuNzM2OTYyOSAwLDAuNzIzNTc5MyAtMC41ODY1NzcsMS4zMTAxNTYzIC0xLjMxMDE1NjMsMS4zMTAxNTYzIC0wLjI3MTM0MjIzLDAgLTAuNTI3ODYwNTksLTAuMDc3MDkzIC0wLjczNjk2Mjg4LC0wLjIxODM1OTQgMC4yMzk0MTAzOSwwLjMxMzA4NTkgMC42MTI2MzYyMiwwLjUxODYwMzUgMS4wMzcyMDY5OCwwLjUxODYwMzUgMC43MjM1NzkzLDAgMS4zMTAxNTYzLC0wLjU4NjU3NyAxLjMxMDE1NjMsLTEuMzEwMTU2MyAwLC0wLjQyNDU3MDggLTAuMjA1NTE3NiwtMC43OTc3OTY2IC0wLjUxODYwMzUsLTEuMDM3MjA3IHogbSAzLjAyOTczNjMsMCBjIDAuMTQxMjY2NywwLjIwOTEwMjQgMC4yMTgzNTk0LDAuNDY1NjIwNiAwLjIxODM1OTQsMC43MzY5NjI5IDAsMC43MjM1NzkzIC0wLjU4NjU3NywxLjMxMDE1NjMgLTEuMzEwMTU2MywxLjMxMDE1NjMgLTAuMjcxMzQyMiwwIC0wLjUyNzg2MDUsLTAuMDc3MDkzIC0wLjczNjk2MjksLTAuMjE4MzU5NCAwLjIzOTQxMDQsMC4zMTMwODU5IDAuNjEyNjM2MywwLjUxODYwMzUgMS4wMzcyMDcxLDAuNTE4NjAzNSAwLjcyMzU3OTMsMCAxLjMxMDE1NjIsLTAuNTg2NTc3IDEuMzEwMTU2MiwtMS4zMTAxNTYzIDAsLTAuNDI0NTcwOCAtMC4yMDU1MTc1LC0wLjc5Nzc5NjYgLTAuNTE4NjAzNSwtMS4wMzcyMDcgeiBtIDMuMDg0MzI2MiwwIGMgMC4xNDEyNjY3LDAuMjA5MTAyNCAwLjIxODM1OTQsMC40NjU2MjA2IDAuMjE4MzU5NCwwLjczNjk2MjkgMCwwLjcyMzU3OTMgLTAuNTg2NTc3LDEuMzEwMTU2MyAtMS4zMTAxNTYzLDEuMzEwMTU2MyAtMC4yNzEzNDIzLDAgLTAuNTI3ODYwNSwtMC4wNzcwOTMgLTAuNzM2OTYyOSwtMC4yMTgzNTk0IDAuMjM5NDEwNCwwLjMxMzA4NTkgMC42MTI2MzYyLDAuNTE4NjAzNSAxLjAzNzIwNywwLjUxODYwMzUgMC43MjM1NzkzLDAgMS4zMTAxNTYzLC0wLjU4NjU3NyAxLjMxMDE1NjMsLTEuMzEwMTU2MyAwLC0wLjQyNDU3MDggLTAuMjA1NTE3NiwtMC43OTc3OTY2IC0wLjUxODYwMzUsLTEuMDM3MjA3IHoiIC8+ICA8L2c+PC9zdmc+);
  background-repeat: no-repeat;
  background-position: 100% 100%;
  pointer-events: auto !important;
}
.os-host-rtl > .os-scrollbar-corner.os-scrollbar-corner-resize {
  -webkit-transform: scale(-1, 1);
  transform: scaleX(-1);
}
.os-host-overflow {
  overflow: hidden !important;
}
.os-theme-none > .os-scrollbar-horizontal,
.os-theme-none > .os-scrollbar-vertical,
.os-theme-none > .os-scrollbar-corner {
  display: none !important;
}
.os-theme-none > .os-scrollbar-corner-resize {
  display: block !important;
  min-width: 10px;
  min-height: 10px;
}
.os-theme-dark > .os-scrollbar-horizontal,
.os-theme-light > .os-scrollbar-horizontal {
  right: 10px;
  height: 10px;
}
.os-theme-dark > .os-scrollbar-vertical,
.os-theme-light > .os-scrollbar-vertical {
  bottom: 10px;
  width: 10px;
}
.os-theme-dark.os-host-rtl > .os-scrollbar-horizontal,
.os-theme-light.os-host-rtl > .os-scrollbar-horizontal {
  left: 10px;
  right: 0;
}
.os-theme-dark > .os-scrollbar-corner,
.os-theme-light > .os-scrollbar-corner {
  height: 10px;
  width: 10px;
}
.os-theme-dark > .os-scrollbar-corner,
.os-theme-light > .os-scrollbar-corner {
  background-color: transparent;
}
.os-theme-dark > .os-scrollbar,
.os-theme-light > .os-scrollbar {
  padding: 2px;
  box-sizing: border-box;
  background: transparent;
}
.os-theme-dark > .os-scrollbar.os-scrollbar-unusable,
.os-theme-light > .os-scrollbar.os-scrollbar-unusable {
  background: transparent;
}
.os-theme-dark > .os-scrollbar > .os-scrollbar-track,
.os-theme-light > .os-scrollbar > .os-scrollbar-track {
  background: transparent;
}
.os-theme-dark > .os-scrollbar-horizontal > .os-scrollbar-track > .os-scrollbar-handle,
.os-theme-light > .os-scrollbar-horizontal > .os-scrollbar-track > .os-scrollbar-handle {
  min-width: 30px;
}
.os-theme-dark > .os-scrollbar-vertical > .os-scrollbar-track > .os-scrollbar-handle,
.os-theme-light > .os-scrollbar-vertical > .os-scrollbar-track > .os-scrollbar-handle {
  min-height: 30px;
}
.os-theme-dark.os-host-transition > .os-scrollbar > .os-scrollbar-track > .os-scrollbar-handle,
.os-theme-light.os-host-transition > .os-scrollbar > .os-scrollbar-track > .os-scrollbar-handle {
  -webkit-transition: background-color .3s;
  transition: background-color .3s;
}
.os-theme-dark > .os-scrollbar > .os-scrollbar-track > .os-scrollbar-handle,
.os-theme-light > .os-scrollbar > .os-scrollbar-track > .os-scrollbar-handle,
.os-theme-dark > .os-scrollbar > .os-scrollbar-track,
.os-theme-light > .os-scrollbar > .os-scrollbar-track {
  border-radius: 10px;
}
.os-theme-dark > .os-scrollbar > .os-scrollbar-track > .os-scrollbar-handle {
  background: rgba(0, 0, 0, .4);
}
.os-theme-light > .os-scrollbar > .os-scrollbar-track > .os-scrollbar-handle {
  background: rgba(255, 255, 255, .4);
}
.os-theme-dark > .os-scrollbar:hover > .os-scrollbar-track > .os-scrollbar-handle {
  background: rgba(0, 0, 0, .55);
}
.os-theme-light > .os-scrollbar:hover > .os-scrollbar-track > .os-scrollbar-handle {
  background: rgba(255, 255, 255, .55);
}
.os-theme-dark > .os-scrollbar > .os-scrollbar-track > .os-scrollbar-handle.active {
  background: rgba(0, 0, 0, .7);
}
.os-theme-light > .os-scrollbar > .os-scrollbar-track > .os-scrollbar-handle.active {
  background: rgba(255, 255, 255, .7);
}
.os-theme-dark > .os-scrollbar-horizontal .os-scrollbar-handle:before,
.os-theme-dark > .os-scrollbar-vertical .os-scrollbar-handle:before,
.os-theme-light > .os-scrollbar-horizontal .os-scrollbar-handle:before,
.os-theme-light > .os-scrollbar-vertical .os-scrollbar-handle:before {
  content: "";
  position: absolute;
  inset: 0;
  display: block;
}
.os-theme-dark.os-host-scrollbar-horizontal-hidden > .os-scrollbar-horizontal .os-scrollbar-handle:before,
.os-theme-dark.os-host-scrollbar-vertical-hidden > .os-scrollbar-vertical .os-scrollbar-handle:before,
.os-theme-light.os-host-scrollbar-horizontal-hidden > .os-scrollbar-horizontal .os-scrollbar-handle:before,
.os-theme-light.os-host-scrollbar-vertical-hidden > .os-scrollbar-vertical .os-scrollbar-handle:before {
  display: none;
}
.os-theme-dark > .os-scrollbar-horizontal .os-scrollbar-handle:before,
.os-theme-light > .os-scrollbar-horizontal .os-scrollbar-handle:before {
  top: -6px;
  bottom: -2px;
}
.os-theme-dark > .os-scrollbar-vertical .os-scrollbar-handle:before,
.os-theme-light > .os-scrollbar-vertical .os-scrollbar-handle:before {
  left: -6px;
  right: -2px;
}
.os-host-rtl.os-theme-dark > .os-scrollbar-vertical .os-scrollbar-handle:before,
.os-host-rtl.os-theme-light > .os-scrollbar-vertical .os-scrollbar-handle:before {
  right: -6px;
  left: -2px;
}
._toolbar_1hjl3_1 {
  display: flex;
  flex-direction: column;
  gap: 0;
  padding: 10px;
  background: var(--ee-control-surface-muted, #f2f5f9);
  border-bottom: 1px solid var(--ee-control-border, #d5deea);
}
._emptyState_1hjl3_10 {
  margin: 16px 10px 0;
  padding: 12px;
  border: 1px dashed var(--ee-control-border, #d5deea);
  border-radius: 8px;
  font-size: 12px;
  color: var(--ee-control-heading-color, #667085);
  text-align: center;
}
._blockGrid_1hjl3_20 {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 10px;
  padding: 0 10px 16px;
}
._blockItem_1hjl3_27 {
  border: 1px solid var(--ee-control-border, #d5deea);
  border-radius: 8px;
  background: var(--ee-control-surface, #ffffff);
  min-width: 0;
}
._blockItem_1hjl3_27:hover {
  box-shadow: none !important;
  border-color: var(--ee-primary, #0b6bcb);
}
._blockItem_1hjl3_27 ._blockItemContainer_1hjl3_37 {
  position: relative;
  width: 100%;
  min-height: 72px;
  padding: 6px 4px 4px;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 8px;
  color: var(--ee-control-heading-color, #667085);
}
._blockItem_1hjl3_27 ._blockItemContainer_1hjl3_37 .ee-icon {
  color: inherit;
}
._blockItem_1hjl3_27 ._blockItemContainer_1hjl3_37 .blockItemContainer > span {
  display: block;
  margin-top: 0 !important;
  text-align: center;
  line-height: 1.15;
  color: inherit;
}
._blockPreview_1hjl3_61 {
  position: absolute;
  z-index: 1000;
  left: calc(100% + 8px);
  top: 50%;
  transform: translateY(-50%);
  min-width: 170px;
  border-radius: 8px;
  border: 1px solid var(--ee-control-border, #d5deea);
  background: var(--ee-control-surface, #ffffff);
  box-shadow: none;
  padding: 8px;
  display: flex;
  gap: 8px;
  text-align: left;
  pointer-events: none;
}
._blockPreviewIcon_1hjl3_79 {
  width: 28px;
  height: 28px;
  border-radius: 6px;
  background: var(--ee-control-surface-muted, #f2f5f9);
  color: var(--ee-control-text, #152238);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
._blockPreviewContent_1hjl3_90 {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
._blockPreviewContent_1hjl3_90 strong {
  font-size: 12px;
  color: var(--ee-control-text, #152238);
  font-weight: 600;
}
._blockPreviewContent_1hjl3_90 span {
  font-size: 11px;
  line-height: 1.3;
  color: var(--ee-control-heading-color, #667085);
}
@media (max-width: 420px) {
  ._blockGrid_1hjl3_20 {
    grid-template-columns: minmax(0, 1fr);
  }
}
.CodeMirror {
  font-family: monospace;
  height: 300px;
  color: #000;
  direction: ltr;
}
.CodeMirror-lines {
  padding: 4px 0;
}
.CodeMirror pre.CodeMirror-line,
.CodeMirror pre.CodeMirror-line-like {
  padding: 0 4px;
}
.CodeMirror-scrollbar-filler,
.CodeMirror-gutter-filler {
  background-color: #fff;
}
.CodeMirror-gutters {
  border-right: 1px solid #ddd;
  background-color: #f7f7f7;
  white-space: nowrap;
}
.CodeMirror-linenumber {
  padding: 0 3px 0 5px;
  min-width: 20px;
  text-align: right;
  color: #999;
  white-space: nowrap;
}
.CodeMirror-guttermarker {
  color: #000;
}
.CodeMirror-guttermarker-subtle {
  color: #999;
}
.CodeMirror-cursor {
  border-left: 1px solid black;
  border-right: none;
  width: 0;
}
.CodeMirror div.CodeMirror-secondarycursor {
  border-left: 1px solid silver;
}
.cm-fat-cursor .CodeMirror-cursor {
  width: auto;
  border: 0 !important;
  background: #7e7;
}
.cm-fat-cursor div.CodeMirror-cursors {
  z-index: 1;
}
.cm-fat-cursor .CodeMirror-line::selection,
.cm-fat-cursor .CodeMirror-line > span::selection,
.cm-fat-cursor .CodeMirror-line > span > span::selection {
  background: transparent;
}
.cm-fat-cursor .CodeMirror-line::-moz-selection,
.cm-fat-cursor .CodeMirror-line > span::-moz-selection,
.cm-fat-cursor .CodeMirror-line > span > span::-moz-selection {
  background: transparent;
}
.cm-fat-cursor {
  caret-color: transparent;
}
@-moz-keyframes blink {
  50% {
    background-color: transparent;
  }
}
@-webkit-keyframes blink {
  50% {
    background-color: transparent;
  }
}
@keyframes blink {
  50% {
    background-color: transparent;
  }
}
.cm-tab {
  display: inline-block;
  text-decoration: inherit;
}
.CodeMirror-rulers {
  position: absolute;
  inset: -50px 0 0;
  overflow: hidden;
}
.CodeMirror-ruler {
  border-left: 1px solid #ccc;
  top: 0;
  bottom: 0;
  position: absolute;
}
.cm-s-default .cm-header {
  color: #00f;
}
.cm-s-default .cm-quote {
  color: #090;
}
.cm-negative {
  color: #d44;
}
.cm-positive {
  color: #292;
}
.cm-header,
.cm-strong {
  font-weight: 700;
}
.cm-em {
  font-style: italic;
}
.cm-link {
  text-decoration: underline;
}
.cm-strikethrough {
  text-decoration: line-through;
}
.cm-s-default .cm-keyword {
  color: #708;
}
.cm-s-default .cm-atom {
  color: #219;
}
.cm-s-default .cm-number {
  color: #164;
}
.cm-s-default .cm-def {
  color: #00f;
}
.cm-s-default .cm-variable-2 {
  color: #05a;
}
.cm-s-default .cm-variable-3,
.cm-s-default .cm-type {
  color: #085;
}
.cm-s-default .cm-comment {
  color: #a50;
}
.cm-s-default .cm-string {
  color: #a11;
}
.cm-s-default .cm-string-2 {
  color: #f50;
}
.cm-s-default .cm-meta,
.cm-s-default .cm-qualifier {
  color: #555;
}
.cm-s-default .cm-builtin {
  color: #30a;
}
.cm-s-default .cm-bracket {
  color: #997;
}
.cm-s-default .cm-tag {
  color: #170;
}
.cm-s-default .cm-attribute {
  color: #00c;
}
.cm-s-default .cm-hr {
  color: #999;
}
.cm-s-default .cm-link {
  color: #00c;
}
.cm-s-default .cm-error,
.cm-invalidchar {
  color: red;
}
.CodeMirror-composing {
  border-bottom: 2px solid;
}
div.CodeMirror span.CodeMirror-matchingbracket {
  color: #0b0;
}
div.CodeMirror span.CodeMirror-nonmatchingbracket {
  color: #a22;
}
.CodeMirror-matchingtag {
  background: rgba(255, 150, 0, .3);
}
.CodeMirror-activeline-background {
  background: #e8f2ff;
}
.CodeMirror {
  position: relative;
  overflow: hidden;
  background: white;
}
.CodeMirror-scroll {
  overflow: scroll !important;
  margin-bottom: -50px;
  margin-right: -50px;
  padding-bottom: 50px;
  height: 100%;
  outline: none;
  position: relative;
  z-index: 0;
}
.CodeMirror-sizer {
  position: relative;
  border-right: 50px solid transparent;
}
.CodeMirror-vscrollbar,
.CodeMirror-hscrollbar,
.CodeMirror-scrollbar-filler,
.CodeMirror-gutter-filler {
  position: absolute;
  z-index: 6;
  display: none;
  outline: none;
}
.CodeMirror-vscrollbar {
  right: 0;
  top: 0;
  overflow-x: hidden;
  overflow-y: scroll;
}
.CodeMirror-hscrollbar {
  bottom: 0;
  left: 0;
  overflow-y: hidden;
  overflow-x: scroll;
}
.CodeMirror-scrollbar-filler {
  right: 0;
  bottom: 0;
}
.CodeMirror-gutter-filler {
  left: 0;
  bottom: 0;
}
.CodeMirror-gutters {
  position: absolute;
  left: 0;
  top: 0;
  min-height: 100%;
  z-index: 3;
}
.CodeMirror-gutter {
  white-space: normal;
  height: 100%;
  display: inline-block;
  vertical-align: top;
  margin-bottom: -50px;
}
.CodeMirror-gutter-wrapper {
  position: absolute;
  z-index: 4;
  background: none !important;
  border: none !important;
}
.CodeMirror-gutter-background {
  position: absolute;
  top: 0;
  bottom: 0;
  z-index: 4;
}
.CodeMirror-gutter-elt {
  position: absolute;
  cursor: default;
  z-index: 4;
}
.CodeMirror-gutter-wrapper ::selection {
  background-color: transparent;
}
.CodeMirror-gutter-wrapper ::-moz-selection {
  background-color: transparent;
}
.CodeMirror-lines {
  cursor: text;
  min-height: 1px;
}
.CodeMirror pre.CodeMirror-line,
.CodeMirror pre.CodeMirror-line-like {
  -moz-border-radius: 0;
  -webkit-border-radius: 0;
  border-radius: 0;
  border-width: 0;
  background: transparent;
  font-family: inherit;
  font-size: inherit;
  margin: 0;
  white-space: pre;
  word-wrap: normal;
  line-height: inherit;
  color: inherit;
  z-index: 2;
  position: relative;
  overflow: visible;
  -webkit-tap-highlight-color: transparent;
  -webkit-font-variant-ligatures: contextual;
  font-variant-ligatures: contextual;
}
.CodeMirror-wrap pre.CodeMirror-line,
.CodeMirror-wrap pre.CodeMirror-line-like {
  word-wrap: break-word;
  white-space: pre-wrap;
  word-break: normal;
}
.CodeMirror-linebackground {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.CodeMirror-linewidget {
  position: relative;
  z-index: 2;
  padding: .1px;
}
.CodeMirror-rtl pre {
  direction: rtl;
}
.CodeMirror-code {
  outline: none;
}
.CodeMirror-scroll,
.CodeMirror-sizer,
.CodeMirror-gutter,
.CodeMirror-gutters,
.CodeMirror-linenumber {
  -moz-box-sizing: content-box;
  box-sizing: content-box;
}
.CodeMirror-measure {
  position: absolute;
  width: 100%;
  height: 0;
  overflow: hidden;
  visibility: hidden;
}
.CodeMirror-cursor {
  position: absolute;
  pointer-events: none;
}
.CodeMirror-measure pre {
  position: static;
}
div.CodeMirror-cursors {
  visibility: hidden;
  position: relative;
  z-index: 3;
}
div.CodeMirror-dragcursors,
.CodeMirror-focused div.CodeMirror-cursors {
  visibility: visible;
}
.CodeMirror-selected {
  background: #d9d9d9;
}
.CodeMirror-focused .CodeMirror-selected {
  background: #d7d4f0;
}
.CodeMirror-crosshair {
  cursor: crosshair;
}
.CodeMirror-line::selection,
.CodeMirror-line > span::selection,
.CodeMirror-line > span > span::selection {
  background: #d7d4f0;
}
.CodeMirror-line::-moz-selection,
.CodeMirror-line > span::-moz-selection,
.CodeMirror-line > span > span::-moz-selection {
  background: #d7d4f0;
}
.cm-searching {
  background-color: #ffa;
  background-color: #ff06;
}
.cm-force-border {
  padding-right: .1px;
}
@media print {
  .CodeMirror div.CodeMirror-cursors {
    visibility: hidden;
  }
}
.cm-tab-wrap-hack:after {
  content: "";
}
span.CodeMirror-selectedtext {
  background: none;
}
.cm-s-material.CodeMirror {
  background-color: #263238;
  color: #eff;
}
.cm-s-material .CodeMirror-gutters {
  background: #263238;
  color: #546e7a;
  border: none;
}
.cm-s-material .CodeMirror-guttermarker,
.cm-s-material .CodeMirror-guttermarker-subtle,
.cm-s-material .CodeMirror-linenumber {
  color: #546e7a;
}
.cm-s-material .CodeMirror-cursor {
  border-left: 1px solid #FFCC00;
}
.cm-s-material.cm-fat-cursor .CodeMirror-cursor,
.cm-s-material .cm-animate-fat-cursor {
  background-color: #5d6d5c80 !important;
}
.cm-s-material div.CodeMirror-selected,
.cm-s-material.CodeMirror-focused div.CodeMirror-selected {
  background: rgba(128, 203, 196, .2);
}
.cm-s-material .CodeMirror-line::selection,
.cm-s-material .CodeMirror-line > span::selection,
.cm-s-material .CodeMirror-line > span > span::selection {
  background: rgba(128, 203, 196, .2);
}
.cm-s-material .CodeMirror-line::-moz-selection,
.cm-s-material .CodeMirror-line > span::-moz-selection,
.cm-s-material .CodeMirror-line > span > span::-moz-selection {
  background: rgba(128, 203, 196, .2);
}
.cm-s-material .CodeMirror-activeline-background {
  background: rgba(0, 0, 0, .5);
}
.cm-s-material .cm-keyword {
  color: #c792ea;
}
.cm-s-material .cm-operator {
  color: #89ddff;
}
.cm-s-material .cm-variable-2 {
  color: #eff;
}
.cm-s-material .cm-variable-3,
.cm-s-material .cm-type {
  color: #f07178;
}
.cm-s-material .cm-builtin {
  color: #ffcb6b;
}
.cm-s-material .cm-atom {
  color: #f78c6c;
}
.cm-s-material .cm-number {
  color: #ff5370;
}
.cm-s-material .cm-def {
  color: #82aaff;
}
.cm-s-material .cm-string {
  color: #c3e88d;
}
.cm-s-material .cm-string-2 {
  color: #f07178;
}
.cm-s-material .cm-comment {
  color: #546e7a;
}
.cm-s-material .cm-variable {
  color: #f07178;
}
.cm-s-material .cm-tag {
  color: #ff5370;
}
.cm-s-material .cm-meta {
  color: #ffcb6b;
}
.cm-s-material .cm-attribute,
.cm-s-material .cm-property {
  color: #c792ea;
}
.cm-s-material .cm-qualifier,
.cm-s-material .cm-variable-3,
.cm-s-material .cm-type {
  color: #decb6b;
}
.cm-s-material .cm-error {
  color: #fff;
  background-color: #ff5370;
}
.cm-s-material .CodeMirror-matchingbracket {
  text-decoration: underline;
  color: #fff !important;
}
.cm-s-neat span.cm-comment {
  color: #a86;
}
.cm-s-neat span.cm-keyword {
  line-height: 1em;
  font-weight: 700;
  color: #00f;
}
.cm-s-neat span.cm-string {
  color: #a22;
}
.cm-s-neat span.cm-builtin {
  line-height: 1em;
  font-weight: 700;
  color: #077;
}
.cm-s-neat span.cm-special {
  line-height: 1em;
  font-weight: 700;
  color: #0aa;
}
.cm-s-neat span.cm-variable {
  color: #000;
}
.cm-s-neat span.cm-number,
.cm-s-neat span.cm-atom {
  color: #3a3;
}
.cm-s-neat span.cm-meta {
  color: #555;
}
.cm-s-neat span.cm-link {
  color: #3a3;
}
.cm-s-neat .CodeMirror-activeline-background {
  background: #e8f2ff;
}
.cm-s-neat .CodeMirror-matchingbracket {
  outline: 1px solid grey;
  color: #000 !important;
}
._container_13rz9_1,
._container_13rz9_1 .CodeMirror {
  height: 100%;
}
/*! Bundled license information:

@hundred_dev/easy-email-extensions/lib/style.css:
  (*!
  * OverlayScrollbars
  * https://github.com/KingSora/OverlayScrollbars
  *
  * Version: 1.13.0
  *
  * Copyright KingSora | Rene Haas.
  * https://github.com/KingSora
  *
  * Released under the MIT license.
  * Date: 02.08.2020
  *)
*/
/*# sourceMappingURL=/assets/easy_email_editor_styles-de2183d4.css.map */
