/* [project]/modules/media-flow/src/components/MediaEditor/MediaEditor.css [app-client] (css) */
.media-editor, .media-editor__suggestions, .media-editor__mention-preview, .media-editor__overlay {
  --me-bg: #222325;
  --me-surface: #2b2c30;
  --me-hover: #36383e;
  --me-text: #eeeef2;
  --me-muted: #a3a5ae;
  --me-border: #41434a;
  --me-accent: #9c91ff;
  --me-accent-bg: #37324f;
  --me-focus: #b7afff;
  --me-error: #ffb4ab;
  color: var(--me-text);
  --lightningcss-light: ;
  --lightningcss-dark: initial;
  color-scheme: dark;
  box-sizing: border-box;
  font-family: inherit;
  font-size: 14px;
  line-height: 1.6;
}

[data-media-editor-theme="light"] {
  --me-bg: #fff;
  --me-surface: #f5f5f8;
  --me-hover: #eaeaf0;
  --me-text: #20212b;
  --me-muted: #646574;
  --me-border: #d9dae3;
  --me-accent: #6047cc;
  --me-accent-bg: #eee9ff;
  --me-focus: #7158df;
  --me-error: #b42318;
  --lightningcss-light: initial;
  --lightningcss-dark: ;
  color-scheme: light;
}

@media (prefers-color-scheme: light) {
  [data-media-editor-theme="auto"] {
    --me-bg: #fff;
    --me-surface: #f5f5f8;
    --me-hover: #eaeaf0;
    --me-text: #20212b;
    --me-muted: #646574;
    --me-border: #d9dae3;
    --me-accent: #6047cc;
    --me-accent-bg: #eee9ff;
    --me-focus: #7158df;
    --me-error: #b42318;
    --lightningcss-light: initial;
    --lightningcss-dark: ;
    color-scheme: light;
  }
}

.media-editor *, .media-editor__suggestions *, .media-editor__overlay * {
  box-sizing: border-box;
}

.media-editor {
  border-style: solid;
  border-width: 1px;
  border-color: var(--me-border);
  background: var(--me-bg);
  text-align: start;
  isolation: isolate;
  border-radius: 14px;
  width: 100%;
  min-width: 0;
}

.media-editor[data-border="false"] {
  border: 0;
}

.media-editor[data-disabled] {
  opacity: .55;
}

.media-editor button, .media-editor select, .media-editor input, .media-editor__dialog button, .media-editor__dialog input, .media-editor__dialog select {
  font: inherit;
  color: var(--me-text);
  border: 1px solid var(--me-border);
  background: var(--me-surface);
  border-radius: 6px;
}

.media-editor button, .media-editor__dialog button {
  cursor: pointer;
  min-height: 32px;
  padding: 4px 9px;
}

.media-editor button:hover:not(:disabled), .media-editor__dialog button:hover:not(:disabled) {
  background: var(--me-hover);
}

.media-editor button:disabled, .media-editor input:disabled, .media-editor select:disabled, .media-editor__dialog button:disabled {
  opacity: .45;
  cursor: not-allowed;
}

.media-editor button:focus-visible, .media-editor select:focus-visible, .media-editor input:focus-visible, .media-editor__dialog button:focus-visible, .media-editor__dialog input:focus-visible, .media-editor__dialog select:focus-visible {
  outline: 2px solid var(--me-focus);
  outline-offset: 2px;
}

.media-editor__toolbar {
  border-bottom: 1px solid var(--me-border);
  flex-wrap: wrap;
  align-items: center;
  gap: 4px;
  padding: 9px;
  display: flex;
}

.media-editor__toolbar button {
  background: none;
  border-color: #0000;
  font-size: 12px;
}

.media-editor__toolbar button[aria-pressed="true"] {
  background: var(--me-accent-bg);
  color: var(--me-accent);
}

.media-editor__toolbar select {
  max-width: 100%;
  min-height: 30px;
  font-size: 12px;
}

.media-editor__separator {
  background: var(--me-border);
  width: 1px;
  height: 18px;
  margin: 0 3px;
}

.media-editor__color {
  flex-direction: column;
  align-items: center;
  width: 29px;
  font-weight: 700;
  line-height: 1;
  display: inline-flex;
}

.media-editor__color input {
  cursor: pointer;
  border: none;
  width: 24px;
  height: 12px;
  padding: 0;
}

.media-editor__content {
  min-height: var(--me-min-height, 140px);
  max-height: var(--me-max-height, 360px);
  overscroll-behavior: contain;
  white-space: pre-wrap;
  overflow-wrap: anywhere;
  word-break: normal;
  cursor: text;
  outline: none;
  padding: 14px;
  overflow-y: auto;
}

.media-editor__content p {
  margin: 0 0 .55em;
}

.media-editor__content[contenteditable="true"], .media-editor__content[contenteditable="true"] * {
  --mf-workspace-cursor: text;
  cursor: text;
}

.media-editor__content > :last-child {
  margin-bottom: 0;
}

.media-editor__content p.is-editor-empty:first-child:before {
  content: attr(data-placeholder);
  color: var(--me-muted);
  float: left;
  pointer-events: none;
  height: 0;
}

.media-editor__content h1 {
  font-size: 1.65em;
}

.media-editor__content h2 {
  font-size: 1.4em;
}

.media-editor__content h3 {
  font-size: 1.2em;
}

.media-editor__content h1, .media-editor__content h2, .media-editor__content h3 {
  margin: .65em 0 .35em;
  font-weight: 700;
  line-height: 1.35;
}

.media-editor__content strong {
  font-weight: 700;
}

.media-editor__content em {
  font-style: italic;
}

.media-editor__content ul, .media-editor__content ol {
  margin: .5em 0;
  padding-inline-start: 1.6em;
}

.media-editor__content ul {
  list-style: outside;
}

.media-editor__content ol {
  list-style: decimal;
}

.media-editor__content blockquote {
  border-inline-start: 3px solid var(--me-accent);
  color: var(--me-muted);
  margin: .7em 0;
  padding-inline-start: 12px;
}

.media-editor__content code {
  background: var(--me-surface);
  border-radius: 4px;
  padding: 2px 4px;
  font-family: ui-monospace, SFMono-Regular, Consolas, monospace;
}

.media-editor__content pre {
  background: var(--me-surface);
  border-radius: 8px;
  padding: 12px;
  overflow-x: auto;
}

.media-editor__content pre code {
  padding: 0;
}

.media-editor__content a {
  color: var(--me-accent);
  text-decoration: underline;
}

.media-editor__content mark {
  color: #242424;
  border-radius: 3px;
}

.media-editor__content hr {
  border: 0;
  border-top: 1px solid var(--me-border);
  margin: 12px 0;
}

.media-editor__mention, .media-editor__clip {
  -webkit-box-decoration-break: clone;
  box-decoration-break: clone;
  background: var(--me-accent-bg);
  color: var(--me-accent);
  vertical-align: baseline;
  cursor: pointer;
  border-radius: 5px;
  padding: 2px 6px;
  font-size: .92em;
  display: inline;
}

.media-editor__mention {
  white-space: nowrap;
  margin-inline: 3px;
  display: inline-block;
}

.media-editor__content .media-editor__mention, .media-editor__content .media-editor__mention * {
  -webkit-user-select: none;
  user-select: none;
  caret-color: #0000;
}

.media-editor__content[contenteditable="true"] .media-editor__clip {
  cursor: grab;
}

.media-editor__content[contenteditable="true"] .media-editor__clip:active {
  cursor: grabbing;
}

.media-editor__mention img {
  object-fit: cover;
  vertical-align: text-bottom;
  border-radius: 3px;
  width: 20px;
  height: 20px;
  margin-inline-end: 4px;
  display: inline-block;
}

.media-editor__clip {
  background: var(--me-hover);
  color: var(--me-text);
  font-variant-numeric: tabular-nums;
}

.media-editor__content .ProseMirror-selectednode {
  outline: 2px solid var(--me-focus);
}

.media-editor__footer {
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  padding: 10px;
  display: flex;
}

.media-editor[data-padding="false"] .media-editor__toolbar, .media-editor[data-padding="false"] .media-editor__content, .media-editor[data-padding="false"] .media-editor__footer, .media-editor[data-padding="false"] .media-editor__loading, .media-editor[data-padding="false"] .media-editor__link-form {
  padding: 0;
}

.media-editor__actions {
  flex-wrap: wrap;
  gap: 6px;
  display: flex;
}

.media-editor__custom-footer {
  flex: 1;
  min-width: 0;
}

.media-editor .media-editor__primary, .media-editor__dialog .media-editor__primary {
  color: #fff;
  background: #6552d7;
  border-color: #6552d7;
}

.media-editor .media-editor__primary:hover:not(:disabled), .media-editor__dialog .media-editor__primary:hover:not(:disabled) {
  background: #7563e3;
}

.media-editor__loading {
  min-height: var(--me-min-height, 140px);
  color: var(--me-muted);
  padding: 14px;
}

.media-editor__link-form {
  border-bottom: 1px solid var(--me-border);
  flex-wrap: wrap;
  gap: 6px;
  padding: 10px;
  display: flex;
}

.media-editor__link-form input {
  flex: 1;
  min-width: 120px;
  padding: 4px 8px;
}

.media-editor__link-form [role="alert"] {
  width: 100%;
  color: var(--me-error);
  font-size: 12px;
}

.media-editor__suggestions {
  z-index: 10000;
  overscroll-behavior: contain;
  border: 1px solid var(--me-border);
  background: var(--me-bg);
  border-radius: 10px;
  padding: 6px;
  position: fixed;
  overflow-y: auto;
  box-shadow: 0 12px 40px #0005;
}

.media-editor__suggestions-title {
  color: var(--me-muted);
  justify-content: space-between;
  gap: 8px;
  padding: 5px 6px 8px;
  font-size: 12px;
  display: flex;
}

.media-editor__suggestions-title span {
  font-size: 10px;
}

.media-editor__suggestions button {
  width: 100%;
  color: var(--me-text);
  text-align: start;
  font: inherit;
  cursor: pointer;
  background: none;
  border: 0;
  border-radius: 7px;
  align-items: center;
  gap: 10px;
  padding: 8px;
  display: flex;
}

.media-editor__suggestions button[aria-selected="true"] {
  background: var(--me-accent-bg);
}

.media-editor__suggestions img, .media-editor__kind {
  object-fit: cover;
  background: var(--me-surface);
  border-radius: 5px;
  flex-shrink: 0;
  width: 36px;
  height: 36px;
}

.media-editor__kind {
  color: var(--me-muted);
  place-items: center;
  font-size: 11px;
  display: grid;
}

.media-editor__suggestion-text {
  flex-direction: column;
  flex: 1;
  min-width: 0;
  display: flex;
}

.media-editor__suggestion-text strong {
  text-overflow: ellipsis;
  white-space: nowrap;
  font-weight: 500;
  overflow: hidden;
}

.media-editor__suggestion-text small {
  color: var(--me-muted);
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
}

.media-editor__suggestions p {
  color: var(--me-muted);
  margin: 0;
  padding: 8px;
  font-size: 12px;
}

.media-editor__overlay {
  z-index: 10010;
  overscroll-behavior: contain;
  background: #0009;
  justify-content: center;
  align-items: center;
  padding: 16px;
  display: flex;
  position: fixed;
  inset: 0;
}

.media-editor__dialog {
  overscroll-behavior: contain;
  background: var(--me-bg);
  border: 1px solid var(--me-border);
  border-radius: 16px;
  width: min(520px, 100%);
  max-height: calc(100dvh - 32px);
  padding: 20px;
  overflow-y: auto;
  box-shadow: 0 24px 80px #0006;
}

.media-editor__dialog header {
  justify-content: space-between;
  align-items: start;
  gap: 12px;
  margin-bottom: 16px;
  display: flex;
}

.media-editor__dialog h3 {
  margin: 0;
  font-size: 18px;
  font-weight: 600;
}

.media-editor__dialog header p {
  color: var(--me-muted);
  margin: 4px 0 0;
  font-size: 12px;
}

.media-editor__dialog video {
  background: #000;
  border-radius: 9px;
  width: 100%;
  max-height: 250px;
  margin: 14px 0;
  display: block;
}

.media-editor__field {
  color: var(--me-muted);
  flex-direction: column;
  gap: 5px;
  min-width: 0;
  font-size: 12px;
  display: flex;
}

.media-editor__field input, .media-editor__field select {
  width: 100%;
  color: var(--me-text);
  padding: 8px;
  font-size: 14px;
}

.media-editor__time-fields {
  align-items: center;
  gap: 12px;
  margin-top: 14px;
  display: flex;
}

.media-editor__time-fields label {
  flex: 1;
}

.media-editor__time-fields > span {
  color: var(--me-muted);
  margin-top: 18px;
}

.media-editor__timeline {
  background: var(--me-surface);
  border-radius: 8px;
  padding: 12px;
  font-size: 12px;
}

.media-editor__timeline > div {
  color: var(--me-muted);
  justify-content: space-between;
  gap: 8px;
  margin-bottom: 8px;
  display: flex;
}

.media-editor__timeline label {
  align-items: center;
  gap: 10px;
  display: flex;
}

.media-editor__timeline input {
  min-width: 0;
  accent-color: var(--me-accent);
  flex: 1;
}

.media-editor__hint {
  color: var(--me-muted);
  font-size: 12px;
}

.media-editor__error {
  color: var(--me-error);
  font-size: 12px;
}

.media-editor__video-placeholder {
  border: 1px dashed var(--me-border);
  color: var(--me-muted);
  text-align: center;
  border-radius: 8px;
  margin: 14px 0;
  padding: 28px 12px;
}

.media-editor__dialog footer {
  justify-content: flex-end;
  gap: 8px;
  margin-top: 18px;
  display: flex;
}

@media (max-width: 600px) {
  .media-editor__toolbar {
    gap: 3px;
    padding: 6px;
  }

  .media-editor__toolbar button {
    min-height: 36px;
  }

  .media-editor__content, .media-editor input, .media-editor select, .media-editor__dialog input, .media-editor__dialog select {
    font-size: 16px;
  }

  .media-editor__dialog {
    padding: 16px;
  }

  .media-editor__dialog button {
    min-height: 40px;
  }
}

@media (forced-colors: active) {
  .media-editor__mention, .media-editor__clip {
    border: 1px solid canvastext;
  }

  .media-editor__toolbar button[aria-pressed="true"], .media-editor__suggestions button[aria-selected="true"] {
    outline: 2px solid highlight;
  }
}

.media-editor__mention-preview {
  z-index: 10005;
  background: none;
  border: 0;
  border-radius: 8px;
  flex-direction: column;
  padding: 0;
  display: flex;
  position: fixed;
  overflow: hidden;
  box-shadow: 0 8px 24px #0003;
}

.media-editor__mention-preview img, .media-editor__mention-preview video {
  object-fit: contain;
  border-radius: inherit;
  border: 0;
  width: 100%;
  height: 100%;
  min-height: 0;
  display: block;
}

.media-editor__mention-preview > p {
  text-align: center;
  color: var(--me-muted);
  background: var(--me-bg);
  flex: 1;
  place-items: center;
  margin: 0;
  padding: 16px 8px;
  display: grid;
}

.media-editor__mention-preview[data-media-mention-preview-kind="text"] {
  border: 1px solid var(--me-border);
  background: var(--me-bg);
  box-shadow: 0 12px 32px #0008;
}

.media-editor__mention-preview-text {
  min-height: 0;
  color: var(--me-text);
  flex-direction: column;
  flex: 1;
  gap: 8px;
  padding: 14px 16px;
  display: flex;
}

.media-editor__mention-preview-text strong {
  color: var(--me-text);
  text-overflow: ellipsis;
  white-space: nowrap;
  flex: none;
  font-size: 13px;
  font-weight: 600;
  overflow: hidden;
}

.media-editor__mention-preview-text p {
  min-height: 0;
  color: var(--me-text);
  text-align: left;
  white-space: pre-wrap;
  overflow-wrap: anywhere;
  margin: 0;
  font-size: 13px;
  line-height: 1.65;
  overflow: auto;
}

/* [project]/src/components/common/ThreeDotLoader.module.css [app-client] (css) */
.ThreeDotLoader-module__okUOKW__threeBody {
  --uib-size: 35px;
  --uib-speed: .8s;
  --uib-color: #5d3fd3;
  width: var(--uib-size);
  height: var(--uib-size);
  animation: ThreeDotLoader-module__okUOKW__spin78236 calc(var(--uib-speed) * 2.5) infinite linear;
  display: inline-block;
  position: relative;
}

.ThreeDotLoader-module__okUOKW__threeBodyDot {
  width: 30%;
  height: 100%;
  position: absolute;
}

.ThreeDotLoader-module__okUOKW__threeBodyDot:after {
  content: "";
  background-color: var(--uib-color);
  border-radius: 50%;
  width: 100%;
  height: 0%;
  padding-bottom: 100%;
  position: absolute;
}

.ThreeDotLoader-module__okUOKW__threeBodyDot:first-child {
  transform-origin: 50% 85%;
  bottom: 5%;
  left: 0;
  transform: rotate(60deg);
}

.ThreeDotLoader-module__okUOKW__threeBodyDot:first-child:after {
  animation: ThreeDotLoader-module__okUOKW__wobble1 var(--uib-speed) infinite ease-in-out;
  animation-delay: calc(var(--uib-speed) * -.3);
  bottom: 0;
}

.ThreeDotLoader-module__okUOKW__threeBodyDot:nth-child(2) {
  transform-origin: 50% 85%;
  bottom: 5%;
  right: 0;
  transform: rotate(-60deg);
}

.ThreeDotLoader-module__okUOKW__threeBodyDot:nth-child(2):after {
  animation: ThreeDotLoader-module__okUOKW__wobble1 var(--uib-speed) infinite calc(var(--uib-speed) * -.15) ease-in-out;
  bottom: 0;
}

.ThreeDotLoader-module__okUOKW__threeBodyDot:nth-child(3) {
  bottom: -5%;
  left: 0;
  transform: translateX(116.666%);
}

.ThreeDotLoader-module__okUOKW__threeBodyDot:nth-child(3):after {
  animation: ThreeDotLoader-module__okUOKW__wobble2 var(--uib-speed) infinite ease-in-out;
  top: 0;
}

@keyframes ThreeDotLoader-module__okUOKW__spin78236 {
  0% {
    transform: rotate(0);
  }

  100% {
    transform: rotate(360deg);
  }
}

@keyframes ThreeDotLoader-module__okUOKW__wobble1 {
  0%, 100% {
    opacity: 1;
    transform: translateY(0%)scale(1);
  }

  50% {
    opacity: .8;
    transform: translateY(-66%)scale(.65);
  }
}

@keyframes ThreeDotLoader-module__okUOKW__wobble2 {
  0%, 100% {
    opacity: 1;
    transform: translateY(0%)scale(1);
  }

  50% {
    opacity: .8;
    transform: translateY(66%)scale(.65);
  }
}

@media (prefers-reduced-motion: reduce) {
  .ThreeDotLoader-module__okUOKW__threeBody, .ThreeDotLoader-module__okUOKW__threeBodyDot:after {
    animation: none;
  }
}

/*# sourceMappingURL=_1tqk1ry._.css.map*/