html {
    overflow-y: hidden;
}

body {
    background-color: lightgray;
    height: 100%;
}

.sidebar[data-v-3421b06a] {
    height: 100vh;
    position: fixed;
    z-index: 1000;
    min-height: 340px;
}
.active .v-list-item[data-v-3421b06a] {
    background-color: #1E1E1E;
}
.profile[data-v-3421b06a] {
    text-decoration: none;
}

.app-wrapper[data-v-7fcc984f] {
  height: 100%;
  padding: 0 0 0 56px;
  background-color: #EBEDF0;
}
.context-dialog[data-v-7fcc984f] {
  position: absolute;
  width: 156px;
  height: fit-content;
  background: #464646;
  border: 1px solid #595959;
  z-index: 9999;
  color: white;
}
.context-menu[data-v-7fcc984f] {
  list-style-type: none;
  padding: 0;
}
.context-menu li[data-v-7fcc984f] {
  margin-top: 3px;
  margin-bottom: 3px;
  cursor: pointer;
  padding: 2px 4px;
  padding-left: 15px;
}
.context-menu li[data-v-7fcc984f]:hover {
  background: grey;
}
.wrapper-context[data-v-7fcc984f] {
  width: 100%;
  height: 100vh;
  z-index: 9998;
  position: absolute;
  background: none;
}
.notice[data-v-7fcc984f] {
  width: 200px;
  height: 80px;
  border-radius: 5px;
  background: #7eda28;
  color: black;
}

.v-dialog[data-v-5ca24348] {
  width: auto!important;
}
.v-dialog > .v-card > .v-card__text[data-v-5ca24348] {
  padding: 20px;
}
.v-sheet[data-v-5ca24348] {
  background-color: #272822;
  border: 1px solid#41423d;
  color: #FFFFFF;
}


.v-data-table[data-v-7f24b169] {
  overflow: hidden;
  background-color: transparent;
}
.v-data-table[data-v-7f24b169] thead >>> th {
  word-break: keep-all;
  white-space: nowrap;
}
.value-wrapper[data-v-7f24b169] {
  word-break: break-all;
  max-height: 1.1em;
  overflow: hidden;
  position: relative;
  color: transparent;
}
.value-wrapper[data-v-7f24b169]::after {
  content: attr(title);
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  color: #FFFFFF;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
}
.theme--dark.v-data-table[data-v-7f24b169] thead > tr > th {
  white-space: nowrap;
}
.name-wrapper[data-v-7f24b169]:hover {
  cursor: pointer;
}

/**
 * Copyright (c) 2014 The xterm.js authors. All rights reserved.
 * Copyright (c) 2012-2013, Christopher Jeffrey (MIT License)
 * https://github.com/chjj/term.js
 * @license MIT
 *
 * Permission is hereby granted, free of charge, to any person obtaining a copy
 * of this software and associated documentation files (the "Software"), to deal
 * in the Software without restriction, including without limitation the rights
 * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
 * copies of the Software, and to permit persons to whom the Software is
 * furnished to do so, subject to the following conditions:
 *
 * The above copyright notice and this permission notice shall be included in
 * all copies or substantial portions of the Software.
 *
 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
 * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
 * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
 * THE SOFTWARE.
 *
 * Originally forked from (with the author's permission):
 *   Fabrice Bellard's javascript vt100 for jslinux:
 *   http://bellard.org/jslinux/
 *   Copyright (c) 2011 Fabrice Bellard
 *   The original design remains. The terminal itself
 *   has been extended to include xterm CSI codes, among
 *   other features.
 */

/**
 *  Default styles for xterm.js
 */

 .xterm {
    height: calc(100vh - 48px);
    cursor: text;
    position: relative;
    user-select: none;
    -ms-user-select: none;
    -webkit-user-select: none;
}

.xterm.focus,
.xterm:focus {
    outline: none;
}

.xterm .xterm-helpers {
    position: absolute;
    top: 0;
    /**
     * The z-index of the helpers must be higher than the canvases in order for
     * IMEs to appear on top.
     */
    z-index: 5;
}

.xterm .xterm-helper-textarea {
    padding: 0;
    border: 0;
    margin: 0;
    /* Move textarea out of the screen to the far left, so that the cursor is not visible */
    position: absolute;
    opacity: 0;
    left: -9999em;
    top: 0;
    width: 0;
    height: 0;
    z-index: -5;
    /** Prevent wrapping so the IME appears against the textarea at the correct position */
    white-space: nowrap;
    overflow: hidden;
    resize: none;
}

.xterm .composition-view {
    /* TODO: Composition position got messed up somewhere */
    background: #000;
    color: #FFF;
    display: none;
    position: absolute;
    white-space: nowrap;
    z-index: 1;
}

.xterm .composition-view.active {
    display: block;
}

.xterm .xterm-viewport {
    /* On OS X this is required in order for the scroll bar to appear fully opaque */
    background-color: #000;
    overflow-y: scroll;
    cursor: default;
    position: absolute;
    right: 0;
    left: 0;
    top: 0;
    bottom: 0;
}

.xterm .xterm-screen {
    position: relative;
}

.xterm .xterm-screen canvas {
    position: absolute;
    left: 0;
    top: 0;
}

.xterm .xterm-scroll-area {
    visibility: hidden;
}

.xterm-char-measure-element {
    display: inline-block;
    visibility: hidden;
    position: absolute;
    top: 0;
    left: -9999em;
    line-height: normal;
}

.xterm.enable-mouse-events {
    /* When mouse events are enabled (eg. tmux), revert to the standard pointer cursor */
    cursor: default;
}

.xterm.xterm-cursor-pointer,
.xterm .xterm-cursor-pointer {
    cursor: pointer;
}

.xterm.column-select.focus {
    /* Column selection mode */
    cursor: crosshair;
}

.xterm .xterm-accessibility,
.xterm .xterm-message {
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    right: 0;
    z-index: 10;
    color: transparent;
    pointer-events: none;
}

.xterm .live-region {
    position: absolute;
    left: -9999px;
    width: 1px;
    height: 1px;
    overflow: hidden;
}

.xterm-dim {
    /* Dim should not apply to background, so the opacity of the foreground color is applied
     * explicitly in the generated class and reset to 1 here */
    opacity: 1 !important;
}

.xterm-underline-1 { text-decoration: underline; }
.xterm-underline-2 { text-decoration: double underline; }
.xterm-underline-3 { text-decoration: wavy underline; }
.xterm-underline-4 { text-decoration: dotted underline; }
.xterm-underline-5 { text-decoration: dashed underline; }

.xterm-overline {
    text-decoration: overline;
}

.xterm-overline.xterm-underline-1 { text-decoration: overline underline; }
.xterm-overline.xterm-underline-2 { text-decoration: overline double underline; }
.xterm-overline.xterm-underline-3 { text-decoration: overline wavy underline; }
.xterm-overline.xterm-underline-4 { text-decoration: overline dotted underline; }
.xterm-overline.xterm-underline-5 { text-decoration: overline dashed underline; }

.xterm-strikethrough {
    text-decoration: line-through;
}

.xterm-screen .xterm-decoration-container .xterm-decoration {
	z-index: 6;
	position: absolute;
}

.xterm-screen .xterm-decoration-container .xterm-decoration.xterm-decoration-top-layer {
	z-index: 7;
}

.xterm-decoration-overview-ruler {
    z-index: 8;
    position: absolute;
    top: 0;
    right: 0;
    pointer-events: none;
}

.xterm-decoration-top {
    z-index: 2;
    position: relative;
}


#terminal1 {
    width: fit-content;
    height: calc(100vh - 40px);
    border:1px solid #515751;
    overflow-y: scroll;
}
#mttContainer {
    left: 0 !important;
    top: 0 !important;
    position: fixed !important;
    z-index: 100000200 !important;
    width: 1000px !important;
    margin-left: -500px !important;
    background-color: #00000000  !important;
    pointer-events: none !important;
}
.bootstrapiso .tooltip {
    width:auto  !important;
    height:auto  !important;
    background:transparent  !important;
    border:none !important;
    border-radius: 0px !important;
    visibility: visible  !important;
    pointer-events: none !important;
}
.bootstrapiso .tooltip-inner {
    font-size: 14px  !important;
    max-width: 200px  !important;
    text-align: center !important;
    backdrop-filter: blur(2px)  !important;
    background-color: #000000b8 !important;
    color: #ffffffff !important;
    border-radius: .25rem !important;
    pointer-events: none !important;
}
.bootstrapiso .arrow::before {
    border-top-color: #000000b8 !important;
}


.status-socket[data-v-462b9647]{
  width: 20px;
  height: 20px;
  margin-left: 19px;
  border-radius: 50%;
}
.connecting[data-v-462b9647] {
  background: #fd9600;
}
.open[data-v-462b9647] {
  background: #069409;
}
.closed[data-v-462b9647] {
  background: #606060;
}
.terminal-wrapper[data-v-462b9647] {
    overflow: hidden;
    background: transparent;
    border-left: 1px solid #41423d;
    border-top: 1px solid #41423d;
    flex: 1;
    display: flex;
    width: 100%;
    flex-direction: column;
}
.terminal-wrapper > .vue-terminal[data-v-462b9647] {
    overflow: hidden;
}
.terminal-wrapper > .vue-terminal[data-v-462b9647] .terminal-window {
    background: transparent !important;
    margin: 0 !important;
    padding: 0 17px !important;
    height: 100%;
}
.terminal-wrapper > .vue-terminal[data-v-462b9647] .terminal-window p {
    font-size: 14px !important;
}
.terminal-wrapper > .vue-terminal[data-v-462b9647] .prompt::after {
    content: '~$' !important;
    color: #FFFFFF;
}
.terminal-wrapper > .vue-terminal[data-v-462b9647] .prompt {
    color: #7eda28;
}
.terminal-wrapper > .vue-terminal[data-v-462b9647] .prompt::before {
    content: '' !important;
    margin-right: 0 !important;
}
.terminal-button-wrapper[data-v-462b9647] {
    width: 100%;
    display: flex;
    justify-content: end;
}
.icon-button[data-v-462b9647] {
    color: #2A58F1 !important;
}


.search-input[data-v-7cd4a866] .v-input__slot {
    background: #41423d !important;
    box-shadow: none !important;
}
.search-input[data-v-7cd4a866] .primary--text {
    color: #FFFFFF !important;
}
.icon-buttons[data-v-7cd4a866] {
    display: flex;
}
.tree[data-v-7cd4a866] .v-icon {
    margin-right: 5px;
}
.tree[data-v-7cd4a866] .v-treeview-node__root:hover {
    background: #41423db0;
    cursor: pointer;
}
.tree[data-v-7cd4a866] .primary--text {
    color: unset !important;
}
.tree[data-v-7cd4a866] .tree-item {
    position: absolute;
    top: 0;
    display: flex;
    align-items: center;
    height: 100%;
    font-size: 14px;
}
.tree[data-v-7cd4a866] .v-treeview-node__root {
    overflow: hidden;
}
.context-dialog[data-v-7cd4a866]{
  position: absolute;
  width: 80px;
  height: 100px;
  background: #3b3b51bf;
  z-index: 9999;
}
.loader-container[data-v-7cd4a866] {
  display: flex;
  align-items: center;
  justify-content: center;
}


.container-list[data-v-6b9fa5d2]{
  display: flex;
  flex-direction: column;
  position: relative;
  height:100%;
  z-index: 0;
}
.snackbar[data-v-6b9fa5d2] {
  position: absolute;
  z-index: 2;
  bottom: 0;
  right: 50%;
  margin-bottom: 20px;
}
.snackbar[data-v-6b9fa5d2] .v-snack__wrapper {
  padding: 10px;
  border-radius: 5px;
}
/*TOP*/
.top[data-v-6b9fa5d2]{
  width: 100%;
  height: 40px;
  border-bottom: 1px solid #545454;
  position: relative;
  display: flex;
  justify-content: space-between;
  padding: 0 20px;
}
.bar[data-v-6b9fa5d2]{
  display: flex;
  justify-content: center;
}
.action-btn[data-v-6b9fa5d2]{
  margin: 0 4px;
}
.action-btn span[data-v-6b9fa5d2]{
  font-size: 25px;
  cursor: pointer;
  color: white;
  display: flex;
  align-items: center;
}
.action-btn span[data-v-6b9fa5d2]:hover{
  color: grey;
}
.action-btn span label[data-v-6b9fa5d2] {
  font-size: 13px;
  cursor: pointer;
}
/*END-TOP*/
.wrapper[data-v-6b9fa5d2] {
  display: flex;
  flex-direction: row;
  position: relative;
  height: 100%;
  width: 100%;
  padding: 0;
  background-color: #272822;
}
.leftbar[data-v-6b9fa5d2],
.centerbar[data-v-6b9fa5d2],
.rightbar[data-v-6b9fa5d2]{
  position: relative;
  transition: all .3s ease-out;
  flex-shrink:0
}
.leftbar[data-v-6b9fa5d2]{
  display: flex;
  flex-direction: column;
  position: relative;
  width: 20%;
  height: 100vh;
  overflow-y: auto;
  overflow-x: hidden;
  scrollbar-width: thin;
  scrollbar-color: #6969dd #e0e0e0;
}
.leftbar[data-v-6b9fa5d2]::-webkit-scrollbar-thumb {
  box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
}
.leftbar[data-v-6b9fa5d2]::-webkit-scrollbar-track {
  background-color: darkgrey;
}
.leftbar[data-v-6b9fa5d2]::-webkit-scrollbar {
  width: 10px;
}
.centerbar[data-v-6b9fa5d2]{
  width: 50%;
}
.rightbar[data-v-6b9fa5d2]{
  display: flex;
  flex-direction: column;
  position: relative;
  width: 30%;
  right: 0;
  scroll-behavior: unset;
  transition: all .3s ease-out;
}
.hidebtn[data-v-6b9fa5d2]{
  position: absolute;
  top: 50%;
  font-size: 20px;
  font-weight: 600;
  color: white;
  background: #535353;
  cursor: pointer;
  z-index: 5;
}
.hidebtn[data-v-6b9fa5d2]:hover{
  background: white;
  color: #4c4c4c;
  font-size: 25px;
}
.hidebtn-leftbar[data-v-6b9fa5d2]{
  right: -10px;
  border-radius: 3px 6px 6px 3px;
}
.hidebtn-rightbar[data-v-6b9fa5d2]{
  left: -10px;
  border-radius: 6px 3px 3px 6px;
}
.action-icon[data-v-6b9fa5d2]{
  font-size: 37px !important;
  margin-left: 10px;
}
.icon-buttons[data-v-6b9fa5d2] {
    display: flex;
    align-items: center;
}
.icon-button[data-v-6b9fa5d2] {
    color: #2A58F1 !important;
}
.icon-buttons button[data-v-6b9fa5d2]:hover {
    color: rgba(255, 255, 255, 1);
}
.monako-editor[data-v-6b9fa5d2]{
  width: 100%;
  height: 100%;
}
.toolbar-tabs[data-v-6b9fa5d2]{
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  max-width: 100%;
}
.filename-header[data-v-6b9fa5d2]{
  display: flex;
  align-items: end;
  overflow-x: scroll;
  overflow-y: hidden;
  max-width: 80%;
}
.filename-header[data-v-6b9fa5d2]::-webkit-scrollbar{
  height: 4px;
}
.filename-header[data-v-6b9fa5d2]::-webkit-scrollbar-track{
  background: #2a2a2a;
}
.filename-header[data-v-6b9fa5d2]::-webkit-scrollbar-thumb{
  background: #424251;
  border-radius: 3px;
}
.filename-header[data-v-6b9fa5d2]::-webkit-scrollbar-thumb:hover{
  background: #6464c0;
}
.tabsOpenFile[data-v-6b9fa5d2]{
  padding: 5px 4px 3px 4px;
  border: 1px solid #606060;
  border-top-left-radius: 8px;
  border-top-right-radius: 8px;
  border-bottom: none;
  cursor: pointer;
  display: flex;
  flex-grow:3;
  flex-shrink:0;
  opacity: 0.7;
}
.tabsOpenFile[data-v-6b9fa5d2]:hover{
  background: #5c5c5c;
}
.active-tab[data-v-6b9fa5d2]{
  background: #5c5c5c;
  font-weight: 600;
  opacity: 1;
}
.active-tab[data-v-6b9fa5d2]:hover{
  background: #5c5c5c;
}
.close-tab[data-v-6b9fa5d2]{
  font-size: 12px;
  color: #6f6f6f;
  margin: 0 4px 0;
  cursor: pointer;
}
.color-white[data-v-6b9fa5d2]{
  color: whitesmoke;
}
.color-yellow[data-v-6b9fa5d2]{
  color: yellow;
}
.color-orange[data-v-6b9fa5d2]{
  color: orange;
}
.color-blue[data-v-6b9fa5d2]{
  color: cornflowerblue;
}
.iconFile[data-v-6b9fa5d2]{
  opacity: 0.9;
}


.monako-editor[data-v-20f1d5ef]{
  border: 1px solid #00a530;
  height: 100%;
  width: 100%;
}

