@charset "UTF-8";@import url("https://fonts.googleapis.com/css2?family=Inter:wght@100&family=Montserrat:wght@400;500;600;700&display=swap");body {
  padding: 0;
  margin: 0;
}

.preloader {
  position: "fixed";
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.preloader-element {
  width: 32px;
  height: 32px;
  position: relative;
  border-radius: 50%;
  color: #01c864;
  animation: fill 1s ease-in infinite alternate;
}
.preloader-element::before,
.preloader-element::after {
  content: "";
  position: absolute;
  height: 100%;
  width: 100%;
  border-radius: 50%;
  left: 48px;
  top: 0;
  animation: fill 0.9s ease-in infinite alternate;
}

.preloader-element::after {
  left: auto;
  right: 48px;
  animation-duration: 1.1s;
}

@keyframes fill {
  0% {
    box-shadow: 0 0 0 2px inset;
  }
  100% {
    box-shadow: 0 0 0 10px inset;
  }
}

html {
  font-size: 0.8rem;
}
html {
  --color-primary: #1570EF;
  --color-primary-hover: #0D57BF;
  --color-primary-active: #0A418F;
  --color-secondary: #3C4B67;
  --bg-dark-color: #101828;
}
.login * {
  font-family: "Inter", sans-serif;
}
.login input[type=password] {
  font-family: monospace; /* Ensures uniform character width */
}
.login input[type=password]::placeholder {
  font-family: "Inter", sans-serif;
}
.login input {
  caret-color: #0082ff;
}
.editor-container {
  border: 1px solid #ccc;
  border-radius: 4px;
  padding: 10px;
  max-width: 600px;
  margin: 20px auto;
}

.editor-input {
  min-height: 100px;
  outline: none;
  padding: 10px !important;
  font-size: 16px;
}

.editor-placeholder {
  color: #999;
  position: absolute;
  pointer-events: none;
  top: 40px; /* Учитываем высоту панели инструментов */
  left: 10px;
}

.toolbar {
  margin-bottom: 10px;
}

.toolbar button {
  margin-right: 5px;
  padding: 5px 10px;
  cursor: pointer;
}

.editor-text-bold {
  font-weight: bold;
}

.editor-text-italic {
  font-style: italic;
}

.editor-text-underline {
  text-decoration: underline;
}

.editor-input h1 {
  font-size: 28px;
  font-weight: 500;
}
.editor-input h2 {
  font-size: 24px;
  font-weight: 500;
}
.editor-input h3 {
  font-size: 18px;
  font-weight: 500;
}
.editor-input {
  padding: 40px !important;
  font-size: 14px;
  line-height: 24px;
  min-height: 1123px;
}
.editor-input ul, .editor-input ol {
  padding-left: 20px;
}
.editor-input ul li, .editor-input ol li {
  list-style-position: inside;
}

.option {
  position: relative !important;
}
.option .editor-input {
  padding: 10px !important;
  min-height: 30px;
}

.table-editor .editor-input {
  padding: 10px !important;
  min-height: 30px;
  height: 100%;
}

.PlaygroundEditorTheme__tableScrollableWrapper {
  overflow-x: auto;
  margin: 0px 25px 30px 0px;
}

.PlaygroundEditorTheme__tableScrollableWrapper > .PlaygroundEditorTheme__table {
  /* Remove the table's vertical margin and put it on the wrapper */
  margin-top: 0;
  margin-bottom: 0;
}

.PlaygroundEditorTheme__tableAlignmentCenter {
  margin-left: auto;
  margin-right: auto;
}

.PlaygroundEditorTheme__tableAlignmentRight {
  margin-left: auto;
}

.PlaygroundEditorTheme__table {
  border-collapse: collapse;
  border-spacing: 0;
  overflow-y: scroll;
  overflow-x: scroll;
  table-layout: fixed;
  width: fit-content;
  margin-top: 25px;
  margin-bottom: 30px;
}

.PlaygroundEditorTheme__tableScrollableWrapper.PlaygroundEditorTheme__tableFrozenRow {
  /* position:sticky needs overflow:clip or visible
     https://github.com/w3c/csswg-drafts/issues/865#issuecomment-350585274 */
  overflow-x: clip;
}

.PlaygroundEditorTheme__tableFrozenRow tr:nth-of-type(1) > td {
  overflow: clip;
  background-color: #ffffff;
  position: sticky;
  z-index: 2;
  top: 44px;
}

.PlaygroundEditorTheme__tableFrozenRow tr:nth-of-type(1) > th {
  overflow: clip;
  background-color: #f2f3f5;
  position: sticky;
  z-index: 2;
  top: 44px;
}

.PlaygroundEditorTheme__tableFrozenRow tr:nth-of-type(1) > th:after,
.PlaygroundEditorTheme__tableFrozenRow tr:nth-of-type(1) > td:after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  border-bottom: 1px solid #bbb;
}

.PlaygroundEditorTheme__tableFrozenColumn tr > td:first-child {
  background-color: #ffffff;
  position: sticky;
  z-index: 2;
  left: 0;
}

.PlaygroundEditorTheme__tableFrozenColumn tr > th:first-child {
  background-color: #f2f3f5;
  position: sticky;
  z-index: 2;
  left: 0;
}

.PlaygroundEditorTheme__tableFrozenColumn tr > :first-child::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  height: 100%;
  border-right: 1px solid #bbb;
}

.PlaygroundEditorTheme__tableRowStriping tr:nth-child(even),
.PlaygroundEditorTheme__tableFrozenColumn .PlaygroundEditorTheme__table.PlaygroundEditorTheme__tableRowStriping tr:nth-child(even) > td:first-child {
  background-color: #f2f5fb;
}

.PlaygroundEditorTheme__tableSelection *::selection {
  background-color: transparent;
}

.PlaygroundEditorTheme__tableSelected {
  outline: 2px solid rgb(60, 132, 244);
}

.PlaygroundEditorTheme__tableCell {
  border: 1px solid #bbb;
  width: 75px;
  vertical-align: top;
  text-align: start;
  padding: 6px 8px;
  position: relative;
  outline: none;
  overflow: auto;
}

/*
  A firefox workaround to allow scrolling of overflowing table cell
  ref: https://bugzilla.mozilla.org/show_bug.cgi?id=1904159
*/
.PlaygroundEditorTheme__tableCell > * {
  overflow: inherit;
}

.PlaygroundEditorTheme__tableCellResizer {
  position: absolute;
  right: -4px;
  height: 100%;
  width: 8px;
  cursor: ew-resize;
  z-index: 10;
  top: 0;
}

.PlaygroundEditorTheme__tableCellHeader {
  background-color: #f2f3f5;
  text-align: start;
}

.PlaygroundEditorTheme__tableCellSelected {
  caret-color: transparent;
}

.PlaygroundEditorTheme__tableCellSelected::after {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  top: 0;
  background-color: highlight;
  mix-blend-mode: multiply;
  content: "";
  pointer-events: none;
}

.PlaygroundEditorTheme__tableAddColumns {
  position: absolute;
  background-color: #eee;
  height: 100%;
  animation: table-controls 0.2s ease;
  border: 0;
  cursor: pointer;
}

.PlaygroundEditorTheme__tableAddColumns:after {
  background-image: url(../images/icons/plus.svg);
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  display: block;
  content: " ";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0.4;
}

.PlaygroundEditorTheme__tableAddColumns:hover,
.PlaygroundEditorTheme__tableAddRows:hover {
  background-color: #c9dbf0;
}

.PlaygroundEditorTheme__tableAddRows {
  position: absolute;
  width: calc(100% - 25px);
  background-color: #eee;
  animation: table-controls 0.2s ease;
  border: 0;
  cursor: pointer;
}

.PlaygroundEditorTheme__tableAddRows:after {
  background-image: url(../images/icons/plus.svg);
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  display: block;
  content: " ";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0.4;
}

@keyframes table-controls {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.PlaygroundEditorTheme__tableCellResizeRuler {
  display: block;
  position: absolute;
  width: 1px;
  background-color: rgb(60, 132, 244);
  height: 100%;
  top: 0;
}

.PlaygroundEditorTheme__tableCellActionButtonContainer {
  display: block;
  right: 5px;
  top: 6px;
  position: absolute;
  z-index: 4;
  width: 20px;
  height: 20px;
}

.PlaygroundEditorTheme__tableCellActionButton {
  background-color: #eee;
  display: block;
  border: 0;
  border-radius: 20px;
  width: 20px;
  height: 20px;
  color: #222;
  cursor: pointer;
}

.PlaygroundEditorTheme__tableCellActionButton:hover {
  background-color: #ddd;
}._toolbar_1p3fh_1 {
  display: flex;
  align-items: center;
  grid-gap: 4px;
  flex: 1;
  margin-left: 20px;
  background-color: white;
}
._toolbar_1p3fh_1._float_1p3fh_9 {
  border-radius: 6px;
  overflow: hidden;
  padding: 2px;
  border: 1px solid #e0e0e0;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -2px rgba(0, 0, 0, 0.1);
  margin-left: 0;
}
._toolbar_1p3fh_1 ._iconButton_1p3fh_17 {
  width: 36px;
  height: 36px;
}
._toolbar_1p3fh_1 ._iconButton_1p3fh_17._active_1p3fh_21 {
  background-color: #F2F4F7;
}
._toolbar_1p3fh_1 ._iconButton_1p3fh_17 svg {
  width: 20px;
  height: 20px;
}
._toolbar_1p3fh_1 ._button_1p3fh_28 {
  height: 36px;
}
._toolbar_1p3fh_1 ._button_1p3fh_28._active_1p3fh_21 {
  background-color: #F2F4F7;
}
._toolbar_1p3fh_1 ._separator_1p3fh_34 {
  height: 24px;
  width: 1px;
  background-color: #EAECF0;
}
._toolbar_1p3fh_1 ._menuList_1p3fh_39 {
  padding: 4px 0;
  border-radius: 8px;
  border: 1px solid #EAECF0;
  width: max-content;
  min-width: auto;
}
._toolbar_1p3fh_1 ._menuList_1p3fh_39 ._menuItem_1p3fh_46 {
  padding: 10px 14px;
  color: #475467;
  display: flex;
  align-items: center;
  grid-gap: 5px;
}.react-select-redactor {
  display: inline-block !important;
  width: 150px;
}

.react-select-redactor__control {
  min-height: 28px !important;
  height: 28px !important;
}._header_3loro_1 {
  display: flex;
  align-items: center;
  padding: 10px 16px;
  grid-gap: 4px;
  background-color: white;
  border-bottom: 1px solid #EAECF0;
}.react-select-micro__control {
  font-size: 14px;
}.rc-segmented {
  display: inline-block;
  padding: 2px;
  background-color: rgba(0, 0, 0, 0.04);
}
.rc-segmented-group {
  position: relative;
  display: flex;
  flex-direction: row;
  align-items: stretch;
  justify-content: flex-start;
  width: 100%;
  border-radius: 2px;
}
.rc-segmented-item {
  position: relative;
  min-height: 28px;
  padding: 4px 10px;
  color: rgba(0, 0, 0, 0.85);
  text-align: center;
  cursor: pointer;
}
.rc-segmented-item-selected {
  background-color: white;
  color: #262626;
}
.rc-segmented-item:hover,
.rc-segmented-item:focus {
  color: #262626;
}
.rc-segmented-item-disabled,
.rc-segmented-item-disabled:hover,
.rc-segmented-item-disabled:focus {
  color: rgba(0, 0, 0, 0.25);
  cursor: not-allowed;
}
.rc-segmented-item-label {
  z-index: 2;
  line-height: 24px;
}
.rc-segmented-item-input {
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 0;
  opacity: 0;
  pointer-events: none;
}
.rc-segmented-thumb {
  background-color: white;
  position: absolute;
  width: 0;
  height: 100%;
  padding: 4px 0;
  transition: transform 0.3s cubic-bezier(0.645, 0.045, 0.355, 1), width 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
}
.rc-segmented-vertical .rc-segmented-group {
  flex-direction: column;
}
.rc-segmented-vertical .rc-segmented-item {
  width: 100%;
  text-align: left;
}
.rc-segmented-vertical .rc-segmented-thumb {
  width: 100%;
  height: 0;
  padding: 0 4px;
  transition: transform 0.3s cubic-bezier(0.645, 0.045, 0.355, 1), height 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
}
.rc-segmented-disabled .rc-segmented-item,
.rc-segmented-disabled .rc-segmented-item:hover,
.rc-segmented-disabled .rc-segmented-item:focus,
.rc-segmented-disabled .rc-segmented-item:hover,
.rc-segmented-disabled .rc-segmented-item:hover:hover,
.rc-segmented-disabled .rc-segmented-item:focus:hover,
.rc-segmented-disabled .rc-segmented-item:focus,
.rc-segmented-disabled .rc-segmented-item:hover:focus,
.rc-segmented-disabled .rc-segmented-item:focus:focus {
  color: rgba(0, 0, 0, 0.25);
  cursor: not-allowed;
}
.rc-segmented-thumb-motion-appear-active,
.rc-segmented-thumb-motion-enter-active {
  transition: transform 0.3s cubic-bezier(0.645, 0.045, 0.355, 1), width 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
  will-change: transform, width;
}
.rc-segmented-rtl {
  direction: rtl;
}
.rc-segmented-item:focus {
  outline: none;
}
.rc-segmented-item-focused {
  border-radius: 2px;
  box-shadow: 0 0 0 2px rgba(24, 144, 255, 0.2);
}
.rc-segmented {
  width: 100%;
  background-color: transparent;
  padding: 0;
}

.rc-segmented-thumb {
  background-color: var(--color-primary);
  color: white;
  padding: 6px 12px;
  border-radius: 4px;
  height: 32px;
  max-height: 32px;
  transition-delay: 0;
  transition-duration: 0.2s;
  transition-timing-function: linear;
}

.sm .rc-segmented-group {
  padding: 2px !important;
  background-color: #F6F6F6 !important;
  border: none !important;
  border-radius: 8px !important;
}
.sm .rc-segmented-thumb {
  height: 26px !important;
  border-radius: 5px !important;
  background-color: white !important;
  color: var(--color-primary) !important;
  box-shadow: 0px 0px 9px rgba(0, 0, 0, 0.11) !important;
}
.sm .rc-segmented-item {
  height: 26px !important;
  padding: 0 !important;
  width: 32px !important;
  border-radius: 5px !important;
}
.sm .rc-segmented-item.rc-segmented-item-selected {
  background-color: white !important;
  color: var(--color-primary) !important;
  box-shadow: 0px 0px 9px rgba(0, 0, 0, 0.11) !important;
}

.rc-segmented-group {
  width: 100% !important;
  border-radius: 8px;
  border: 1px solid #D0D5DD;
  padding: 4px;
  background-color: transparent;
}
.rc-segmented-group .rc-segmented-item {
  flex: 1;
  padding: 6px 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #344054;
  font-size: 13px;
  line-height: 20px;
  height: 32px;
  font-weight: 600;
}
.rc-segmented-group .rc-segmented-item.rc-segmented-item-selected {
  background-color: var(--color-primary);
  color: white;
  border-radius: 4px;
}._list_ag8mz_1 {
  padding: 2px;
}

._row_ag8mz_5 {
  display: flex;
  align-items: center;
  padding: 10px 8px;
  border-radius: 6px;
  cursor: pointer;
}
._row_ag8mz_5:hover {
  background-color: #F2F4F7;
}
._row_ag8mz_5 ._label_ag8mz_15 {
  font-size: 14px;
  line-height: 20px;
  font-weight: 500;
  flex: 1;
}