.editor {
    width: 100%;
    display: inline-flex;
    gap: 10px;
    font-family: monospace;
    line-height: 21px;
    /*    background: #282a3a;*/
    /*    border-radius: 2px;*/
    padding: 20px 10px;
}

.line-numbers {
    line-height: 21px;
    width: 20px;
    text-align: right;
}

.line-numbers span {
    counter-increment: linenumber;
}

.line-numbers span::before {
    content: counter(linenumber);
    display: block;
    color: #506882;
}

textarea {
    line-height: 21px;
    overflow-y: hidden;
    padding: 0;
    border: 0;
    margin: 0;
    border-radius: 0;
    background-color: transparent;
    color: transparent;
    caret-color: whitesmoke;
    outline: none;
    resize: none;
}

.editor, .backdrop, textarea {
    width: 100%;
    /*height: 600px;*/
}

.highlights, textarea {
    line-height: 21px;
    padding-left: 20px;
    /*font-family: monospace;*/
    /*letter-spacing: 1px;*/
    overflow-y: hidden;
}

.editor {
    /*display: block;*/
    margin: 0 auto;
    transform: translateZ(0);
    -webkit-text-size-adjust: none;
}

.backdrop {
    left: 20px;
    position: absolute;
    z-index: 1;
    /*border: 2px solid #685972;*/
    /*background-color: #fff;*/
    overflow: auto;
    pointer-events: none;
    transition: transform 1s;
}

.highlights {
    white-space: pre-wrap;
    word-wrap: break-word;
    color: #aaaaaa;
}

textarea {
    left: 20px;
    /*display: block;*/
    position: absolute;
    z-index: 2;
    margin: 0;
    /*border: 2px solid #74637f;*/
    border-radius: 0;
    /*color: #444;*/
    /*background-color: transparent;*/
    overflow: hidden;
    resize: none;
    transition: transform 1s;
}

tag{
    color:lightseagreen;
}

marker {
    border-radius: 3px;
    background-color: rgba(255,0,0,0.6);
}
keyword{
    color:lightseagreen;
}
attribute{
    color:orange;
}
language{
    color: #ff2ebf;
}
bracket{
    color:white;
}
operator{
    color: #9585f5;
}
special{
    color: #cccccc;
}

.token.operator{
    background-color: transparent;
}