
.fte_display_none {
    display: none !important;
}

.fte_vertical_centralizer {
    height: 100%; 
    display: flex;
    flex-direction: row;
    align-items: center;
}

.fte_text_selection_disabled {
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.fte_find_area {
    padding: 0px 8px;
    padding-bottom: 4px;
    display: flex;
    border: 1px solid black;
    border-top: none;
    z-index: 20;
    background: white;
    color: #7f86a9;
    align-items: center;
}

.fte_find_area .fte_cell {
    height: 25px;
    display: flex;
    align-items: center;
    margin-top: 4px;
}

.fte_find_area input {
    -webkit-appearance: none;
    border: 1px solid #7f86a9;
    border-radius: 4px;
    height: 100%;
    width: 100%;
    margin: 0;
    padding: 0;
    line-height: 0;
    font-size: 0.9rem;
    padding-left: 4px;
}

.fte_find_control {
    font-size: 1.5rem;
    border-radius: 4px;
    padding: 0px 4px;
    cursor: default;
    white-space: nowrap;
}

.fte_find_control.fte_match_case_button {
    margin: 0px 2px;
    font-size: 1.3rem;
}

.fte_find_control.fte_replace_button,
.fte_find_control.fte_replace_all_button,
.fte_find_control.fte_goto_button {
    font-size: 0.8rem;
    font-weight: bold;
}

.fte_goto_input.fte_invalid {
    border-color: red;
    background: #f7dada;
}

.fte_find_control.fte_match_case_button.fte_active {
    text-shadow: 1px 1px 5px #999;
    color: #000;
}

.fte_dark_theme .fte_find_control.fte_match_case_button.fte_active {
    text-shadow: 1px 1px 5px #777;
    color: white;
}

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

.fte_dark_theme .fte_find_control:hover {
    background-color: rgb(34, 32, 53);
}

.fte_dark_theme .fte_find_area {
    background: #434d5c;
    border-color: #cccccc;
    color: #7f86a9;
}

.fte_dark_theme .fte_find_area label {
    color: #9da2bb;
}

.fte_lines_container {
    isolation: isolate;
}

.fte_lines_container .caret .name {
    color: white;
    padding: 1px 2px;
}

.fte_lines_container .selection_rect {
    z-index: 2;
}

.fte_lines_container .caret .proximity_circle:hover ~ .name, .fte_lines_container .caret .name:hover {
    display: initial !important;
}

.fte_lines_container .fte_warning1 {
    z-index: 1;
}

.fte_lines_container .fte_warning1,
.fte_lines_container .fte_warning1 span {
    background-color: #f0ddcf;
}

.fte_lines_container fte_quick_search_highlighter {
    border: 1px solid #b3a24a;
    background: #ecd888;
    border-radius: 2px;
    height: 100%;
    position: absolute;
}

.fte_dark_theme .fte_all_container {
    border-color: #ccc;
    background: rgb(34, 32, 53);
}

.fte_dark_theme .fte_lines_container .fte_warning1,
.fte_dark_theme .fte_lines_container .fte_warning1 span {
    background-color: rgb(77, 66, 72);
}

.fte_dark_theme .fte_lines_container {
    color: white;
}

.fte_dark_theme .fte_line_numbers_container {
    background: rgb(34, 32, 53);
    color: #ccc;
}

.fte_dark_theme .fte_lines_container {
    background: #2c3645;
}

.fte_dark_theme .fte_find_area {
    color: #aaa9b5;
    border-color: #ccc;
}

.fte_dark_theme .fte_find_area input {
    background: #2c3645;
    color: white;
}
        
.fte_all_container {
    position: absolute;
    border: 1px solid #000;
    width: 100%;
    height: 100%;
    padding-top: 0px;
    padding-left: 0px;
    overflow: none;
    display: inline-flex;
    background: rgba(240, 240, 240);
}

.fte_view_container {
    display: inline-flex;
    width: calc(100% - 8px);
    cursor: text;
    -moz-user-select: -moz-none;
}

.fte_line_numbers_container {
    width: auto;
    height: 100%;
    padding-right: 5px;
    padding-left: 4px;
    background-color: rgba(240, 240, 240);
    color: rgb(127, 127, 127);
    cursor: default;
}    

.fte_line_number {
    -moz-user-select: -moz-none;
    position: relative;
    width: 100%;
    cursor: default;
    text-align: right;
}
        
.fte_lines_container {
    width: 100%;
    height: 100%;
    padding-top: 0px;
    padding-left: 0px;
    overflow-x: auto;
    overflow-y: hidden;
    cursor: text;
    display: block;
    position: relative;
}

.fte_spinner {
    display: none;
}

.fte_loading .fte_spinner {
    --size: 75px;
    --color: #aaa;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: block;
}

.fte_lines_wrapper {
    caret-color: transparent;
    cursor: text;
    margin-left: 2px;
    display: flex;
    flex-direction: column;
    outline: none;
}

.fte_line {
    -moz-user-select: -moz-none;
    position: relative;
    display: flex;
    white-space: pre;
    cursor: text;
    letter-spacing: 0px;
    word-spacing: 0px;
    word-wrap: normal;
    align-items: center;
}

.fte_formatted_text {
    display: inline-block;
    z-index: 1;
}

.fte_hidden_characters_note {
    display: block;
    font-size: 0.7em;
    font-weight: bold;
    background: #ddd;
    color: #777777;
    border-radius: 4px;
    padding: 0px 4px;
    text-align: center;
    vertical-align: middle;
}

.fte_scroll_bar_container {
    width: 6px;
    min-width: 6px;
    height: 100%;
    margin-left: 2px;
    background-color: rgba(240, 240, 240);
    cursor: default;
}

.fte_scroll_bar_thumb {
    position: relative;
    left: 0px;
    top: 0px;
    width: 100%;
    height: 50px;
    border-radius: 6px;
    background-color: #888;
}

fte_autocomplete_menu {
    position: absolute;
    display: block;
    border: 1px solid black;
    background: #bec7d5;
    z-index: 10;
    cursor: default;
    overflow-y: auto;
}

fte_autocomplete_menu fte_option {
    display: block;
    padding: 0px 30px 0px 2px;
}

fte_autocomplete_menu fte_option:last-child {
    padding-bottom: 2px;
}

fte_autocomplete_menu fte_option:hover {
    background: #f0f0f0;
}

fte_autocomplete_menu fte_option.fte_selected {
    background: #434d5c;
    color: #bbbbbb;
}

.fte_dark_theme .fte_scroll_bar_container {
    background: rgb(34, 32, 53);
}

.fte_dark_theme .fte_scroll_bar_thumb {
    background: rgb(136 136 136);
}

.fte_dark_theme fte_autocomplete_menu {
    background: #222035;
    color: #cccccc;
    border-color: #cccccc;
}

.fte_dark_theme fte_autocomplete_menu fte_option:hover {
    background: #2c3645;
}

.fte_dark_theme fte_autocomplete_menu fte_option.fte_selected {
    background: #bec7d5;
    color: #2d314a;
}

.fte_dark_theme .fte_line fte_quick_search_highlighter {
    background: #0c3279;
    border-color: #5972b9;
}

.fte_dark_theme .fte_goto_input.fte_invalid {
    border-color: red;
    background: #280e0e;
}



