:root {
    --lexical-indent-base-value: 40px;
}

[data-glit-text-block="true"] {
    margin-block: 0;
}

/*.GlitEditorTheme__paragraph {*/
/*    margin: 0;*/
/*    position: relative;*/
/*}*/

.GlitEditorTheme__quote {
    margin: 0;
    margin-left: 20px;
    margin-bottom: 10px;
    font-size: 15px;
    color: rgb(101, 103, 107);
    border-left-color: rgb(206, 208, 212);
    border-left-width: 4px;
    border-left-style: solid;
    padding-left: 16px;
}

/*.GlitEditorTheme__h1 {*/
/*    font-size: 24px;*/
/*    color: rgb(5, 5, 5);*/
/*    font-weight: 400;*/
/*    margin: 0;*/
/*}*/

/*.GlitEditorTheme__h2 {*/
/*    font-size: 15px;*/
/*    color: rgb(101, 103, 107);*/
/*    font-weight: 700;*/
/*    margin: 0;*/
/*    text-transform: uppercase;*/
/*}*/

/*.GlitEditorTheme__h3 {*/
/*    font-size: 12px;*/
/*    margin: 0;*/
/*    text-transform: uppercase;*/
/*}*/

/*.GlitEditorTheme__textBold {*/
/*    font-weight: bold;*/
/*}*/

/*.GlitEditorTheme__paragraph mark {*/
/*    background-color: unset;*/
/*}*/

/*.GlitEditorTheme__textHighlight {*/
/*    background: rgba(255, 212, 0, 0.14);*/
/*    border-bottom: 2px solid rgba(255, 212, 0, 0.3);*/
/*}*/

/*.GlitEditorTheme__textItalic {*/
/*    font-style: italic;*/
/*}*/

/*.GlitEditorTheme__textUnderline {*/
/*    text-decoration: underline;*/
/*}*/

/*.GlitEditorTheme__textStrikethrough {*/
/*    text-decoration: line-through;*/
/*}*/

/*.GlitEditorTheme__textUnderlineStrikethrough {*/
/*    text-decoration: underline line-through;*/
/*}*/

.GlitEditorTheme__tabNode {
    position: relative;
    text-decoration: none;
}

/*.GlitEditorTheme__tabNode.GlitEditorTheme__textUnderline::after {*/
/*    content: '';*/
/*    position: absolute;*/
/*    left: 0;*/
/*    right: 0;*/
/*    bottom: 0.15em;*/
/*    border-bottom: 0.1em solid currentColor;*/
/*}*/

/*.GlitEditorTheme__tabNode.GlitEditorTheme__textStrikethrough::before {*/
/*    content: '';*/
/*    position: absolute;*/
/*    left: 0;*/
/*    right: 0;*/
/*    top: 0.69em;*/
/*    border-top: 0.1em solid currentColor;*/
/*}*/

/*.GlitEditorTheme__tabNode.GlitEditorTheme__textUnderlineStrikethrough::before,*/
/*.GlitEditorTheme__tabNode.GlitEditorTheme__textUnderlineStrikethrough::after {*/
/*    content: '';*/
/*    position: absolute;*/
/*    left: 0;*/
/*    right: 0;*/
/*}*/

/*.GlitEditorTheme__tabNode.GlitEditorTheme__textUnderlineStrikethrough::before {*/
/*    top: 0.69em;*/
/*    border-top: 0.1em solid currentColor;*/
/*}*/

/*.GlitEditorTheme__tabNode.GlitEditorTheme__textUnderlineStrikethrough::after {*/
/*    bottom: 0.05em;*/
/*    border-bottom: 0.1em solid currentColor;*/
/*}*/

/*.GlitEditorTheme__textSubscript {*/
/*    font-size: 0.8em;*/
/*    vertical-align: sub !important;*/
/*}*/

/*.GlitEditorTheme__textSuperscript {*/
/*    font-size: 0.8em;*/
/*    vertical-align: super;*/
/*}*/

/*.GlitEditorTheme__textCode {*/
/*    background-color: rgb(240, 242, 245);*/
/*    padding: 1px 0.25rem;*/
/*    font-family: Menlo, Consolas, Monaco, monospace;*/
/*    font-size: 94%;*/
/*}*/

.GlitEditorTheme__textLowercase {
    text-transform: lowercase !important;
}

.GlitEditorTheme__textUppercase {
    text-transform: uppercase !important;
}

.GlitEditorTheme__textCapitalize {
    text-transform: capitalize !important;
}

/*.GlitEditorTheme__hashtag {*/
/*    background-color: rgba(88, 144, 255, 0.15);*/
/*    border-bottom: 1px solid rgba(88, 144, 255, 0.3);*/
/*}*/

/*.GlitEditorTheme__link {*/
/*    color: rgb(33, 111, 219);*/
/*    text-decoration: none;*/
/*}*/

/*.GlitEditorTheme__link:hover {*/
/*    text-decoration: underline;*/
/*    cursor: pointer;*/
/*}*/

.GlitEditorTheme__tableScrollableWrapper {
    overflow-x: auto;
    margin: 0px 0px 5px 0px;
}

.GlitEditorTheme__tableScrollRight {
    box-shadow: inset -10px 0 10px rgba(0, 0, 0, 0.15);
}

.GlitEditorTheme__tableScrollLeft {
    box-shadow: inset 10px 0 10px rgba(0, 0, 0, 0.15);
}

.GlitEditorTheme__tableScrollMiddle {
    box-shadow: inset 10px 0 10px rgba(0, 0, 0, 0.15),
    inset -10px 0 10px rgba(0, 0, 0, 0.15);
}

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

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

.GlitEditorTheme__tableAlignmentRight {
    margin-left: auto;
}

.GlitEditorTheme__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;
}

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

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

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

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

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

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

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

.GlitEditorTheme__tableRowStriping tr:nth-child(even),
.GlitEditorTheme__tableFrozenColumn
.GlitEditorTheme__table.GlitEditorTheme__tableRowStriping
tr:nth-child(even)
> td:first-child {
    background-color: #f2f5fb;
}

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

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

.GlitEditorTheme__tableCell {
    border: 0;
    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
*/
.GlitEditorTheme__tableCell > * {
    overflow: inherit;
}

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

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

.GlitEditorTheme__tableCellSelected {
    caret-color: transparent;
}

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

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

.GlitEditorTheme__tableAddColumns:after {
    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;
}

.GlitEditorTheme__tableAddColumns:hover,
.GlitEditorTheme__tableAddRows:hover {
    background-color: #c9dbf0;
}

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

.GlitEditorTheme__tableAddRows:after {
    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;
    }
}

.GlitEditorTheme__tableCellResizeRuler {
    display: block;
    position: absolute;
    width: 1px;
    background-color: rgb(60, 132, 244);
    height: 100%;
    top: 0;
}

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

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

.GlitEditorTheme__tableCellActionButton:hover {
    background-color: #ddd;
}

.GlitEditorTheme__ol1,
.GlitEditorTheme__ol2,
.GlitEditorTheme__ol3,
.GlitEditorTheme__ol4,
.GlitEditorTheme__ol5,
.GlitEditorTheme__ul {
    margin: 0 0 1em;
    padding-left: 2em;
    list-style-position: outside;
}

.GlitEditorTheme__tableScrollableWrapper[data-glit-table-width-mode="full"],
.GlitEditorTheme__table[data-glit-table-width-mode="full"] {
    width: 100% !important;
}

.GlitEditorTheme__ol1 {
    list-style-type: decimal;
}

.GlitEditorTheme__ol2 {
    list-style-type: upper-alpha;
}

.GlitEditorTheme__ol3 {
    list-style-type: lower-alpha;
}

.GlitEditorTheme__ol4 {
    list-style-type: upper-roman;
}

.GlitEditorTheme__ol5 {
    list-style-type: lower-roman;
}

.GlitEditorTheme__ul {
    list-style-type: disc;
}

.GlitEditorTheme__listItem {
    margin: 0.25em 0;
}

[data-glit-backdrop-filter="true"] {
    /* A nearly transparent paint layer makes backdrop-filter consistently
       composite in Chromium/WebKit without visibly tinting the content. */
    background-color: rgb(255 255 255 / 0.01) !important;
}

.GlitEditorTheme__listItemChecked,
.GlitEditorTheme__listItemUnchecked {
    position: relative;
    margin-left: 0.5em;
    margin-right: 0.5em;
    padding-left: 1.5em;
    padding-right: 1.5em;
    list-style-type: none;
    outline: none;
    display: block;
    min-height: 1.5em;
}

.GlitEditorTheme__listItemChecked > *,
.GlitEditorTheme__listItemUnchecked > * {
    margin-left: 0.01em;
}

.GlitEditorTheme__listItemUnchecked:before,
.GlitEditorTheme__listItemChecked:before {
    content: '\200B';
    width: 0.9em;
    height: 0.9em;
    top: 50%;
    left: 0;
    cursor: pointer;
    display: block;
    background-size: cover;
    position: absolute;
    transform: translateY(-50%);
}

.GlitEditorTheme__listItemChecked {
    text-decoration: line-through;
}

.GlitEditorTheme__listItemUnchecked:focus:before,
.GlitEditorTheme__listItemChecked:focus:before {
    box-shadow: 0 0 0 2px #a6cdfe;
    border-radius: 2px;
}

.GlitEditorTheme__listItemUnchecked:before {
    border: 1px solid #999;
    border-radius: 2px;
}

.GlitEditorTheme__listItemChecked:before {
    border: 1px solid rgb(61, 135, 245);
    border-radius: 2px;
    background-color: #3d87f5;
    background-repeat: no-repeat;
}

.GlitEditorTheme__listItemChecked:after {
    content: '';
    cursor: pointer;
    border-color: #fff;
    border-style: solid;
    position: absolute;
    display: block;
    top: 45%;
    width: 0.2em;
    left: 0.35em;
    height: 0.4em;
    transform: translateY(-50%) rotate(45deg);
    border-width: 0 0.1em 0.1em 0;
}

/*.GlitEditorTheme__nestedListItem {*/
/*    list-style-type: none;*/
/*}*/

/*.GlitEditorTheme__nestedListItem:before,*/
/*.GlitEditorTheme__nestedListItem:after {*/
/*    display: none;*/
/*}*/

.glit-button-size--small {
    min-height: 32px !important;
    padding: 6px 12px !important;
    font-size: 13px !important;
    line-height: 1.25 !important;
}

.glit-button-size--medium {
    min-height: 40px !important;
    padding: 10px 18px !important;
    font-size: 14px !important;
    line-height: 1.25 !important;
}

.glit-button-size--large {
    min-height: 48px !important;
    padding: 13px 24px !important;
    font-size: 16px !important;
    line-height: 1.25 !important;
}

.glit-button-size--small,
.glit-button-size--medium,
.glit-button-size--large {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    max-width: 100%;
    white-space: normal;
    overflow-wrap: anywhere;
}

.GlitEditorTheme__layoutContainer {
    display: grid;
    row-gap: 10px;
    margin: 10px 0;
    min-width: 0;
    max-width: 100%;
}

.GlitEditorTheme__layoutItem {
    border: 1px dashed #ddd;
    min-width: 0;
    max-width: 100%;
    overflow-wrap: anywhere;
    word-break: normal;
}

.GlitEditorTheme__layoutContainer[data-glit-layout-column-borders="false"] > .GlitEditorTheme__layoutItem {
    border-color: transparent;
}

.GlitEditorTheme__layoutItem > *,
.GlitEditorTheme__layoutItem img,
.GlitEditorTheme__layoutItem video,
.GlitEditorTheme__layoutItem iframe,
.GlitEditorTheme__layoutItem table {
    min-width: 0;
    max-width: 100%;
}

.GlitEditorTheme__layoutItem img {
    height: auto;
}

@media (max-width: 1024px) {
    .GlitEditorTheme__layoutContainer[data-glit-layout-mobile-behavior="stack"][data-glit-layout-mobile-breakpoint="lg"] {
        grid-template-columns: minmax(0, 1fr) !important;
        grid-template-rows: none !important;
    }
}

@media (max-width: 768px) {
    .GlitEditorTheme__layoutContainer[data-glit-layout-mobile-behavior="stack"][data-glit-layout-mobile-breakpoint="md"] {
        grid-template-columns: minmax(0, 1fr) !important;
        grid-template-rows: none !important;
    }
}

@media (max-width: 640px) {
    .GlitEditorTheme__layoutContainer[data-glit-layout-mobile-behavior="stack"][data-glit-layout-mobile-breakpoint="sm"] {
        grid-template-columns: minmax(0, 1fr) !important;
        grid-template-rows: none !important;
    }
}

.GlitEditorTheme__video {
    display: inline-block;
    max-width: 100%;
}

.GlitEditorTheme__video > video {
    display: block;
    max-width: 100%;
}

/*.GlitEditorTheme__hr {*/
/*    padding: 2px 2px;*/
/*    border: none;*/
/*    margin: 1em 0;*/
/*    cursor: pointer;*/
/*}*/

/*.GlitEditorTheme__hr:after {*/
/*    content: '';*/
/*    display: block;*/
/*    height: 2px;*/
/*    background-color: #ccc;*/
/*    line-height: 2px;*/
/*}*/

/*.GlitEditorTheme__hr.GlitEditorTheme__hrSelected {*/
/*    outline: 2px solid rgb(60, 132, 244);*/
/*    user-select: none;*/
/*}*/

.GlitEditorTheme__contextMenu {
    outline: 0;
    background: #fff;
    border: 1px solid #ddd;
    box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.3);
    border-radius: 8px;
}

.GlitEditorTheme__contextMenu button:first-child {
    border-radius: 8px 8px 0px 0px;
}

.GlitEditorTheme__contextMenu button:last-child {
    border-radius: 0px 0px 8px 8px;
}

.GlitEditorTheme__contextMenuItem {
    width: 100%;
    display: block;
}

.GlitEditorTheme__contextMenuItem {
    display: flex;
    justify-content: left;
    width: 100%;
    background-color: #fff;
    color: #050505;
    border: 0;
    border-radius: 0px;
    font-size: 15px;
    text-align: left;
    line-height: 20px;
    padding: 8px;
    padding-right: 14px;
    outline: 0;
    cursor: pointer;
}

.GlitEditorTheme__contextMenuItem.open {
    background: #ddd;
}

.GlitEditorTheme__contextMenuItem:focus,
.GlitEditorTheme__contextMenuItem:not([disabled]):active {
    background: #eee;
}

.GlitEditorTheme__contextMenuItem:disabled {
    background: #fff;
    color: #aaa;
    cursor: not-allowed;
}

.GlitEditorTheme__contextMenuItemIcon {
    width: 20px;
    margin-right: 8px;
    background-repeat: no-repeat;
    background-size: contain;
}

.GlitEditorTheme__container,
.GlitEditorTheme__containerFullWidth {
    box-sizing: border-box;
    width: 100%;
}

.GlitEditorTheme__container {
    max-width: 1140px;
    margin: 0 auto;
    padding: 16px;
}

.GlitEditorTheme__containerFullWidth,
.GlitEditorTheme__container[data-glit-container-width="full"] {
    max-width: unset;
    margin: 0;
    padding: 0;
}

[data-glit-container][data-glit-background-video-host="true"] {
    position: relative;
    isolation: isolate;
    overflow: hidden;
}

[data-glit-container][data-glit-background-video-host="true"] > video[data-glit-background-video="true"] {
    position: absolute;
    z-index: 0;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: var(--glit-background-media-fit, cover);
    object-position: var(--glit-background-media-position, center);
    pointer-events: none;
}

[data-glit-container][data-glit-background-video-host="true"] > :not(video[data-glit-background-video="true"]) {
    position: relative;
    z-index: 1;
}

[data-glit-anchor-heading="true"] {
    scroll-margin-top: 96px;
}

.glit-navigation {
    box-sizing: border-box;
    width: min(100%, 760px);
    margin: 24px 0;
    padding: 22px 24px;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    background: linear-gradient(145deg, #ffffff 0%, #f8fafc 100%);
    color: #0f172a;
    box-shadow: 0 8px 28px rgba(15, 23, 42, 0.06);
}

.glit-navigation--empty:not(.glit-navigation--editor) {
    display: none;
}

.glit-navigation__title {
    margin: 0 0 14px;
    color: inherit;
    font-size: 18px;
    font-weight: 700;
    line-height: 1.3;
}

.glit-navigation__list {
    display: grid;
    gap: 8px;
    margin: 0;
    padding-left: 24px;
}

.glit-navigation__list--plain {
    padding-left: 0;
    list-style: none;
}

.glit-navigation__item {
    min-width: 0;
    padding-left: 2px;
}

.glit-navigation__item--h3 {
    margin-left: 18px;
    color: #475569;
    font-size: 0.94em;
}

.glit-navigation__link {
    color: #2563eb;
    line-height: 1.45;
    text-decoration: none;
    overflow-wrap: anywhere;
    text-underline-offset: 3px;
}

.glit-navigation__link:hover,
.glit-navigation__link:focus-visible {
    color: #1d4ed8;
    text-decoration: underline;
}

@media (max-width: 640px) {
    .glit-navigation {
        margin: 18px 0;
        padding: 18px;
        border-radius: 12px;
    }

    .glit-navigation__item--h3 {
        margin-left: 10px;
    }
}
[data-glit-flex-layout][data-glit-flex-direction="row"] > [data-glit-flex-basis-row] {
  flex-basis: var(--glit-flex-basis-row) !important;
}

[data-glit-flex-layout][data-glit-flex-direction="column"] > [data-glit-flex-basis-column] {
  flex-basis: var(--glit-flex-basis-column) !important;
}

.glit-wysiwyg-public-edit-shell {
  position: relative;
  box-sizing: border-box;
}

.glit-wysiwyg-public-edit-host {
  position: absolute;
  z-index: 1000;
  inset: 0;
  pointer-events: none;
}

.glit-wysiwyg-public-editor-control {
  position: sticky;
  top: var(--glit-wysiwyg-public-editor-sticky-top, 72px);
  display: flex;
  width: 100%;
  min-height: 44px;
  align-items: center;
  justify-content: flex-end;
  pointer-events: none;
}

.glit-wysiwyg-public-editor-control > div,
.glit-wysiwyg-public-editor-control > span {
  max-width: min(320px, calc(100vw - 24px));
  margin-left: 12px;
  padding: 8px 12px;
  border: 1px solid rgba(148, 163, 184, .55);
  border-radius: 10px 0 0 10px;
  background: rgba(255, 255, 255, .94);
  color: #475569;
  box-shadow: 0 5px 18px rgba(15, 23, 42, .14);
  font: 500 13px/1.4 Arial, sans-serif;
  backdrop-filter: blur(8px);
  transform: translateX(var(--glit-wysiwyg-public-editor-viewport-offset, 0px));
}

.glit-wysiwyg-public-editor-control .glit-wysiwyg-open-editor-button {
  pointer-events: auto;
  display: inline-flex;
  min-height: 42px;
  max-width: min(320px, calc(100vw - 24px));
  align-items: center;
  gap: 8px;
  margin-left: 12px;
  padding: 9px 14px 9px 12px;
  border: 1px solid rgba(148, 163, 184, .65);
  border-right: 0;
  border-radius: 10px 0 0 10px;
  background: rgba(255, 255, 255, .96);
  color: #1f2937;
  box-shadow: 0 5px 18px rgba(15, 23, 42, .16);
  font: 600 13px/1.2 Arial, sans-serif;
  white-space: nowrap;
  cursor: pointer;
  backdrop-filter: blur(8px);
  transform: translateX(var(--glit-wysiwyg-public-editor-viewport-offset, 0px));
  transition: color .16s ease, background-color .16s ease, border-color .16s ease, box-shadow .16s ease;
}

.glit-wysiwyg-public-editor-control .glit-wysiwyg-open-editor-button::before {
  content: "\270E";
  font: 700 17px/1 Arial, sans-serif;
}

.glit-wysiwyg-public-editor-control .glit-wysiwyg-open-editor-button:hover {
  border-color: #2563eb;
  background: #fff;
  color: #1d4ed8;
  box-shadow: 0 7px 22px rgba(37, 99, 235, .2);
}

.glit-wysiwyg-public-editor-control .glit-wysiwyg-open-editor-button:focus-visible {
  outline: 0;
  box-shadow: 0 0 0 3px rgba(37, 99, 235, .22);
}

.glit-wysiwyg-public-editor-control .glit-wysiwyg-open-editor-button:disabled {
  color: #64748b;
  cursor: wait;
  opacity: .85;
}

.Collapsible__container { margin-bottom: 8px; border: 1px solid #dce3ec; border-radius: 8px; }
.Collapsible__title { position: relative; cursor: pointer; list-style: none; padding: 5px 5px 5px 20px; font-weight: bold; }
.Collapsible__title::marker, .Collapsible__title::-webkit-details-marker { display: none; }
.Collapsible__title::before { content: ''; position: absolute; left: 7px; top: 50%; transform: translateY(-50%); border: 4px solid transparent; border-left: 6px solid currentColor; }
.Collapsible__container[open] > .Collapsible__title::before { border: 4px solid transparent; border-top: 6px solid currentColor; border-bottom: 0; }
.Collapsible__container[data-glit-collapsible-marker="false"] > .Collapsible__title::before { display: none; }
.Collapsible__content { padding: 0 5px 5px 20px; }
