.tippy-box[data-animation=scale-subtle][data-placement^=top]{transform-origin:bottom}.tippy-box[data-animation=scale-subtle][data-placement^=bottom]{transform-origin:top}.tippy-box[data-animation=scale-subtle][data-placement^=left]{transform-origin:right}.tippy-box[data-animation=scale-subtle][data-placement^=right]{transform-origin:left}.tippy-box[data-animation=scale-subtle][data-state=hidden]{transform:scale(.8);opacity:0}
.tippy-box[data-animation=fade][data-state=hidden]{opacity:0}[data-tippy-root]{max-width:calc(100vw - 10px)}.tippy-box{position:relative;background-color:#333;color:#fff;border-radius:4px;font-size:14px;line-height:1.4;outline:0;transition-property:transform,visibility,opacity}.tippy-box[data-placement^=top]>.tippy-arrow{bottom:0}.tippy-box[data-placement^=top]>.tippy-arrow:before{bottom:-7px;left:0;border-width:8px 8px 0;border-top-color:initial;transform-origin:center top}.tippy-box[data-placement^=bottom]>.tippy-arrow{top:0}.tippy-box[data-placement^=bottom]>.tippy-arrow:before{top:-7px;left:0;border-width:0 8px 8px;border-bottom-color:initial;transform-origin:center bottom}.tippy-box[data-placement^=left]>.tippy-arrow{right:0}.tippy-box[data-placement^=left]>.tippy-arrow:before{border-width:8px 0 8px 8px;border-left-color:initial;right:-7px;transform-origin:center left}.tippy-box[data-placement^=right]>.tippy-arrow{left:0}.tippy-box[data-placement^=right]>.tippy-arrow:before{left:-7px;border-width:8px 8px 8px 0;border-right-color:initial;transform-origin:center right}.tippy-box[data-inertia][data-state=visible]{transition-timing-function:cubic-bezier(.54,1.5,.38,1.11)}.tippy-arrow{width:16px;height:16px;color:#333}.tippy-arrow:before{content:"";position:absolute;border-color:transparent;border-style:solid}.tippy-content{position:relative;padding:5px 9px;z-index:1}
.html-root {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.html-form {
    resize: none;
    overflow: hidden;
    width: 100%;
    color: #5F5F5F;
    font-size: 14px;
    line-height: 26px;
    font-weight: 400;
    margin-top: 20px;
    border-radius: 4px;
    padding: 8px;
    background: rgba(0, 0, 0, 0.1);
}


/**
 * Copyright (c) Meta Platforms, Inc. and affiliates.
 *
 * This source code is licensed under the MIT license found in the
 * LICENSE file in the root directory of this source tree.
 *
 *
 */

.ImageNode__contentEditable {
    min-height: 20px;
    border: 0px;
    resize: none;
    cursor: text;
    caret-color: rgb(5, 5, 5);
    display: block;
    position: relative;
    tab-size: 1;
    outline: 0px;
    padding: 10px;
    user-select: text;
    font-size: 12px;
    width: calc(100% - 20px);
    white-space: pre-wrap;
    word-break: break-word;
}

.ImageNode__placeholder {
    font-size: 12px;
    color: #888;
    overflow: hidden;
    position: absolute;
    text-overflow: ellipsis;
    top: 10px;
    left: 10px;
    user-select: none;
    white-space: nowrap;
    display: inline-block;
    pointer-events: none;
}

.image-control-wrapper--resizing {
    touch-action: none;
}

.banner-workBook-wrapper {

    position: relative;
    /* border: 1px solid var(--retext-color-black01); */
    background: var(--color-bg);
    border-radius: 20px;
    display: flex;

    gap: 40px;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    width: 100%;


    background: rgba(244, 248, 254, 1);
    padding: 48px;
    transition: all 0.4s;
    flex-wrap: wrap;

}

.banner-workBook-wrapper::before {
    display: block;
    position: absolute;
    background-color: transparent;
    left: -20px;
    right: -20px;
    top: 0;
    bottom: 0;
    z-index: 0;
    content: '';

}

@media screen and (max-width: 999px) {
    .banner-workBook-wrapper {
        border-radius: 0;
        border: none;
        padding-inline: 10px;
        background: transparent;
        overflow: visible;
    }

    .banner-workBook-wrapper::before {
        background-color: var(--color-bg);
    }

    .banner-workBook-button-active {
        font-size: 14px;

    }

    .banner-workBook-button-outline {
        font-size: 12px;
    }
}

.banner-workBook-wrapper * {
    transition: all 0.4s;
}

.banner-workBook-wrapper>* {
    display: flex;

}

.banner-workBook-image-wrapper {
    display: flex;

}

.banner-workBook-content {
    display: flex;
    flex-direction: column;
    gap: 32px;
    min-width: 300px;
    max-width: 437px;
    z-index: 1;
    width: 100%;
    flex: 1;

}

.banner-workBook-header {
    display: flex;
}

.banner-workBook-header-title {
    display: flex;
    font-size: 30px;
    font-style: normal;
    font-weight: 600;
    line-height: 40px;
}


.banner-workBook-content-body {
    display: flex;
    flex-direction: column;

    align-items: flex-start;
    align-self: stretch;
}

.banner-workBook-content-body-subtitle {
    display: flex;
    padding-bottom: 16px;
    font-family: Roboto;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px;
}

.banner-workBook-content-list {
    display: inline-flex;
    flex-wrap: wrap;
    row-gap: 12px;
    column-gap: 24px;
    align-self: stretch;
    align-items: flex-start;
    align-content: flex-start;
}

.banner-workBook-content-footer {
    display: flex;
}

.banner-workBook-buttons-container {
    display: flex;
    gap: 8px;
    width: 100%;
    justify-items: stretch;
}

.banner-workBook-button {
    min-height: 40px;
    max-height: 40px;
    border-radius: 4px;

    font-style: normal;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: Roboto;
}

.banner-workBook-button-active {
    padding: 8px 16px;
    background: #2477f2;
    color: #fff !important;

    width: 50%;
    font-size: 16px;
    font-weight: 500;
    line-height: 24px;
}

.banner-workBook-button-active:hover {
    background: #165ecb;

}

.banner-workBook-button-outline {
    display: flex;
    justify-content: space-around;
    padding: 5px 12px;
    gap: 4px;
    width: 50%;
    background: rgba(255, 255, 255, 0);
    color: #165ecb;
    font-size: 14px;
    font-weight: 500;
    line-height: 20px;
}

.banner-workBook-button-outline:hover {
    display: inline-flex;
    background: rgba(22, 94, 203, 0.05);

    color: #242424;
}

.banner-workBook-button-outline:active {
    color: #242424;
    background-color: #bacff0;
}
.editor-shell * {
    --retext-color-black01: rgba(0, 0, 0, 0.1);
    --retext-color-retext01: rgba(22, 94, 203, 0.1);
    --retext-color-retext03: #B9CFEF;
    --retext-color-title-primary: #000000;
    --retext-color-subhead-primary: #606874;
    --retext-color-buttons-secondary: rgba(173, 183, 192, 0.15);
    --retext-color-buttons-hover: rgba(173, 183, 192, 0.25);
    --retext-color-buttons-accent: #2477F2;
    --retext-color-buttons-accent-hover: #165ECB;
    --retext-color-white: #FFFFFF;

    --color-button: var(--retext-color-buttons-accent);
    --color-button-hover: var(--retext-color-buttons-accent-hover);
    --color-bg: var(--retext-color-retext01);
}

.editor-shell .RetextButton {
    padding: 10px 20px;
    background: var(--color-button);
    border-radius: 6px;
    color: var(--retext-color-white);
    cursor: pointer;
    width: fit-content;
}

.editor-shell .RetextButton:hover {
    background: var(--color-button-hover);
}

.editor-shell .RetextButton_secondary {
    padding: 10px 20px;
    background: var(--retext-color-buttons-secondary);
    border-radius: 6px;
    color: var(--retext-color-title-primary);
    cursor: pointer;
    width: fit-content;
}

.editor-shell .RetextButton_secondary:hover {
    background: var(--retext-color-buttons-hover);
}

/**
 * Default
 */
.editor-shell #RetextWizardRoot {
    display: flex;
    flex-direction: column;
}

.editor-shell .RetextWizardButtonsContainer {
    display: flex;
    gap: 60px;
    align-items: center;
}


.editor-shell #RetextWizardForm {
    display: flex;
    gap: 10px;
    flex-direction: column;
}

.editor-shell #RetextWizardFormRoot {
    border-radius: 5px;
    border: 2px solid darkred;
    padding: 10px;
}

.editor-shell .RetextWizardInputRoot {
    display: flex;
    gap: 10px;
    align-items: center;
}

.editor-shell .RetextWizardInput {
    padding: 6px;
    border: 1px solid var(--retext-color-black01);
    border-radius: 4px;
    outline: none;
    flex: 1;
}

.editor-shell .RetextWizardSeparator {
    min-height: 20px;
}

.editor-shell .RetextWizardDefault {
    position: relative;
    border: 1px solid var(--retext-color-black01);
    background: var(--color-bg);
    border-radius: 20px;
    padding: 20px;
    display: flex;
    gap: 10px;
    justify-content: space-between;
    align-items: center;
    overflow: hidden;
}

.editor-shell .RetextWizardDefault-Image {
    max-width: min(300px, 40%);
    padding-right: 15px;
    pointer-events: none;
    user-select: none;
}

.editor-shell .RetextWizardDefault-Container {
    display: flex;
    flex-direction: column;
    width: 50%;
    justify-content: center;
    padding: 20px 30px;
    flex: 1;
}

.editor-shell .RetextWizardDefault-Title {
    font-weight: 500;
    font-size: 30px;
    line-height: 36px;
    margin-bottom: 20px;
    color: var(--retext-color-title-primary);
}

.editor-shell .RetextWizardDefault-Subtitle {
    font-size: 20px;
    line-height: 28px;
    margin-bottom: 32px;
    color: var(--retext-color-title-primary);
}

.editor-shell .RetextWizardDefaultEmail-Title {
    font-weight: 500;
    font-size: 20px;
    line-height: 28px;
    margin-bottom: 12px;
    color: var(--retext-color-title-primary);
}

.editor-shell .RetextWizardDefaultEmail-Subtitle {
    font-weight: 400;
    font-size: 16px;
    line-height: 26px;
    margin-bottom: 20px;
    color: var(--retext-color-subhead-primary);
}

.editor-shell .RetextWizardDefault-Button {
    padding: 10px 30px;
    background: var(--color-button);
    border-radius: 6px;
    color: var(--retext-color-white) !important;
    cursor: pointer;
    width: fit-content;
}

.editor-shell .RetextWizardDefault-Button:hover {
    background: var(--color-button-hover);
}

.editor-shell .RetextWizardDefaultEmail-ButtonsContainer {
    display: flex;
    flex-direction: row;
    gap: 20px;
}

@media (max-width: 900px) {
    .editor-shell .RetextWizardDefaultEmail-ButtonsContainer {
        flex-direction: column;
    }

    .editor-shell .RetextWizardDefaultEmail-ButtonsContainer>* {
        width: 100%;
    }
}

.editor-shell .RetextWizardDefaultEmail-Input {
    display: flex;
    flex-direction: row;
    padding: 10px 20px;
    font-family: 'Roboto', sans-serif;
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    color: #000000;
    background: #FFFFFF;
    border: 1px solid rgba(173, 183, 192, 0.15);
    border-radius: 6px;
}

.editor-shell .RetextWizardDefaultEmail-Input::placeholder {
    color: #7A828D;
}

@media screen and (max-width: 999px) {
    .editor-shell .RetextWizardDefault {
        border-radius: 0;
        border: none;
        background: transparent;
        overflow: visible;
    }

    .editor-shell .RetextWizardDefault-Container {
        align-items: center;
    }

    .editor-shell .RetextWizardDefault-Title {
        margin-top: 150px;
        color: var(--retext-color-white);
        text-align: center;
    }

    .editor-shell .RetextWizardDefault-Subtitle {
        color: var(--retext-color-white);
        text-align: center;
    }

    .editor-shell .RetextWizardDefaultEmail-Title {
        margin-top: 150px;
        color: var(--retext-color-white);
    }

    .editor-shell .RetextWizardDefaultEmail-Subtitle {
        color: var(--retext-color-white);
    }

    .editor-shell .RetextWizardDefault-Button {
        color: var(--retext-color-buttons-accent) !important;
        background: var(--retext-color-white);
    }

    .editor-shell .RetextWizardDefault-Button:hover {
        background: var(--retext-color-retext03);
    }

    .editor-shell .RetextWizardDefault::before {
        display: block;
        position: absolute;
        background-color: var(--retext-color-buttons-accent-hover);
        left: -20px;
        right: -20px;
        top: 0;
        bottom: 0;
        content: '';
    }

    .editor-shell .RetextWizardDefault-Image {
        display: none;
    }
}

/**
 * Secondary
 */
.editor-shell .RetextWizardSecondary {
    border-top: 2px solid #F6F6F6;
    border-bottom: 2px solid #F6F6F6;
    padding: 20px 0;
    display: flex;
    align-items: stretch;
    gap: 32px;
}

.editor-shell .RetextWizardSecondary-Image {
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    flex: 0 0 30%;
    overflow: auto;
    border-radius: 10px;
    background-color: var(--color-bg);
}

.editor-shell .RetextWizardSecondary-Container {
    display: flex;
    flex-direction: column;
    width: 100%;
    gap: 16px;
}

.editor-shell .RetextWizardSecondary-Title {
    font-weight: 500;
    font-size: 20px;
    line-height: 24px;
    color: var(--retext-color-title-primary);
}

.editor-shell .RetextWizardSecondary-Subtitle {
    font-size: 16px;
    line-height: 26px;
    color: var(--retext-color-subhead-primary);
}


.Root {
    display: flex;
    gap: 30px;
    flex-direction: column;
}

.Root input {
    outline: none;
    border: 1px solid var(--retext-color-black01);
    border-radius: 4px;
    padding: 6px;
}

.Root-SelectableButton {
    padding: 10px 20px;
    background: var(--color-button);
    border-radius: 6px;
    color: var(--retext-color-white);
    cursor: pointer;
    width: fit-content;
}

.Root-SelectableButton:hover {
    background: var(--color-button-hover);
}
/**
 * Copyright (c) Meta Platforms, Inc. and affiliates.
 *
 * This source code is licensed under the MIT license found in the
 * LICENSE file in the root directory of this source tree.
 *
 *
 */
.PlaygroundEditorTheme__ltr {
    text-align: left;
}

.PlaygroundEditorTheme__rtl {
    text-align: right;
}

.PlaygroundEditorTheme__paragraph {
    font-size: 16px;
    line-height: 26px;
    font-weight: 400;
    color: #000000;
    margin: 0 0 26px;
}

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

.PlaygroundEditorTheme__h1 {
    font-size: 40px;
    line-height: 50px;
    font-weight: 500;
    color: #000000;
    margin-top: 30px;
}

.PlaygroundEditorTheme__h2 {
    font-size: 30px;
    line-height: 36px;
    font-weight: 500;
    color: #000000;
    margin-top: 30px;
}

.PlaygroundEditorTheme__h3 {
    font-size: 20px;
    line-height: 28px;
    font-weight: 500;
    color: #000000;
    margin-top: 30px;
}

.PlaygroundEditorTheme__h4 {
    font-size: 12px;
    line-height: 24px;
    font-weight: 500;
    color: #000000;
    margin-top: 30px;
}

@media (max-width: 599px) {
    .PlaygroundEditorTheme__h1 {
        margin-top: 10px;
    }

    .PlaygroundEditorTheme__h2 {
        margin-top: 10px;
    }

    .PlaygroundEditorTheme__h3 {
        margin-top: 10px;
    }

    .PlaygroundEditorTheme__h4 {
        margin-top: 10px;
    }
}

.PlaygroundEditorTheme__indent {
    --lexical-indent-base-value: 40px;
}

.PlaygroundEditorTheme__textBold {
    font-weight: bold;
}

.PlaygroundEditorTheme__textItalic {
    font-style: italic;
}

.PlaygroundEditorTheme__textUnderline {
    text-decoration: underline;
}

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

.PlaygroundEditorTheme__textUnderlineStrikethrough {
    text-decoration: underline line-through;
}

.PlaygroundEditorTheme__textSubscript {
    font-size: 0.8em;
    vertical-align: sub !important;
}

.PlaygroundEditorTheme__textSuperscript {
    font-size: 0.8em;
    vertical-align: super;
}

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

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

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

.PlaygroundEditorTheme__link:hover {
    text-decoration: underline;
    cursor: pointer;
}

.PlaygroundEditorTheme__code {
    background-color: rgb(240, 242, 245);
    font-family: Menlo, Consolas, Monaco, monospace;
    display: block;
    padding: 8px 8px 8px 52px;
    line-height: 1.53;
    font-size: 13px;
    margin: 0;
    margin-top: 8px;
    margin-bottom: 8px;
    tab-size: 2;
    /* white-space: pre; */
    overflow-x: auto;
    position: relative;
}

.PlaygroundEditorTheme__code:before {
    content: attr(data-gutter);
    position: absolute;
    background-color: #eee;
    left: 0;
    top: 0;
    border-right: 1px solid #ccc;
    padding: 8px;
    color: #777;
    white-space: pre-wrap;
    text-align: right;
    min-width: 25px;
}

.PlaygroundEditorTheme__table {
    border-collapse: collapse;
    border-spacing: 0;
    width: 100%;
    overflow-y: scroll;
    table-layout: fixed;
    margin: 30px 0;
}

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

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

.PlaygroundEditorTheme__tableCellSortedIndicator {
    display: block;
    opacity: 0.5;
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background-color: #999;
}

.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 {
    background-color: #c9dbf0;
}

.PlaygroundEditorTheme__tableCellPrimarySelected {
    border: 2px solid rgb(60, 132, 244);
    display: block;
    height: calc(100% - 2px);
    position: absolute;
    width: calc(100% - 2px);
    left: -1px;
    top: -1px;
    z-index: 2;
}

.PlaygroundEditorTheme__tableCellEditing {
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.4);
    border-radius: 3px;
}

.PlaygroundEditorTheme__tableAddColumns {
    position: absolute;
    top: 0;
    width: 20px;
    background-color: #eee;
    height: 100%;
    right: 0;
    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 {
    background-color: #c9dbf0;
}

.PlaygroundEditorTheme__tableAddRows {
    position: absolute;
    bottom: -25px;
    width: calc(100% - 25px);
    background-color: #eee;
    height: 20px;
    left: 0;
    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;*/
/*}*/

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

@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;
}

.PlaygroundEditorTheme__characterLimit {
    display: inline;
    background-color: #ffbbbb !important;
}

.PlaygroundEditorTheme__ol1 {
    padding: 0;
    margin: 0 0 26px;
    list-style-position: inside;
}

.PlaygroundEditorTheme__ol2 {
    padding: 0;
    margin: 0 0 26px;
    list-style-type: upper-alpha;
    list-style-position: inside;
}

.PlaygroundEditorTheme__ol3 {
    padding: 0;
    margin: 0 0 26px;
    list-style-type: lower-alpha;
    list-style-position: inside;
}

.PlaygroundEditorTheme__ol4 {
    padding: 0;
    margin: 0 0 26px;
    list-style-type: upper-roman;
    list-style-position: inside;
}

.PlaygroundEditorTheme__ol5 {
    padding: 0;
    margin: 0 0 26px;
    list-style-type: lower-roman;
    list-style-position: inside;
}

.PlaygroundEditorTheme__ul {
    font-size: 16px;
    line-height: 26px;
    font-weight: 400;
    color: #000000;
    margin: 0 0 26px;
    padding: 0;
    list-style-position: inside;
}

.PlaygroundEditorTheme__listItem {
    margin: 0 32px;
}

.PlaygroundEditorTheme__listItemChecked,
.PlaygroundEditorTheme__listItemUnchecked {
    position: relative;
    margin-left: 8px;
    margin-right: 8px;
    padding-left: 24px;
    padding-right: 24px;
    list-style-type: none;
    outline: none;
}

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

.PlaygroundEditorTheme__listItemUnchecked:before,
.PlaygroundEditorTheme__listItemChecked:before {
    content: '';
    width: 16px;
    height: 16px;
    top: 2px;
    left: 0;
    cursor: pointer;
    display: block;
    background-size: cover;
    position: absolute;
}

.PlaygroundEditorTheme__listItemUnchecked[dir='rtl']:before,
.PlaygroundEditorTheme__listItemChecked[dir='rtl']:before {
    left: auto;
    right: 0;
}

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

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

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

.PlaygroundEditorTheme__listItemChecked:after {
    content: '';
    cursor: pointer;
    border-color: #fff;
    border-style: solid;
    position: absolute;
    display: block;
    top: 6px;
    width: 3px;
    left: 7px;
    right: 7px;
    height: 6px;
    transform: rotate(45deg);
    border-width: 0 2px 2px 0;
}

.PlaygroundEditorTheme__nestedListItem {
    list-style-type: none;
}

.PlaygroundEditorTheme__nestedListItem:before,
.PlaygroundEditorTheme__nestedListItem:after {
    display: none;
}

.PlaygroundEditorTheme__tokenComment {
    color: slategray;
}

.PlaygroundEditorTheme__tokenPunctuation {
    color: #999;
}

.PlaygroundEditorTheme__tokenProperty {
    color: #905;
}

.PlaygroundEditorTheme__tokenSelector {
    color: #690;
}

.PlaygroundEditorTheme__tokenOperator {
    color: #9a6e3a;
}

.PlaygroundEditorTheme__tokenAttr {
    color: #07a;
}

.PlaygroundEditorTheme__tokenVariable {
    color: #e90;
}

.PlaygroundEditorTheme__tokenFunction {
    color: #dd4a68;
}

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

.PlaygroundEditorTheme__markOverlap {
    background: rgba(255, 212, 0, 0.3);
    border-bottom: 2px solid rgba(255, 212, 0, 0.7);
}

.PlaygroundEditorTheme__mark.selected {
    background: rgba(255, 212, 0, 0.5);
    border-bottom: 2px solid rgba(255, 212, 0, 1);
}

.PlaygroundEditorTheme__markOverlap.selected {
    background: rgba(255, 212, 0, 0.7);
    border-bottom: 2px solid rgba(255, 212, 0, 0.7);
}

.PlaygroundEditorTheme__embedBlock {
    user-select: none;
}

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

.tippy-box{border:1px transparent}.tippy-box[data-placement^=top]>.tippy-arrow:after{border-top-color:inherit;border-width:8px 8px 0;bottom:-8px;left:0}.tippy-box[data-placement^=bottom]>.tippy-arrow:after{border-bottom-color:inherit;border-width:0 8px 8px;top:-8px;left:0}.tippy-box[data-placement^=left]>.tippy-arrow:after{border-left-color:inherit;border-width:8px 0 8px 8px;right:-8px;top:0}.tippy-box[data-placement^=right]>.tippy-arrow:after{border-width:8px 8px 8px 0;left:-8px;top:0;border-right-color:inherit}.tippy-box[data-placement^=top]>.tippy-svg-arrow>svg:first-child:not(:last-child){top:17px}.tippy-box[data-placement^=bottom]>.tippy-svg-arrow>svg:first-child:not(:last-child){bottom:17px}.tippy-box[data-placement^=left]>.tippy-svg-arrow>svg:first-child:not(:last-child){left:12px}.tippy-box[data-placement^=right]>.tippy-svg-arrow>svg:first-child:not(:last-child){right:12px}.tippy-arrow{border-color:inherit}.tippy-arrow:after{content:"";z-index:-1;position:absolute;border-color:transparent;border-style:solid}
