body {
  font-size: 2vh;
}

*:not(td) {
  border-radius: 0.5em;
}

@font-face {
  font-family: "Chomsky";
  src:
    url("/fonts/chomsky.woff") format("woff"),
    /* URL to the WOFF font file */
    url("/fonts/chomsky.otf") format("opentype");
  /* URL to the OTF font file */
  font-weight: normal;
  font-style: normal;
}

h3 {
  font-size: 140%;
}

tr:hover {
  background: #80808040;
  transition: 0s;
}

tr {
  transition: 0.3s;
}

a,
button,
input[type="submit"],
input[type="button"],
input[type="reset"],
input[type="checkbox"],
input[type="radio"],
select {
  color: #fff;
  text-decoration: none;
  cursor: pointer;
}

/* a:not([href]), a[href=""]
{
  cursor: default;
} */

a:hover {
  text-decoration: none;
}

a:not([href]) {
  cursor: default;
}

::placeholder {
  opacity: 0.6;
}

.sunken {
  box-shadow: inset -0.2em 0.2em 0.1em black;
}

.image-placeholder {
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 300%;
  border: 1px dashed gray;
  border-radius: 0.5rem;
}

.focused {
  box-shadow: 0 0 0 max(100vh, 100vw) rgba(0, 0, 0, 0.9);
}

.grayscale {
  filter: grayscale(1);
}

.grayish {
  filter: grayscale(1);
  opacity: 0.8;
  transition: 0s;
}

.grayish:hover {
  filter: none;
  opacity: 1;
  transition: 0s;
}

.flex-column.reverse {
  flex-direction: column-reverse !important;
}

.flex-row.reverse {
  flex-direction: row-reverse !important;
}

.flex:not(.flex-row):not(.flex-column).reverse {
  flex-direction: row-reverse !important;
}

.list-item {
  border-radius: 0;
}

.list-item:nth-child(1) {
  border-radius: 0.5em 0.5em 0 0;
}

.list-item:last-child {
  border-radius: 0 0 0.5em 0.5em;
}

.reversed>.list-item:nth-child(1) {
  border-radius: 0 0 0.5em 0.5em;
}

.reversed>.list-item:last-child {
  border-radius: 0.5em 0.5em 0 0;
}

div {
  position: relative;
  width: auto;
}

body {
  background: black;
  color: #ffffffa0;
  text-shadow: -3px 3px 2px #000000a0;
  overflow-y: scroll;
  font-family: Arial, Helvetica, sans-serif;
  background: linear-gradient(0deg, #000000e0, #000000);
  background-attachment: fixed;
}

.grid {
  display: grid;
}

select,
textarea {
  width: 100%;
}

ul {
  list-style-type: none;
  padding: 0;
}

li {
  margin: 0;
}

.dimmed {
  opacity: 0.5;
  transition: 0.3s;
}

.dimmed2 {
  filter: grayscale(1);
  opacity: 0.5;
  transition: 0.3s;
}

.dimmed2:hover {
  filter: none;
  opacity: 1;
}

.hover-highlight:hover {
  background: #ffffff20;
  transition: 0s;
}

.highlighted,
tr.highlighted>th,
tr.highlighted>td {
  border: 2px dashed #ffff0080 !important;
}

:not(tr).highlighted {}

.highlighted2 {
  border: 4px dashed yellow;
}

.highlighted,
.highlighted2 {
  box-shadow: inset -4px 4px 2px #000;
  transition: 0s;
}

.tree .title.highlighted:hover {
  background: #ffffff70;
}

.tree-node {
  width: 100%;
}

.selected {
  border: 2px solid white !important;
  box-shadow: -4px 4px 4px black !important;
  background: linear-gradient(to right, #cccccc20, #00000000);
  transition:
    border 0s,
    box-shadow 0s,
    background 0s;
}

.selected:hover {
  background: linear-gradient(to right, #cccccc40, #00000000);
}

.clickable {
  padding: 0.2em 0.5em;
  cursor: pointer !important;
  opacity: 0.8;
  transition: 0.3s;
}

.clickable:hover {
  background: linear-gradient(to right, #cccccc20, #00000000);
  opacity: 1;
  transition: 0s;
}

tr.clickable>td:first-child {
  padding: 0.3em 0.2em;

}

tr.clickable>td:last-child {
  padding: 0.3em 0.2em;

}

.hoverable .clickable:hover {
  background: none;
}

.clickable2 {
  display: block;
  cursor: pointer;
}

.clickable2:hover {
  background: #ffffff30;
  transition: 0s;
}

li .clickable2:hover {
  background: none;
}

.opacity-hover {
  opacity: 0.5;
  transition: 0s;
}

.opacity-hover:hover {
  opacity: 1;
  transition: 0.1s;
}

.hoverable {
  transition: 0.3s;
}

.hoverable:hover {
  background: linear-gradient(to right, #ffffff20, #ffffff40, #ffffff20);
  transition: 0s;
}

.hovered {
  background: #ffffff30;
  transition: 0s;
}

.hovered:hover {
  transition: 0.3s;
}

.highlighted-group> :not(.ide-highlighted) {
  opacity: 0.5 !important;
}

.ide-highlighted {
  opacity: 1 !important;
}

.ide-highlighted {
  transform: scale(1.1);
}

.ide-highlighted {
  border: 3px dashed yellow !important;
  background-size: auto auto;
  box-shadow:
    -3px 3px 4px 2px #000000a0,
    inset -3px 3px 4px 2px #000000a0;
}

table {
  width: 100%;
}

td,
th {
  text-align: left;
  border-radius: 0;
}

th {
  white-space: nowrap;
}

table.bordered td,
table.bordered th {
  border: 1px solid #ffffff40;
}

div.padded,
table.padded td,
table.padded th {
  padding: 0.3em 0.6em;
}

.tree {
  width: 100%;
}

.tree li,
.menu .tree li {
  padding: 0 !important;
}

.tree .title,
.title {
  width: min-content;
  white-space: pre;
  padding: 0 1em 0 0.3em;
  max-width: 20em;
}

.tree .selected {
  background: none;
}

.tree .selected>.title,
.tree .selected>.title:hover {
  background: #ffffff60;
  box-shadow: -3px 3px 3px #00000080;
}

.menu ul.tree,
.tree li:hover {
  background: none !important;
  white-space: nowrap;
}

.tree li div {
  /* max-height: 1.9em;*/
  overflow: hidden;
  word-break: break-all;
  text-overflow: ellipsis;
}

li,
pre,
button {}

li {}

li:hover,
tr:hover>td {}

tr:hover>td:first-child {
  border-radius: 0.5em 0 0 0.5em;
}

tr:hover>td:last-child {
  border-radius: 0 0.5em 0.5em 0;
}

.parent .visible-if-parent-hover {
  opacity: 0;
}

.parent:hover .visible-if-parent-hover {
  opacity: 1;
}

code {
  white-space: pre-wrap;
  word-break: break-all;
}

button {
  padding: 0.3em 1em !important;
  box-shadow: -3px 3px 2px #00000060;
  cursor: pointer;
  font-size: 1em;
}

button

/* .ide-button */
  {
  background: #404040;
  opacity: 0.8;
  transition: 0s;
}

button:hover {
  filter: none;
  opacity: 1;
}

pre,
input,
textarea,
select,
option,
.ide-checkbox {
  padding: 0.3em 0.5em !important;
  background: linear-gradient(to left, #303030, #101010);
  box-shadow: inset -2px 2px 2px #000;
  text-shadow: -3px 3px 2px #000;
  font-family: monospace;
  font-size: 110%;
  border: 1px solid gray;
  width: 100%;
  color: #ffffff;
}

pre {
  font-size: 100%;
  overflow: hidden;
}

option {
  background: #303030;
  cursor: pointer;
}

input:focus,
textarea:focus,
select:focus {
  color: white;
  box-shadow: inset -5px 5px 3px #000;
  text-shadow: -3px 3px 2px #000000;
  outline: none;
  transition: 0s;
}

input[type="checkbox"],
.ide-checkbox {
  width: 1em;
  height: 1em;
  margin: 0.1em 0.5em;
  cursor: pointer;
  background: #979797;
  transform: scale(1.1);
}

input,
input[type="text"],
select {}

input[type="color"] {
  padding: 0 !important;
  cursor: pointer;
}

span.color {
  display: inline-block;
  width: 1em;
  height: 1em;
}

.ide-checkbox {
  background: #666666;
  padding: 0.2em !important;
  width: 1.8em;
  height: 1.8em;
}

.ide-checkbox.checked {
  opacity: 1;
}

.ide-checkbox>* {
  opacity: 0.3;
}

.ide-checkbox.checked>* {
  opacity: 1;
}

select {
  background: #00000030;
  box-shadow: -2px 2px 2px #000;
}

select:hover {
  background: #00000020;
}

select,
input[type="range"] {
  cursor: pointer;
}

.box1 {
  height: fit-content;
  background: linear-gradient(45deg, #40404040, #00000020);
  padding: 0.5em;
  box-shadow: -4px 4px 6px #00000080;
  border: 2px solid #ffffff30;
}

.h-l11 {
  height: 11rem;
}

.h-l12 {
  height: 12rem;
}

.h-l13 {
  height: 13rem;
}

.h-l14 {
  height: 14rem;
}

.h-l15 {
  height: 15rem;
}

.max-h-l10 {
  max-height: 10rem;
}

.max-h-l11 {
  max-height: 11rem;
}

.max-h-l12 {
  max-height: 12rem;
}

.max-h-l13 {
  max-height: 13rem;
}

.max-h-l14 {
  max-height: 14rem;
}

.max-h-l15 {
  max-height: 15rem;
}

.max-h-l16 {
  max-height: 16rem;
}

.max-h-l17 {
  max-height: 17rem;
}

.max-h-l18 {
  max-height: 18rem;
}

.max-h-l19 {
  max-height: 19rem;
}

.max-h-l20 {
  max-height: 20rem;
}

.scroll {
  overflow: auto;
}

.folded {
  overflow: hidden;
  transition: 1s;
}

.folded.dimmed {
  filter: grayscale(1);
}

.folded.drawer {
  filter: grayscale(1) blur(3px);
  opacity: 0.5;
  transition: 1s;
}

.folded.drawer:hover {
  filter: none;
  opacity: 1;
}

.folded.fw-1 {
  width: 1em;
}

.folded.fw-2 {
  width: 2em;
}

.folded.fw-3 {
  width: 3em;
}

.folded.fw-4 {
  width: 4em;
}

.folded.fw-5 {
  width: 5em;
}

.folded.fw-6 {
  width: 6em;
}

.folded.fw-7 {
  width: 7em;
}

.folded.fw-8 {
  width: 8em;
}

.folded.fw-9 {
  width: 9em;
}

.folded.fw-10 {
  width: 10em;
}

.folded.fw-15 {
  width: 15em;
}

.folded.fw-20 {
  width: 20em;
}

.folded.fw-30 {
  width: 30em;
}

.folded.ow-12:hover {
  width: 12em;
}

.folded.ow-40:hover,
.folded.ow-40:focus {
  width: 40em;
}

.folded.fh-1 {
  max-height: 1em;
}

.folded.fh-2 {
  max-height: 2em;
}

.folded.fh-3 {
  max-height: 3em;
}

.folded.fh-4 {
  max-height: 4em;
}

.folded.fh-5 {
  max-height: 5em;
}

.folded.fh-6 {
  max-height: 6em;
}

.folded.fh-7 {
  max-height: 7em;
}

.folded.fh-8 {
  max-height: 8em;
}

.folded.fh-9 {
  max-height: 9em;
}

.folded.fh-10 {
  max-height: 10em;
}

.folded.fh-15 {
  max-height: 15em;
}

.folded.fh-20 {
  max-height: 20em;
}

.folded:hover,
.folded:focus {
  max-width: 50em;
  max-height: 30em;
  overflow: auto;
  opacity: 1;
  filter: none;
}

textarea.folded {
  max-height: 2em;
}

textarea.folded:hover,
textarea.folded:focus {
  max-height: 10em;
}

.slider-closed {
  max-width: 5em;
  filter: grayscale(1) blur(3px);
  opacity: 0.5;
  overflow: hidden;
  transition: 1s;
}

.slider-closed:hover,
.slider-opened {
  max-width: 50em;
  filter: none;
  opacity: 1;
}

.menu hr {
  opacity: 0.2;
}

.menu,
li.submenu>ul {
  display: none;
  opacity: 0;
}

.menu,
.menu ul:not(.tree) {
  position: fixed;
  background: #303030;
  box-shadow: -6px 6px 12px #000;
  transition:
    all 0.6s,
    left 0s;
  z-index: 10;
  min-width: 15em;
  top: 30px;
}

.menu.hinted {
  display: block !important;
  opacity: 0.6 !important;
  margin-top: 1rem;
}

.menu.visible {
  display: block !important;
  opacity: 1 !important;
  top: 0;
}

.menu .items {
  max-width: 0;
  max-height: 0;
  overflow: hidden;
}

.menu.visible .items {
  max-width: 50em;
  max-height: 40em;
  overflow: hidden;
}

.menu {
  margin-top: 1em;
}

.submenu:hover>ul>li>.menu:not(.hinted) {
  display: block !important;
  opacity: 1;
}

.menu li {
  margin: 0;
  padding: 0.5em 1em !important;
}

.menu3.vertical {
  display: flex;
  flex-direction: column;
  align-items: stretch;
}

.menu3 li {
  margin: 0;
}

.menu li:hover,
.menu3 li:hover {
  background: #ffffff20;
  cursor: pointer !important;
  transition: 0s;
}

.menu3 li {
  transition: 0.2s;
}

.menu li.p-0 {
  padding: 0 !important;
}

/*
.menu li.submenu:before
{
  content: "▶";
  position: absolute;
  right: 1em;
  opacity: 0.2;
}
*/
.menu ul {}

.menu ul,
.menu li.submenu:hover>ul {
  transition:
    all 0.6s,
    left 0s;
}

.menu ul .menu {
  margin: 0;
}

.menu li.submenu>ul {
  opacity: 0;
}

.menu li.submenu:hover>ul:not(.hinted) {
  display: block;
  opacity: 1;
  z-index: 20;
}

.menu.fade-out {
  margin-left: 6em;
  transition: 0.6s;
}

.menu2 {
  background: #606060;
}

.menu2>* {
  padding: 0.5em 1em;
}

.menu2>div:hover {
  background: #ffffff30;
  transition: 0s;
}

.ide-sort-placeholder {
  height: 0;
  overflow: hidden;
  transition: 0.3s;
}

.drag-over+.ide-sort-placeholder,
.drag-over>.ide-sort-placeholder {
  height: 1em;
}

.ide-sort-placeholder.drag-over {
  height: 3em;
}

.show-on-hover-container>.show-on-hover,
.sohc>.soh {
  max-width: 0;
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: 0.5s;
}

.show-on-hover-container:hover>.show-on-hover,
.sohc:hover>.soh {
  max-width: 20rem;
  max-height: 20rem;
  opacity: 1;
  transition: 0s;
}

.show-on-hover-container>*>.show-on-hover-2 {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: 1s !important;
}

.show-on-hover-container:hover>*>.show-on-hover-2 {
  max-height: 20rem;
  opacity: 1;
  transition: 1s !important;
}

.show-on-hover-container>*>*>.show-on-hover-3 {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: 1s !important;
}

.show-on-hover-container:hover>*>*>.show-on-hover-3 {
  max-height: 20rem;
  opacity: 1;
  transition: 1s !important;
}

.show-on-hover-container>.show-on-hover.hor,
.sohc>.soh.hor {
  max-width: 0;
  max-height: auto;
}

.show-on-hover-container:hover>.show-on-hover.hor,
.sohc:hover>.soh.hor {
  max-width: 20rem;
  opacity: 1;
}

.m-auto {
  margin: auto;
}

[draggable],
.ide-item {
  width: 100%;
  transition: 0.6s;
  white-space: nowrap;
}

[draggable="true"] {
  transition: 0.6s !important;
  cursor: grab;
}

[draggable="true"]:hover,
.ide-item:hover {
  background: #80808040;
  transition: 0s !important;
}

.hoverable [draggable="true"]:hover {
  background: none;
  border: none;
}

[draggable="true"]:active {
  cursor: grabbing;
}

[draggable="true"].dragged {
  border: 2px dashed #ffffff60;
}

.drag-target {
  border: 3px solid #ff333360;
}

.drag-over {
  border: 2px dashed yellow;
  box-shadow: inset -6px 6px 2px #000000;
  border-radius: 0.5em;
  transition: 0.1s;
}

.drag-over>* {}

.ide-drag-ongoing {
  display: none !important;
}

.ide-drag-zoom {
  transition: 1s;
}

.ide-drag-zoom.on {
  transition: 1s;
}

.gradient-opacity-t-b {
  -webkit-mask-image: -webkit-gradient(linear,
      center top,
      center bottom,
      from(rgba(0, 0, 0, 1)),
      to(rgba(0, 0, 0, 0)));
}

.block-ui {
  pointer-events: none;
}

.disabled {
  filter: grayscale(0.7) opacity(0.7) !important;
  pointer-events: none;
}

.disabled2 {
  opacity: 0.5;
  filter: grayscale(1);
  pointer-events: none;
}

.warning {
  text-shadow: -2px 2px 1px #000;
  background: #ffa530a0;
  padding: 0.5em;
}

.warning::before,
.error::before {
  content: "⚠️";
  float: left;
  font-size: 100%;
  margin: 0.2em 0.2em 0 0;
}

.error {
  padding: 0.5em 1em;
  overflow: hidden;
  text-align: left;
  color: white;
  background: linear-gradient(140deg, #ba2525, #3e0000);
  text-shadow: -3px 3px 1px #000;
  font-weight: normal;
}

progress {
  width: 100%;
}

.sticky {
  background: black;
  border-radius: 0;
  z-index: 100;
}

::selection,
::-moz-selection {
  background: #0e7abd;
}

.flex {}

.flex.ver {
  flex-direction: column;
}

.flex.eq>* {
  flex: 1;
}

.gap-05 {
  gap: 0.5em !important;
}

.gap-1 {
  gap: 1em !important;
}

.gap-2 {
  gap: 2em !important;
}

.gap-3 {
  gap: 3em !important;
}

.g-1 {
  gap: 1px;
}

.g-2 {
  gap: 2px;
}

.g-3 {
  gap: 3px;
}

.g-4 {
  gap: 4px;
}

.g-5 {
  gap: 5px;
}

.g-6 {
  gap: 6px;
}

.g-7 {
  gap: 7px;
}

.g-8 {
  gap: 8px;
}

.g-9 {
  gap: 9px;
}

.g-10 {
  gap: 10px;
}

.p-1em {
  padding: 1em;
}

.progress-bar {
  margin: auto;
  max-width: 50em;
  height: 1.5em;
  background: #ffffff30;
  border-radius: 0.5em;
  overflow: hidden;
}

.progress-bar-fill {
  height: 100%;
  background: #ffffff60;
  transition: 0.6s;
}

p {
  margin: 1em 0;
}

.st-btn {
  background: none !important;
  transition: 0s !important;
}

.st-btn:hover {
  border: 1px solid #aaa !important;
  background: #333 !important;
  top: 0 !important;
}

svg {}

.empty,
.title:empty {
  background-color: #80808040;
}

img[src=""] {
  background: #80808040;
}

.message {
  width: 100%;
  background: #424242;
  padding: 0.5rem 1rem;
  border: 1px solid #ffffff80;
  margin: 0.5rem auto;
  text-align: center;
}

.h-40pc {
  height: 40%;
}

.full-screen-dark-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: #000;
  opacity: 0;
  transition: opacity 0.6s;
  z-index: 100;
}

.full-screen-dark-overlay.visible {
  opacity: 0.8;
}

.ghost-dropzone {
  border: 1px dashed yellow;
  background: rgb(128, 128, 0, 0.2);
}

.ghost-dropzone.drag-over {
  background: rgb(128, 128, 0, 0.4);
  box-shadow: inset -8px 8px 4px black;
}

.ghost-dropzone.drag-over>* {
  transform: scale(1.1);
}

.ghost-tooltip {
  border: 2px solid gray;
  background: black;
  padding: 1em;
  background: rgb(25, 25, 0);
  box-shadow: -6px 6px 6px #000000;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.6s;
}

.ghost-tooltip.visible {
  opacity: 1;
}

.invisible {
  visibility: hidden;
}

.cyan {
  color: #0e7abd;
}

hr {
  margin-bottom: 0.5em;
}

.alertify-notifier .ajs-message {
  width: 400px;
}

.alertify-notifier.ajs-right .ajs-message.ajs-visible {
  right: 400px;
}

.ajs-dialog {
  margin: 10% auto;
  padding: 0.5em !important;
  background: linear-gradient(142deg,
      rgba(79, 79, 79, 1) 0%,
      rgb(40 40 40) 66%) !important;
  box-shadow: -1em 1em 1em black;
}

.ajs-dialog .ajs-commands,
.ajs-dialog .ajs-reset {
  display: none;
}

.ajs-header,
.ajs-footer {
  background: none !important;
}

.ajs-dialog .ajs-content p {
  margin: 0 0 1em;
}

.ajs-dialog .ajs-footer {
  margin: -1em 0;
  padding: 1em;
}

.ajs-message {
  background: linear-gradient(142deg,
      rgba(79, 79, 79, 1) 0%,
      rgb(40 40 40) 66%);
  color: white;
  text-shadow: -2px 2px 2px black;
  box-shadow: -6px 6px 6px #00000080;
}

.ajs-success {
  background: linear-gradient(45deg, #08671e, #08671e30) !important;
}

.ajs-warning {
  background: linear-gradient(142deg, #4f4f11 0%, #39390c 66%) !important;
  overflow: hidden;
}

.ajs-warning::before {
  float: left;
  content: "⚠️";
  padding: 0 1rem 0 0;
  font-size: 120%;
}

.ajs-error {
  background: linear-gradient(142deg, #4f1111 0%, #390c0c 66%) !important;
  overflow: hidden;
}

.ajs-error::before {
  float: left;
  content: "⚠️";
  padding: 0 1rem 0 0;
  font-size: 120%;
}

.ajs-message * {
  text-shadow: -0.1em 0.1em 0.05em black;
}

.ajs-message progress {
  margin-top: 0.5em;
}

.ajs-message progress::-webkit-progress-value {
  background: #ffffffa0;
}

.ajs-message progress::-webkit-progress-bar {
  background: #00000010;
  border: 1px solid #ffffff40;
  box-shadow: -3px 3px 3px black;
}

.ajs-dialog .ajs-header {
  display: none;
}

.ajs-content {
  font-size: 140%;
}

/* Leader line SVG element */
.leader-line text {
  stroke: black !important;
  fill: white !important;
  visibility: hidden;
}

.pointer-none {
  pointer-events: none;
}

.no-wrap {
  white-space: nowrap;
}

/* scrollbars */
::-webkit-scrollbar {
  width: 0.5em;
}

::-webkit-scrollbar-track {
  background: #80808040;
}

::-webkit-scrollbar-thumb {
  background: #80808080;
}

::-webkit-scrollbar-thumb:hover {
  background: #808080;
}