html, body {
    margin:0;
    height: 100%;
    color: white;
    font-family: monospace;
    font-size: 10px;
    background-color: #1a1a1a;
}

::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: transparent; 
}

::-webkit-scrollbar-thumb {
    background: #333;
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: #444; 
}

flex {
    display: flex;
    overflow: hidden;
}

flex.h {
    flex-direction: row;
}

flex.v {
    flex-direction: column;
}

flex>flex-resizer {
    flex: 0 0 1px;
    background-repeat: no-repeat;
    background-position: center;
    position: relative; 
}

flex.h>flex-resizer::before {
    content: "";
    position: absolute;
    top: 0;
    left: -10px;
    bottom: 0;
    width: 20px;
}

flex.v>flex-resizer::before {
    content: "";
    position: absolute;
    top: -10px;
    left: 0px;
    bottom: 10px;
    height: 20px;
    right: 0px;
}

flex-item {
    display: flex;
    overflow: hidden;
    border-radius: 20px;
    background: #222;
    margin: 10px;
}

flex.h>flex-resizer:hover {
    background-color: #363636;
    width: 20px;
}

flex.v>flex-resizer:hover {
    background-color: #363636;
    height: 20px;
}

flex.h>flex-resizer {
    cursor: ew-resize;
}

flex.v>flex-resizer {
    cursor: ns-resize;
}

/* Chrome, Safari, Edge, Opera */
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

/* Firefox */
input[type=number] {
  -moz-appearance: textfield;
}


/* LayoutConsole */
.LayoutConsole {
    width: 100%;
}

.LayoutConsole > .warn {
    color: yellow;
}

.LayoutConsole > .error {
    color: red;
}

.Layout {
    width: 100%;
}

.Layout > .header {
    display: flex;
    align-items: center;
    width: 100%;
    border-bottom: 1px solid #2b2b2b;
    padding-left: 10px;
    padding-top: 5px;
}

.Layout > .header > .title {
    height: 15px;
    padding: 2px;
    cursor: pointer;
}

.Layout > .header > .selected {
    background-color: #272727;
}

.Layout > .header > .right-action {
    margin-left: auto;
    margin-right: 20px;
    font-size: 12px;
}

.Layout > .header > .right-action button {
    color: inherit;
    background: none;
    border: none;
    cursor: pointer;
}

.Layout > .header > .right-action button:hover {
    opacity: 0.5;
}

.Floating-Menu {
    position: absolute;
    background-color: #262626;
    border-radius: 10px;
    box-shadow: 1px 1px 3px 0px black;
    border: 1px solid #262626;
    padding: 10px;
    z-index: 1;
    font-size: 10px;
}

.button {
    font-size: 9px;
    color: white;
    background-color: #121212;
    border: 1px solid black;
    border-radius: 5px;
    outline: none;
    cursor: pointer;
    padding: 5px;
}

.button:hover {
    opacity: 0.5;
}
.InspectorComponent {
    display: flex;
    align-items: center;
    margin-bottom: 5px;
}

.InspectorComponent .title {
    font-size: 9px;
    width: 30%;
    margin-left: 10px;
}

.InspectorComponent .value {
    display: flex;
    align-items: center;
    width: 100%;
}

.InspectorComponent .input {
    font-size: 9px;
    background-color: #121212;
    border-radius: 5px;
    color: white;
    border: 1px solid black;
    outline: none;
    width: 100%;
    padding: 5px;
}

.InspectorComponent .input:hover {
    border: 1px solid #4d4d4d;
}

.InspectorComponent .input.active {
    background-color: #3498db80;
}

.InspectorComponent {
    margin-bottom: 5px;
}

.InspectorComponent .input {
    width: 100%;
}



.InspectorComponent .range {
    -webkit-appearance: none;
    height: 5px;
    background: #4d4d4d;
    outline: none;
}

.InspectorComponent .range:hover {
    opacity: 1;
}

.InspectorComponent .range::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 10px;
    height: 10px;
    background: #bfbfbf;
    cursor: pointer;
    border-radius: 50%;
}

.InspectorComponent .range::-moz-range-thumb {
    width: 10px;
    height: 10px;
    background: #bfbfbf;
    cursor: pointer;
    border-radius: 50%;
}

.InspectorComponent .gray-bg {
    background-color: #7f8c8d50;
}

.InspectorComponent .red-bg {
    background-color: #e74c3c50;
}

.InspectorComponent .green-bg {
    background-color: #2ecc7150;
}

.InspectorComponent .blue-bg {
    background-color: #3498db50;
}

.InspectorComponent .vec-label {
    padding: 4px;
    font-size: 9px;
    border-top-left-radius: 2px;
    border-bottom-left-radius: 2px;
    display: flex;
    align-items: center;
}

.InspectorComponent .vec-label:hover {
    cursor: col-resize;
}

.InspectorComponent .vec-input {
    font-size: 9px;
    border-top-left-radius: 0px;
    border-bottom-left-radius: 0px;
}

.InspectorComponent .edit {
    display: flex;
    width: 100%;
    margin-right: 5px;
    align-items: center;
}
.treeview {
    overflow: auto;
    height: calc(100% - 15px);
}

.treeview .item {
    counter-increment: section;
    counter-reset: section;
    overflow-anchor: none;
}

.treeview .item .drag-hover {
    background-color: red;
}

.treeview .item .item-title {
    cursor: pointer;
}

.treeview .item .active {
    background-color: #3498db;
}

.treeview .item .item-title:before {
    content: counters(section, '--');
    opacity: 0;
}

.treeview .item .item-title:hover {
    /* background-color: #383838; */
    opacity: 0.5;
}

.treeview .item .item-content {
    overflow: hidden;
}
.collapsible-content-edonec {
    overflow: auto;
    transition: height 0.2s ease-in-out;
}
.title-text-edonec {
    display: inline-block;
    font-size: 10px;
    font-weight: bold;
}
.title-right-menu {
    float: right;
    margin-right: 10px;
    text-align: center;
    width: 15px;
    font-weight: bold;
}
.title-right-menu:hover {
    opacity: 0.5;
}

.collapsible-card-edonec {
    margin: 10px;
    border-radius: 10px;
    background-color: #1a1a1a;
    box-shadow: 1px 1px 3px 0px black;
}

.collapsible-header-edonec {
    align-items: center;
    padding: 7px;
    cursor: pointer;
    border-radius: 10px;
}
.collapsible-content-padding-edonec {
    padding-top: 3px;
}

.collapsible-icon-button-edonec {
    cursor: pointer;
    background-color: Transparent;
    background-repeat: no-repeat;
    border: none;
    cursor: pointer;
    overflow: hidden;
    outline: none;
    color: white;
    font-size: 10px;
    width: 25px;
}