:root {
    --selectionColor: #e1f2ff;
    --inlineSelectionColor: #d4ecff;
    --bg-light: #f4f5fb;
    --grayText: #707684;
    --color-dark: #1D202B;
    --color-active-icon: #5855a3;
    --color-gray-border: rgba(201, 201, 204, .48);
    --content-width: 650px;
    --narrow-mode-right-padding: 50px;
    --toolbox-buttons-size: 26px;
    --toolbox-buttons-size--mobile: 36px;
    --icon-size: 20px;
    --icon-size--mobile: 28px;
    --block-padding-vertical: .4em;
    --color-line-gray: #EFF0F1
}

.codex-editor {
    position: relative;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    z-index: 2
}

.codex-editor .hide {
    display: none
}

.codex-editor__redactor [contenteditable]:empty:after {
    content: "\feff"
}

@media (min-width: 651px) {
    .codex-editor--narrow .codex-editor__redactor {
        margin-right: 50px
    }
}

@media (min-width: 651px) {
    .codex-editor--narrow.codex-editor--rtl .codex-editor__redactor {
        margin-left: 50px;
        margin-right: 0
    }
}

@media (min-width: 651px) {
    .codex-editor--narrow .ce-toolbar__actions {
        right: -5px
    }
}

.codex-editor-copyable {
    position: absolute;
    height: 1px;
    width: 1px;
    top: -400%;
    opacity: .001
}

.codex-editor-overlay {
    position: fixed;
    top: 0px;
    left: 0px;
    right: 0px;
    bottom: 0px;
    z-index: 999;
    pointer-events: none;
    overflow: hidden
}

.codex-editor-overlay__container {
    position: relative;
    pointer-events: auto;
    z-index: 0
}

.codex-editor-overlay__rectangle {
    position: absolute;
    pointer-events: none;
    background-color: #2eaadc33;
    border: 1px solid transparent
}

.codex-editor svg {
    max-height: 100%
}

.codex-editor path {
    stroke: currentColor
}

.codex-editor ::-moz-selection {
    background-color: #d4ecff
}

.codex-editor ::selection {
    background-color: #d4ecff
}

.codex-editor--toolbox-opened [contentEditable=true][data-placeholder]:focus:before {
    opacity: 0 !important
}

.ce-scroll-locked {
    overflow: hidden
}

.ce-scroll-locked--hard {
    overflow: hidden;
    top: calc(-1 * var(--window-scroll-offset));
    position: fixed;
    width: 100%
}

.ce-toolbar {
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    -webkit-transition: opacity .1s ease;
    transition: opacity .1s ease;
    will-change: opacity, top;
    display: none
}

.ce-toolbar--opened {
    display: block
}

.ce-toolbar__content {
    max-width: 650px;
    margin: 0 auto;
    position: relative
}

.ce-toolbar__plus {
    color: #1d202b;
    cursor: pointer;
    width: 26px;
    height: 26px;
    border-radius: 7px;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    -ms-flex-negative: 0;
    flex-shrink: 0
}

@media (max-width: 650px) {
    .ce-toolbar__plus {
        width: 36px;
        height: 36px
    }
}

@media (hover: hover) {
    .ce-toolbar__plus:hover {
        background-color: #f4f5fb
    }
}

.ce-toolbar__plus--active {
    background-color: #f4f5fb;
    -webkit-animation: bounceIn .75s 1;
    animation: bounceIn .75s 1;
    -webkit-animation-fill-mode: forwards;
    animation-fill-mode: forwards
}

.ce-toolbar__plus-shortcut {
    opacity: .6;
    word-spacing: -2px;
    margin-top: 5px
}

@media (max-width: 650px) {
    .ce-toolbar__plus {
        position: absolute;
        background-color: #fff;
        border: 1px solid #E8E8EB;
        -webkit-box-shadow: 0 3px 15px -3px rgba(13, 20, 33, .13);
        box-shadow: 0 3px 15px -3px #0d142121;
        border-radius: 6px;
        z-index: 2;
        position: static
    }

    .ce-toolbar__plus--left-oriented:before {
        left: 15px;
        margin-left: 0
    }

    .ce-toolbar__plus--right-oriented:before {
        left: auto;
        right: 15px;
        margin-left: 0
    }
}

.ce-toolbar__actions {
    position: absolute;
    right: 100%;
    opacity: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    padding-right: 5px
}

.ce-toolbar__actions--opened {
    opacity: 1
}

@media (max-width: 650px) {
    .ce-toolbar__actions {
        right: auto
    }
}

.ce-toolbar__settings-btn {
    color: #1d202b;
    width: 26px;
    height: 26px;
    border-radius: 7px;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    margin-left: 3px;
    cursor: pointer;
    user-select: none
}

@media (max-width: 650px) {
    .ce-toolbar__settings-btn {
        width: 36px;
        height: 36px
    }
}

@media (hover: hover) {
    .ce-toolbar__settings-btn:hover {
        background-color: #f4f5fb
    }
}

.ce-toolbar__settings-btn--active {
    background-color: #f4f5fb;
    -webkit-animation: bounceIn .75s 1;
    animation: bounceIn .75s 1;
    -webkit-animation-fill-mode: forwards;
    animation-fill-mode: forwards
}

@media (min-width: 651px) {
    .ce-toolbar__settings-btn {
        width: 24px
    }
}

.ce-toolbar__settings-btn--hidden {
    display: none
}

@media (max-width: 650px) {
    .ce-toolbar__settings-btn {
        position: absolute;
        background-color: #fff;
        border: 1px solid #E8E8EB;
        -webkit-box-shadow: 0 3px 15px -3px rgba(13, 20, 33, .13);
        box-shadow: 0 3px 15px -3px #0d142121;
        border-radius: 6px;
        z-index: 2;
        position: static
    }

    .ce-toolbar__settings-btn--left-oriented:before {
        left: 15px;
        margin-left: 0
    }

    .ce-toolbar__settings-btn--right-oriented:before {
        left: auto;
        right: 15px;
        margin-left: 0
    }
}

.ce-toolbar__plus svg,
.ce-toolbar__settings-btn svg {
    width: 24px;
    height: 24px
}

@media (min-width: 651px) {
    .codex-editor--narrow .ce-toolbar__plus {
        left: 5px
    }
}

@media (min-width: 651px) {
    .codex-editor--narrow .ce-toolbox .ce-popover {
        right: 0;
        left: auto;
        left: initial
    }
}

.ce-inline-toolbar {
    --y-offset: 8px;
    position: absolute;
    background-color: #fff;
    border: 1px solid #E8E8EB;
    -webkit-box-shadow: 0 3px 15px -3px rgba(13, 20, 33, .13);
    box-shadow: 0 3px 15px -3px #0d142121;
    border-radius: 6px;
    z-index: 2;
    opacity: 0;
    visibility: hidden;
    -webkit-transition: opacity .25s ease;
    transition: opacity .25s ease;
    will-change: opacity, left, top;
    top: 0;
    left: 0;
    z-index: 3
}

.ce-inline-toolbar--left-oriented:before {
    left: 15px;
    margin-left: 0
}

.ce-inline-toolbar--right-oriented:before {
    left: auto;
    right: 15px;
    margin-left: 0
}

.ce-inline-toolbar--showed {
    opacity: 1;
    visibility: visible
}

.ce-inline-toolbar [hidden] {
    display: none !important
}

.ce-inline-toolbar__toggler-and-button-wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: 100%;
    padding: 0 6px
}

.ce-inline-toolbar__buttons {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex
}

.ce-inline-toolbar__dropdown {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    padding: 6px;
    margin: 0 6px 0 -6px;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    cursor: pointer;
    border-right: 1px solid rgba(201, 201, 204, .48);
    -webkit-box-sizing: border-box;
    box-sizing: border-box
}

@media (hover: hover) {
    .ce-inline-toolbar__dropdown:hover {
        background: #f4f5fb
    }
}

.ce-inline-toolbar__dropdown--hidden {
    display: none
}

.ce-inline-toolbar__dropdown-content,
.ce-inline-toolbar__dropdown-arrow {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex
}

.ce-inline-toolbar__dropdown-content svg,
.ce-inline-toolbar__dropdown-arrow svg {
    width: 20px;
    height: 20px
}

.ce-inline-toolbar__shortcut {
    opacity: .6;
    word-spacing: -3px;
    margin-top: 3px
}

.ce-inline-tool {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    padding: 6px 1px;
    cursor: pointer;
    border: 0;
    outline: none;
    background-color: transparent;
    vertical-align: bottom;
    color: inherit;
    margin: 0;
    border-radius: 0;
    line-height: normal
}

.ce-inline-tool svg {
    width: 20px;
    height: 20px
}

@media (max-width: 650px) {
    .ce-inline-tool svg {
        width: 28px;
        height: 28px
    }
}

@media (hover: hover) {
    .ce-inline-tool:hover {
        background-color: #f4f5fb
    }
}

.ce-inline-tool--active {
    color: #5855a3
}

.ce-inline-tool--focused {
    background: rgba(34, 186, 255, .08) !important
}

.ce-inline-tool--focused {
    -webkit-box-shadow: inset 0 0 0px 1px rgba(7, 161, 227, .08);
    box-shadow: inset 0 0 0 1px #07a1e314
}

.ce-inline-tool--focused-animated {
    -webkit-animation-name: buttonClicked;
    animation-name: buttonClicked;
    -webkit-animation-duration: .25s;
    animation-duration: .25s
}

.ce-inline-tool--link .icon--unlink,
.ce-inline-tool--unlink .icon--link {
    display: none
}

.ce-inline-tool--unlink .icon--unlink {
    display: inline-block;
    margin-bottom: -1px
}

.ce-inline-tool-input {
    outline: none;
    border: 0;
    border-radius: 0 0 4px 4px;
    margin: 0;
    font-size: 13px;
    padding: 10px;
    width: 100%;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    display: none;
    font-weight: 500;
    border-top: 1px solid rgba(201, 201, 204, .48);
    -webkit-appearance: none;
    font-family: inherit
}

@media (max-width: 650px) {
    .ce-inline-tool-input {
        font-size: 15px;
        font-weight: 500
    }
}

.ce-inline-tool-input::-webkit-input-placeholder {
    color: #707684
}

.ce-inline-tool-input::-moz-placeholder {
    color: #707684
}

.ce-inline-tool-input:-ms-input-placeholder {
    color: #707684
}

.ce-inline-tool-input::-ms-input-placeholder {
    color: #707684
}

.ce-inline-tool-input::placeholder {
    color: #707684
}

.ce-inline-tool-input--showed {
    display: block
}

.ce-conversion-toolbar {
    position: absolute;
    background-color: #fff;
    border: 1px solid #E8E8EB;
    -webkit-box-shadow: 0 3px 15px -3px rgba(13, 20, 33, .13);
    box-shadow: 0 3px 15px -3px #0d142121;
    border-radius: 6px;
    z-index: 2;
    opacity: 0;
    visibility: hidden;
    will-change: transform, opacity;
    -webkit-transition: opacity .1s ease, -webkit-transform .1s ease;
    transition: opacity .1s ease, -webkit-transform .1s ease;
    transition: transform .1s ease, opacity .1s ease;
    transition: transform .1s ease, opacity .1s ease, -webkit-transform .1s ease;
    -webkit-transform: translateY(-8px);
    transform: translateY(-8px);
    left: -1px;
    width: 190px;
    margin-top: 5px;
    -webkit-box-sizing: content-box;
    box-sizing: content-box
}

.ce-conversion-toolbar--left-oriented:before {
    left: 15px;
    margin-left: 0
}

.ce-conversion-toolbar--right-oriented:before {
    left: auto;
    right: 15px;
    margin-left: 0
}

.ce-conversion-toolbar--showed {
    opacity: 1;
    visibility: visible;
    -webkit-transform: none;
    transform: none
}

.ce-conversion-toolbar [hidden] {
    display: none !important
}

.ce-conversion-toolbar__buttons {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex
}

.ce-conversion-toolbar__label {
    color: #707684;
    font-size: 11px;
    font-weight: 500;
    letter-spacing: .33px;
    padding: 10px 10px 5px;
    text-transform: uppercase
}

.ce-conversion-tool {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    padding: 5px 10px;
    font-size: 14px;
    line-height: 20px;
    font-weight: 500;
    cursor: pointer;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center
}

.ce-conversion-tool--hidden {
    display: none
}

.ce-conversion-tool--focused {
    background: rgba(34, 186, 255, .08) !important
}

.ce-conversion-tool--focused {
    -webkit-box-shadow: inset 0 0 0px 1px rgba(7, 161, 227, .08);
    box-shadow: inset 0 0 0 1px #07a1e314
}

.ce-conversion-tool--focused-animated {
    -webkit-animation-name: buttonClicked;
    animation-name: buttonClicked;
    -webkit-animation-duration: .25s;
    animation-duration: .25s
}

.ce-conversion-tool:hover {
    background: #f4f5fb
}

.ce-conversion-tool__icon {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    width: 26px;
    height: 26px;
    -webkit-box-shadow: 0 0 0 1px rgba(201, 201, 204, .48);
    box-shadow: 0 0 0 1px #c9c9cc7a;
    border-radius: 5px;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    background: #fff;
    -webkit-box-sizing: content-box;
    box-sizing: content-box;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    margin-right: 10px
}

.ce-conversion-tool__icon svg {
    width: 20px;
    height: 20px
}

@media (max-width: 650px) {
    .ce-conversion-tool__icon {
        width: 36px;
        height: 36px;
        border-radius: 8px
    }

    .ce-conversion-tool__icon svg {
        width: 28px;
        height: 28px
    }
}

.ce-conversion-tool--last {
    margin-right: 0 !important
}

.ce-conversion-tool--active {
    color: #5855a4 !important
}

.ce-conversion-tool--active {
    -webkit-animation: bounceIn .75s 1;
    animation: bounceIn .75s 1;
    -webkit-animation-fill-mode: forwards;
    animation-fill-mode: forwards
}

.ce-conversion-tool__secondary-label {
    color: #707684;
    font-size: 12px;
    margin-left: auto;
    white-space: nowrap;
    letter-spacing: -.1em;
    padding-right: 5px;
    margin-bottom: -2px;
    opacity: .6
}

@media (max-width: 650px) {
    .ce-conversion-tool__secondary-label {
        display: none
    }
}

.ce-settings__button {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    padding: 6px 1px;
    border-radius: 3px;
    cursor: pointer;
    border: 0;
    outline: none;
    background-color: transparent;
    vertical-align: bottom;
    color: inherit;
    margin: 0;
    line-height: 32px
}

.ce-settings__button svg {
    width: 20px;
    height: 20px
}

@media (max-width: 650px) {
    .ce-settings__button svg {
        width: 28px;
        height: 28px
    }
}

@media (hover: hover) {
    .ce-settings__button:hover {
        background-color: #f4f5fb
    }
}

.ce-settings__button--active {
    color: #5855a4
}

.ce-settings__button--focused {
    background: rgba(34, 186, 255, .08) !important
}

.ce-settings__button--focused {
    -webkit-box-shadow: inset 0 0 0px 1px rgba(7, 161, 227, .08);
    box-shadow: inset 0 0 0 1px #07a1e314
}

.ce-settings__button--focused-animated {
    -webkit-animation-name: buttonClicked;
    animation-name: buttonClicked;
    -webkit-animation-duration: .25s;
    animation-duration: .25s
}

.ce-settings__button:not(:nth-child(3n+3)) {
    margin-right: 3px
}

.ce-settings__button:nth-child(n+4) {
    margin-top: 3px
}

.ce-settings__button--disabled {
    cursor: not-allowed !important
}

.ce-settings__button--disabled {
    opacity: .3
}

.ce-settings__button--selected {
    color: #5855a4
}

@media (min-width: 651px) {
    .codex-editor--narrow .ce-settings .ce-popover {
        right: 0;
        left: auto;
        left: initial
    }
}

@-webkit-keyframes fade-in {
    0% {
        opacity: 0
    }

    to {
        opacity: 1
    }
}

@keyframes fade-in {
    0% {
        opacity: 0
    }

    to {
        opacity: 1
    }
}

.ce-block {
    -webkit-animation: fade-in .3s ease;
    animation: fade-in .3s ease;
    -webkit-animation-fill-mode: none;
    animation-fill-mode: none;
    -webkit-animation-fill-mode: initial;
    animation-fill-mode: initial
}

.ce-block:first-of-type {
    margin-top: 0
}

.ce-block--selected .ce-block__content {
    background: #e1f2ff
}

.ce-block--selected .ce-block__content [contenteditable] {
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none
}

.ce-block--selected .ce-block__content img,
.ce-block--selected .ce-block__content .ce-stub {
    opacity: .55
}

.ce-block--stretched .ce-block__content {
    max-width: none
}

.ce-block__content {
    position: relative;
    max-width: 650px;
    margin: 0 auto;
    -webkit-transition: background-color .15s ease;
    transition: background-color .15s ease
}

.ce-block--drop-target .ce-block__content:before {
    content: "";
    position: absolute;
    top: 100%;
    left: -20px;
    margin-top: -1px;
    height: 8px;
    width: 8px;
    border: solid #388AE5;
    border-width: 1px 1px 0 0;
    -webkit-transform-origin: right;
    transform-origin: right;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg)
}

.ce-block--drop-target .ce-block__content:after {
    content: "";
    position: absolute;
    top: 100%;
    height: 1px;
    width: 100%;
    color: #5855a4;
    background: repeating-linear-gradient(90deg, #388AE5, #388AE5 1px, #fff 1px, #fff 6px)
}

.ce-block a {
    cursor: pointer;
    -webkit-text-decoration: underline;
    text-decoration: underline
}

.ce-block b {
    font-weight: 700
}

.ce-block i {
    font-style: italic
}

@-webkit-keyframes bounceIn {

    0%,
    20%,
    40%,
    60%,
    80%,
    to {
        -webkit-animation-timing-function: cubic-bezier(.215, .61, .355, 1);
        animation-timing-function: cubic-bezier(.215, .61, .355, 1)
    }

    0% {
        -webkit-transform: scale3d(.9, .9, .9);
        transform: scale3d(.9, .9, .9)
    }

    20% {
        -webkit-transform: scale3d(1.03, 1.03, 1.03);
        transform: scale3d(1.03, 1.03, 1.03)
    }

    60% {
        -webkit-transform: scale3d(1, 1, 1);
        transform: scaleZ(1)
    }
}

@keyframes bounceIn {

    0%,
    20%,
    40%,
    60%,
    80%,
    to {
        -webkit-animation-timing-function: cubic-bezier(.215, .61, .355, 1);
        animation-timing-function: cubic-bezier(.215, .61, .355, 1)
    }

    0% {
        -webkit-transform: scale3d(.9, .9, .9);
        transform: scale3d(.9, .9, .9)
    }

    20% {
        -webkit-transform: scale3d(1.03, 1.03, 1.03);
        transform: scale3d(1.03, 1.03, 1.03)
    }

    60% {
        -webkit-transform: scale3d(1, 1, 1);
        transform: scaleZ(1)
    }
}

@-webkit-keyframes selectionBounce {

    0%,
    20%,
    40%,
    60%,
    80%,
    to {
        -webkit-animation-timing-function: cubic-bezier(.215, .61, .355, 1);
        animation-timing-function: cubic-bezier(.215, .61, .355, 1)
    }

    50% {
        -webkit-transform: scale3d(1.01, 1.01, 1.01);
        transform: scale3d(1.01, 1.01, 1.01)
    }

    70% {
        -webkit-transform: scale3d(1, 1, 1);
        transform: scaleZ(1)
    }
}

@keyframes selectionBounce {

    0%,
    20%,
    40%,
    60%,
    80%,
    to {
        -webkit-animation-timing-function: cubic-bezier(.215, .61, .355, 1);
        animation-timing-function: cubic-bezier(.215, .61, .355, 1)
    }

    50% {
        -webkit-transform: scale3d(1.01, 1.01, 1.01);
        transform: scale3d(1.01, 1.01, 1.01)
    }

    70% {
        -webkit-transform: scale3d(1, 1, 1);
        transform: scaleZ(1)
    }
}

@-webkit-keyframes buttonClicked {

    0%,
    20%,
    40%,
    60%,
    80%,
    to {
        -webkit-animation-timing-function: cubic-bezier(.215, .61, .355, 1);
        animation-timing-function: cubic-bezier(.215, .61, .355, 1)
    }

    0% {
        -webkit-transform: scale3d(.95, .95, .95);
        transform: scale3d(.95, .95, .95)
    }

    60% {
        -webkit-transform: scale3d(1.02, 1.02, 1.02);
        transform: scale3d(1.02, 1.02, 1.02)
    }

    80% {
        -webkit-transform: scale3d(1, 1, 1);
        transform: scaleZ(1)
    }
}

@keyframes buttonClicked {

    0%,
    20%,
    40%,
    60%,
    80%,
    to {
        -webkit-animation-timing-function: cubic-bezier(.215, .61, .355, 1);
        animation-timing-function: cubic-bezier(.215, .61, .355, 1)
    }

    0% {
        -webkit-transform: scale3d(.95, .95, .95);
        transform: scale3d(.95, .95, .95)
    }

    60% {
        -webkit-transform: scale3d(1.02, 1.02, 1.02);
        transform: scale3d(1.02, 1.02, 1.02)
    }

    80% {
        -webkit-transform: scale3d(1, 1, 1);
        transform: scaleZ(1)
    }
}

.cdx-block {
    padding: .4em 0
}

.cdx-block::-webkit-input-placeholder {
    line-height: normal !important
}

.cdx-input {
    border: 1px solid rgba(201, 201, 204, .48);
    -webkit-box-shadow: inset 0 1px 2px 0 rgba(35, 44, 72, .06);
    box-shadow: inset 0 1px 2px #232c480f;
    border-radius: 3px;
    padding: 10px 12px;
    outline: none;
    width: 100%;
    -webkit-box-sizing: border-box;
    box-sizing: border-box
}

.cdx-input[data-placeholder]:before {
    position: static !important
}

.cdx-input[data-placeholder]:before {
    display: inline-block;
    width: 0;
    white-space: nowrap;
    pointer-events: none
}

.cdx-settings-button {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    padding: 6px 1px;
    border-radius: 3px;
    cursor: pointer;
    border: 0;
    outline: none;
    background-color: transparent;
    vertical-align: bottom;
    color: inherit;
    margin: 0;
    min-width: 26px;
    min-height: 26px
}

.cdx-settings-button svg {
    width: 20px;
    height: 20px
}

@media (max-width: 650px) {
    .cdx-settings-button svg {
        width: 28px;
        height: 28px
    }
}

@media (hover: hover) {
    .cdx-settings-button:hover {
        background-color: #f4f5fb
    }
}

.cdx-settings-button--focused {
    background: rgba(34, 186, 255, .08) !important
}

.cdx-settings-button--focused {
    -webkit-box-shadow: inset 0 0 0px 1px rgba(7, 161, 227, .08);
    box-shadow: inset 0 0 0 1px #07a1e314
}

.cdx-settings-button--focused-animated {
    -webkit-animation-name: buttonClicked;
    animation-name: buttonClicked;
    -webkit-animation-duration: .25s;
    animation-duration: .25s
}

.cdx-settings-button--active {
    color: #5855a4
}

.cdx-settings-button svg {
    width: auto;
    height: auto
}

@media (max-width: 650px) {
    .cdx-settings-button {
        width: 36px;
        height: 36px;
        border-radius: 8px
    }
}

.cdx-loader {
    position: relative;
    border: 1px solid rgba(201, 201, 204, .48)
}

.cdx-loader:before {
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    width: 18px;
    height: 18px;
    margin: -11px 0 0 -11px;
    border: 2px solid rgba(201, 201, 204, .48);
    border-left-color: #5855a4;
    border-radius: 50%;
    -webkit-animation: cdxRotation 1.2s infinite linear;
    animation: cdxRotation 1.2s infinite linear
}

@-webkit-keyframes cdxRotation {
    0% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0)
    }

    to {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg)
    }
}

@keyframes cdxRotation {
    0% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0)
    }

    to {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg)
    }
}

.cdx-button {
    padding: 13px;
    border-radius: 3px;
    border: 1px solid rgba(201, 201, 204, .48);
    font-size: 14.9px;
    background: #fff;
    -webkit-box-shadow: 0 2px 2px 0 rgba(18, 30, 57, .04);
    box-shadow: 0 2px 2px #121e390a;
    color: #707684;
    text-align: center;
    cursor: pointer
}

@media (hover: hover) {
    .cdx-button:hover {
        background: #FBFCFE;
        -webkit-box-shadow: 0 1px 3px 0 rgba(18, 30, 57, .08);
        box-shadow: 0 1px 3px #121e3914
    }
}

.cdx-button svg {
    height: 20px;
    margin-right: .2em;
    margin-top: -2px
}

.ce-stub {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding: 12px 18px;
    margin: 10px 0;
    border-radius: 10px;
    background: #f4f5fb;
    border: 1px solid #EFF0F1;
    color: #707684;
    font-size: 14px
}

.ce-stub svg {
    width: 20px;
    height: 20px
}

.ce-stub__info {
    margin-left: 14px
}

.ce-stub__title {
    font-weight: 500;
    text-transform: capitalize
}

.codex-editor.codex-editor--rtl {
    direction: rtl
}

.codex-editor.codex-editor--rtl .cdx-list {
    padding-left: 0;
    padding-right: 40px
}

.codex-editor.codex-editor--rtl .ce-toolbar__plus {
    right: -26px;
    left: auto
}

.codex-editor.codex-editor--rtl .ce-toolbar__actions {
    right: auto;
    left: -26px
}

@media (max-width: 650px) {
    .codex-editor.codex-editor--rtl .ce-toolbar__actions {
        margin-left: 0;
        margin-right: auto;
        padding-right: 0;
        padding-left: 10px
    }
}

.codex-editor.codex-editor--rtl .ce-settings {
    left: 5px;
    right: auto
}

.codex-editor.codex-editor--rtl .ce-settings:before {
    right: auto;
    left: 25px
}

.codex-editor.codex-editor--rtl .ce-settings__button:not(:nth-child(3n+3)) {
    margin-left: 3px;
    margin-right: 0
}

.codex-editor.codex-editor--rtl .ce-conversion-tool__icon {
    margin-right: 0;
    margin-left: 10px
}

.codex-editor.codex-editor--rtl .ce-inline-toolbar__dropdown {
    border-right: 0px solid transparent;
    border-left: 1px solid rgba(201, 201, 204, .48);
    margin: 0 -6px 0 6px
}

.codex-editor.codex-editor--rtl .ce-inline-toolbar__dropdown .icon--toggler-down {
    margin-left: 0;
    margin-right: 4px
}

@media (min-width: 651px) {
    .codex-editor--narrow.codex-editor--rtl .ce-toolbar__plus {
        left: 0px;
        right: 5px
    }
}

@media (min-width: 651px) {
    .codex-editor--narrow.codex-editor--rtl .ce-toolbar__actions {
        left: -5px
    }
}

.cdx-search-field {
    --icon-margin-right: 10px;
    background: rgba(232, 232, 235, .49);
    border: 1px solid rgba(226, 226, 229, .2);
    border-radius: 6px;
    padding: 2px;
    display: grid;
    grid-template-columns: auto auto 1fr;
    grid-template-rows: auto
}

.cdx-search-field__icon {
    width: 26px;
    height: 26px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    margin-right: var(--icon-margin-right)
}

.cdx-search-field__icon svg {
    width: 20px;
    height: 20px;
    color: #707684
}

.cdx-search-field__input {
    font-size: 14px;
    outline: none;
    font-weight: 500;
    font-family: inherit;
    border: 0;
    background: transparent;
    margin: 0;
    padding: 0;
    line-height: 22px;
    min-width: calc(100% - 26px - var(--icon-margin-right))
}

.cdx-search-field__input::-webkit-input-placeholder {
    color: #707684;
    font-weight: 500
}

.cdx-search-field__input::-moz-placeholder {
    color: #707684;
    font-weight: 500
}

.cdx-search-field__input:-ms-input-placeholder {
    color: #707684;
    font-weight: 500
}

.cdx-search-field__input::-ms-input-placeholder {
    color: #707684;
    font-weight: 500
}

.cdx-search-field__input::placeholder {
    color: #707684;
    font-weight: 500
}

.ce-popover {
    --border-radius: 6px;
    --width: 200px;
    --max-height: 270px;
    --padding: 6px;
    --offset-from-target: 8px;
    --color-border: #e8e8eb;
    --color-shadow: rgba(13, 20, 33, .13);
    --color-background: white;
    --color-text-primary: black;
    --color-text-secondary: #707684;
    --color-border-icon: rgba(201, 201, 204, .48);
    --color-border-icon-disabled: #EFF0F1;
    --color-text-icon-active: #388AE5;
    --color-background-icon-active: rgba(56, 138, 229, .1);
    --color-background-item-focus: rgba(34, 186, 255, .08);
    --color-shadow-item-focus: rgba(7, 161, 227, .08);
    --color-background-item-hover: #f4f5fb;
    --color-background-item-confirm: #E24A4A;
    --color-background-item-confirm-hover: #CE4343;
    min-width: var(--width);
    width: var(--width);
    max-height: var(--max-height);
    border-radius: var(--border-radius);
    overflow: hidden;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    -webkit-box-shadow: 0 3px 15px -3px var(--color-shadow);
    box-shadow: 0 3px 15px -3px var(--color-shadow);
    position: absolute;
    left: 0;
    top: calc(100% + var(--offset-from-target));
    background: var(--color-background);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    z-index: 4;
    opacity: 0;
    max-height: 0;
    pointer-events: none;
    padding: 0;
    border: none
}

.ce-popover--opened {
    opacity: 1;
    padding: var(--padding);
    max-height: var(--max-height);
    pointer-events: auto;
    -webkit-animation: panelShowing .1s ease;
    animation: panelShowing .1s ease;
    border: 1px solid var(--color-border)
}

@media (max-width: 650px) {
    .ce-popover--opened {
        -webkit-animation: panelShowingMobile .25s ease;
        animation: panelShowingMobile .25s ease
    }
}

.ce-popover__items {
    overflow-y: auto;
    -ms-scroll-chaining: none;
    overscroll-behavior: contain
}

@media (max-width: 650px) {
    .ce-popover__overlay {
        position: fixed;
        top: 0;
        bottom: 0;
        left: 0;
        right: 0;
        background: #1D202B;
        z-index: 3;
        opacity: .5;
        -webkit-transition: opacity .12s ease-in;
        transition: opacity .12s ease-in;
        will-change: opacity;
        visibility: visible
    }
}

.ce-popover__overlay--hidden {
    display: none
}

.ce-popover--open-top {
    top: calc(-1 * (var(--offset-from-target) + var(--popover-height)))
}

@media (max-width: 650px) {
    .ce-popover {
        --offset: 5px;
        position: fixed;
        max-width: none;
        min-width: calc(100% - var(--offset) * 2);
        left: var(--offset);
        right: var(--offset);
        bottom: calc(var(--offset) + env(safe-area-inset-bottom));
        top: auto;
        border-radius: 10px
    }

    .ce-popover .ce-popover__search {
        display: none
    }
}

.ce-popover__search,
.ce-popover__custom-content:not(:empty) {
    margin-bottom: 5px
}

.ce-popover__nothing-found-message {
    color: #707684;
    display: none;
    cursor: default;
    padding: 3px;
    font-size: 14px;
    line-height: 20px;
    font-weight: 500;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis
}

.ce-popover__nothing-found-message--displayed {
    display: block
}

.ce-popover__custom-content:not(:empty) {
    padding: 4px
}

@media (min-width: 651px) {
    .ce-popover__custom-content:not(:empty) {
        padding: 0
    }
}

.ce-popover__custom-content--hidden {
    display: none
}

.ce-popover-item {
    --border-radius: 6px;
    --icon-size: 20px;
    --icon-size-mobile: 28px;
    border-radius: var(--border-radius);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding: 3px;
    color: var(--color-text-primary);
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none
}

@media (max-width: 650px) {
    .ce-popover-item {
        padding: 4px
    }
}

.ce-popover-item:not(:last-of-type) {
    margin-bottom: 1px
}

.ce-popover-item__icon {
    border-radius: 5px;
    width: 26px;
    height: 26px;
    -webkit-box-shadow: 0 0 0 1px var(--color-border-icon);
    box-shadow: 0 0 0 1px var(--color-border-icon);
    background: #fff;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    margin-right: 10px
}

.ce-popover-item__icon svg {
    width: 20px;
    height: 20px
}

@media (max-width: 650px) {
    .ce-popover-item__icon {
        width: 36px;
        height: 36px;
        border-radius: 8px
    }

    .ce-popover-item__icon svg {
        width: var(--icon-size-mobile);
        height: var(--icon-size-mobile)
    }
}

.ce-popover-item__title {
    font-size: 13px;
    line-height: 20px;
    font-weight: 400;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis
}

@media (max-width: 650px) {
    .ce-popover-item__title {
        font-size: 16px
    }
}

.ce-popover-item__secondary-title {
    color: var(--color-text-secondary);
    font-size: 12px;
    margin-left: auto;
    white-space: nowrap;
    letter-spacing: -.1em;
    padding-right: 5px;
    margin-bottom: -2px;
    opacity: .6
}

@media (max-width: 650px) {
    .ce-popover-item__secondary-title {
        display: none
    }
}

.ce-popover-item--active {
    background: var(--color-background-icon-active);
    color: var(--color-text-icon-active)
}

.ce-popover-item--active .ce-popover-item__icon {
    -webkit-box-shadow: none;
    box-shadow: none
}

.ce-popover-item--disabled {
    color: var(--color-text-secondary);
    cursor: default;
    pointer-events: none
}

.ce-popover-item--disabled .ce-popover-item__icon {
    -webkit-box-shadow: 0 0 0 1px var(--color-border-icon-disabled);
    box-shadow: 0 0 0 1px var(--color-border-icon-disabled)
}

.ce-popover-item--focused:not(.ce-popover-item--no-focus) {
    background: var(--color-background-item-focus) !important
}

.ce-popover-item--focused:not(.ce-popover-item--no-focus) {
    -webkit-box-shadow: inset 0 0 0px 1px var(--color-shadow-item-focus);
    box-shadow: inset 0 0 0 1px var(--color-shadow-item-focus)
}

.ce-popover-item--hidden {
    display: none
}

@media (hover: hover) {
    .ce-popover-item:hover {
        cursor: pointer
    }

    .ce-popover-item:hover:not(.ce-popover-item--no-hover) {
        background-color: var(--color-background-item-hover)
    }

    .ce-popover-item:hover .ce-popover-item__icon {
        -webkit-box-shadow: none;
        box-shadow: none
    }
}

.ce-popover-item--confirmation {
    background: var(--color-background-item-confirm)
}

.ce-popover-item--confirmation .ce-popover-item__icon {
    color: var(--color-background-item-confirm)
}

.ce-popover-item--confirmation .ce-popover-item__title {
    color: #fff
}

@media (hover: hover) {
    .ce-popover-item--confirmation:not(.ce-popover-item--no-hover):hover {
        background: var(--color-background-item-confirm-hover)
    }
}

.ce-popover-item--confirmation:not(.ce-popover-item--no-focus).ce-popover-item--focused {
    background: var(--color-background-item-confirm-hover) !important
}

.ce-popover-item--confirmation .ce-popover-item__icon,
.ce-popover-item--active .ce-popover-item__icon,
.ce-popover-item--focused .ce-popover-item__icon {
    -webkit-box-shadow: none;
    box-shadow: none
}

@-webkit-keyframes panelShowing {
    0% {
        opacity: 0;
        -webkit-transform: translateY(-8px) scale(.9);
        transform: translateY(-8px) scale(.9)
    }

    70% {
        opacity: 1;
        -webkit-transform: translateY(2px);
        transform: translateY(2px)
    }

    to {
        -webkit-transform: translateY(0);
        transform: translateY(0)
    }
}

@keyframes panelShowing {
    0% {
        opacity: 0;
        -webkit-transform: translateY(-8px) scale(.9);
        transform: translateY(-8px) scale(.9)
    }

    70% {
        opacity: 1;
        -webkit-transform: translateY(2px);
        transform: translateY(2px)
    }

    to {
        -webkit-transform: translateY(0);
        transform: translateY(0)
    }
}

@-webkit-keyframes panelShowingMobile {
    0% {
        opacity: 0;
        -webkit-transform: translateY(14px) scale(.98);
        transform: translateY(14px) scale(.98)
    }

    70% {
        opacity: 1;
        -webkit-transform: translateY(-4px);
        transform: translateY(-4px)
    }

    to {
        -webkit-transform: translateY(0);
        transform: translateY(0)
    }
}

@keyframes panelShowingMobile {
    0% {
        opacity: 0;
        -webkit-transform: translateY(14px) scale(.98);
        transform: translateY(14px) scale(.98)
    }

    70% {
        opacity: 1;
        -webkit-transform: translateY(-4px);
        transform: translateY(-4px)
    }

    to {
        -webkit-transform: translateY(0);
        transform: translateY(0)
    }
}

.wobble {
    -webkit-animation-name: wobble;
    animation-name: wobble;
    -webkit-animation-duration: .4s;
    animation-duration: .4s
}

@-webkit-keyframes wobble {
    0% {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translateZ(0)
    }

    15% {
        -webkit-transform: translate3d(-9%, 0, 0);
        transform: translate3d(-9%, 0, 0)
    }

    30% {
        -webkit-transform: translate3d(9%, 0, 0);
        transform: translate3d(9%, 0, 0)
    }

    45% {
        -webkit-transform: translate3d(-4%, 0, 0);
        transform: translate3d(-4%, 0, 0)
    }

    60% {
        -webkit-transform: translate3d(4%, 0, 0);
        transform: translate3d(4%, 0, 0)
    }

    75% {
        -webkit-transform: translate3d(-1%, 0, 0);
        transform: translate3d(-1%, 0, 0)
    }

    to {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translateZ(0)
    }
}

@keyframes wobble {
    0% {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translateZ(0)
    }

    15% {
        -webkit-transform: translate3d(-9%, 0, 0);
        transform: translate3d(-9%, 0, 0)
    }

    30% {
        -webkit-transform: translate3d(9%, 0, 0);
        transform: translate3d(9%, 0, 0)
    }

    45% {
        -webkit-transform: translate3d(-4%, 0, 0);
        transform: translate3d(-4%, 0, 0)
    }

    60% {
        -webkit-transform: translate3d(4%, 0, 0);
        transform: translate3d(4%, 0, 0)
    }

    75% {
        -webkit-transform: translate3d(-1%, 0, 0);
        transform: translate3d(-1%, 0, 0)
    }

    to {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translateZ(0)
    }
}