.ardf-eiditor-container {
    display: flex;
    flex-flow: column;
    background: #f0a2021c;
    border-radius: 1rem;
    overflow: hidden;
}

.ardf-eiditor-head {
    width: 100%;
    min-height: 50px;
    padding: 0 1rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    /* background: wheat; */
}

.ardf-eiditor-body {
    display: flex;
    justify-content: left;
    font-family: monospace;
    font-size: 17px;
    height: 100%;
}

.line-number-container {
    height: 100%;
    min-width: 50px;
    display: flex;
    flex-flow: column;
    align-items: flex-end;
    padding-right: 10px;
    font-size: inherit;
    font-family: inherit;
    /* background: #0000000f; */
}

.text-area-container {
    width: 100%;
    font-size: inherit;
    font-family: inherit;
}

.ardf-eiditor-container textarea {
    background: none;
    padding: unset;
    font-size: inherit;
    font-family: inherit;
    height: 100%;
    resize: none;
}

.code-editor-wrr {
    display: flex;
    justify-content: left;
    border: 1px solid #18305921;
    border-radius: 0.5rem;
    font-family: "Roboto Mono",monospace;
    font-size: 14px;
    /* padding: 1.3rem 0 0 0; */
    overflow: hidden;
    background: #1830590d;
}

.num-wrr {
    /* background: whitesmoke; */
    color: black;
    /* background: white; */
    /* border-left: 1px solid #f1f1f129; */
    /* border-right: 1px solid #18305921; */
    font-family: inherit;
    font-size: inherit;
    padding-top: 1rem;
    background: #607d8b24;
}

.cNumWrr {
    display: grid;
    min-width: 50px;
    font-family: inherit;
    font-size: inherit;
}

.text-wrr {
    width: 100%;
    position: relative;
    font-family: inherit;
    font-size: inherit;
    padding-top: 1rem;
}

.cTextBox {
    z-index: 9;
    background: none;
    border: none;
    color: #ff000000;
    caret-color: red;
}

.cViewBox {
    color: #000000DE;
    z-index: 8;
    color: #676767;
    color: #183059;
}

.cLineBox {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 1rem;
    left: 0;
    z-index: 7;
    /* background: #b8efb817; */
    font-family: inherit;
    font-size: inherit;
}

.edComStyle {
    padding: 0;
    position: absolute;
    width: 100%;
    height: 100%;
    /* padding-left: 5px; */
    line-height: 20px;
    font-size: 18px;
    outline: none;
    resize: none;
    left: 1rem;
    top: 1rem;
    /* font-weight: bold; */
    /* font-style: italic; */
    font-family: inherit;
    font-size: inherit;
    tab-size: 35px;
}

.csPalate {
    position: absolute;
    top: 0;
    left: 0;
    background: #fffffff7;
    backdrop-filter: blur(15px);
    width: 250px;
    height: 300px;
    z-index: 10;
    box-shadow: 0px 4px 15px 0px gainsboro;
    border-radius: 5px;
    border-top-left-radius: 0;
    border-top-right-radius: 0;
    display: none;
    overflow: auto;
}

pre {
    font-family: inherit;
    font-size: inherit;
    /* color: #000000DE; */
}

.sugg {
    padding: 10px;
    color: black;
    cursor: pointer;
}

.sugg:hover {
    background: black;
    color: white;
}

/*----num & line css----*/
num {
    width: 100%;
    display: flex;
    justify-content: right;
    padding-right: 10px;
    align-items: center;
    height: 20px;
    font-family: inherit;
    font-size: inherit;
    color: rgba(0,0,0,0.38);
    color: #183059;
}

.line {
    height: 20px;
    padding-left: 5px;
    font-family: inherit;
    font-size: inherit;
}

.line:nth-child(even) {
    /* background: #ffffff00; */
    /* border-bottom: 1px solid whitesmoke; */
    /* border-top: 1px solid whitesmoke; */
}

.activeLine {
    /* background: #b6ffc0!important; */
    /* background: #00e2ff1c !important; */
    background: #607d8b0f !important;
    /* border-bottom: 1px solid #18305912; */
    /* border-top: 1px solid #18305912; */
}


/*----html color----*/
tag {
    color: #0027ff;
}

att {
    color: green;
}

avalue {
    color: red;
    font-style: italic;
}


/*----css color----*/
css {
    color: #0027ff;
}

selector {
    color: #da00ff;
}

property {
    color: deepskyblue;
    font-style: italic;
}

pvalue {
    color: #4CAF50;
    /* color: #afc100; */
}


/*----js color----*/
js {
    color: #000000;
}

jskey {
    color: #da00ff;
    font-style: italic;
}

jsvalue {
    color: green;
    font-style: italic;
}

jsvariable {
    color: #FFEB3B;
}

jsselectors {
    /* color: black; */
}

jsdot {
    color: red;
}

jsoparetor {
    color: #da00ff;
    /* font-style: italic; */
}


/*---comment color----*/
comment {
    color: #607D8B;
    font-weight: 100;
}

tab {
    border-left: 1px solid gainsboro;
    display: inline;
}



/*--file var--*/
.fn-var {
    display: flex;
    justify-content: left;
    align-items: center;
    padding: 10px;
    /* border-bottom: 1px solid whitesmoke; */
    position: sticky;
    top: 0;
    left: 0;
    /* background: #ffffff; */
    backdrop-filter: blur(10px);
    z-index: 20;
    overflow-x: auto;
    overflow-y: hidden;
    gap: 10px;
}

.fn-col {
    padding: 10px;
    cursor: pointer;
    /* border-right: 1px solid whitesmoke; */
    /* border-bottom: 3px solid #ffffff08; */
    /* background: whitesmoke; */
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
}

.fn-col.active-file {
    /* border-bottom: 3px solid green!important; */
    color: green!important;
    /* background: #f5fff5!important; */
}

.fn-col:hover {
    /* border-bottom: 3px solid black; */
    /* background: whitesmoke; */
}


/*--of search--*/
.of-search {
    position: sticky;
    width: 100%;
    /* height: 60px; */
    /* background: white; */
    backdrop-filter: blur(10px);
    left: 0;
    top: 0;
    z-index: 21;
    display: none;
    /* border-radius: 5px; */
    justify-content: space-between;
    /* box-shadow: 0px 0px 5px 0px gainsboro; */
    align-items: center;
    padding: 20px;
    gap: 10px;
    border-bottom: 1px solid whitesmoke;
    /* border-top: 1px solid whitesmoke; */
}

input#ofsearch {
    width: 150px;
    width: 100%;
    /* height: 50px; */
    /* padding: 10px; */
    /* border-radius: 5px; */
    border: none;
    background: none;
    outline: none;
}

.ofs-col.result {
    font-size: 13px;
    min-width: 70px;
}

selem {
    background: #FFEB3B;
}

selem.active_se {border: 1px solid red;/* background: #f5f5f5; *//* border-radius: 3px; */}

.part-ofs {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
}

.ofs-col {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 5px;
}

.part-ofs.inputpad .ofs-col {
    background: #0000000a;
    padding: 15px;
    height: 40px;
    border-radius: 3px;
}

.part-ofs.inputpad {
    width: 100%;
}

.ofs-col.input-ofs {
    width: 100%;
}

.gol-btn.xmark {
    cursor: pointer;
}

.my-caret {
    position: absolute;
    width: 10px;
    height: 30px;
    background: black;
}

.fn-col .dot {
    display: flex;
    justify-content: center;
    align-items: center;
}