:root {
  --border-col: #00439433;
  --blue: #4297ff;
  --blue-dark: #1f64b8;
  --green-dark: #138808;
  --glass-blue: #4297ff11;
  --glass-red: #ce2b0211;
  --glass-green: #1ace0211;
  --red-dark: #ce2b02;
  --max-width: 1080px;
  --code-font: 14px;
  --code-height: 20px;
}

*,
* * {
  box-sizing: border-box;
  font-family: "appFont";
  transition: 300ms;
  user-select: none;
  -webkit-tap-highlight-color: transparent;
}

*:disabled,
.disabled,
.disabled * {
  filter: saturate(0%);
  color: #00000044 !important;
}

*:disabled:hover {
  filter: saturate(0%) !important;
  transform: scale(1) !important;
  cursor: default !important;
}

button:hover,
input[type="button"]:hover,
input[type="checkbox"],
.hover:hover {
  filter: brightness(120%);
  transform: scale(1.02);
  cursor: pointer;
}

.lilHover:hover {
  transform: scale(1.01) !important;
}

input,
button,
select {
  padding-left: 5px;
  padding-right: 5px;
  height: 35px;
  outline: none;
  border: solid var(--border-col) 1px;
}

input:not([type="select"]):not([type="button"]):not([type="submit"]):not(
    [type="reset"]
  ):focus {
  outline: none;
  border: solid var(--red-dark) 1px;
}

input[type="checkbox"],
label {
  display: inline-block;
  vertical-align: middle;
}

body,
html {
  padding: 0;
  margin: 0;
  display: flex;
  width: 100%;
  height: 100%;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  overflow: hidden;
  background: #f6faff;
}

main {
  display: flex;
  flex: 1;
  width: 100%;
  flex-direction: column;
  overflow-x: hidden;
  overflow-y: auto;
  max-width: var(--max-width);
}

header {
  background-color: var(--blue);
  justify-content: center;
  display: flex;
  width: 100%;
}

hr {
  margin-top: 10px;
  margin-bottom: 10px;
  height: 2px;
  border: none;
  background: var(--border-col) !important;
}

.maxw {
  max-width: var(--max-width);
}

.frc {
  user-select: text;
}

.w100 {
  width: 100px;
}

.w50p {
  width: 50%;
}

.w80p {
  width: 90%;
}

.fw {
  width: 100%;
}

.fh {
  height: 100%;
}

.flex {
  display: flex;
}

.flex1 {
  flex: 1;
}

.flex2 {
  flex: 2;
}

.gap5 {
  gap: 5px;
}

.gap10 {
  gap: 10px;
}

.jcc {
  justify-content: center;
}

.jce {
  justify-content: end;
}

.jcs {
  justify-content: start;
}

.jcsb {
  justify-content: space-between !important;
}

.autoFlex {
  display: flex;
  align-items: center;
}

.autoFlex.one {
  justify-content: center;
}

.autoFlex.two {
  justify-content: space-between;
}

.autoFlex.three {
  justify-content: space-around;
}

.aic {
  align-items: center;
}

.ais {
  align-items: start;
}

.aie {
  align-items: end;
}

.fdc {
  flex-direction: column;
}

.border {
  border: solid 1px var(--border-col);
}

.round5 {
  border-radius: 5px;
}

.round10 {
  border-radius: 10px;
}

.white {
  background: white;
}

.shadow {
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}

.mw250 {
  min-width: 250px;
}

.mx250 {
  max-width: 250px;
}

.pad10 {
  padding: 10px;
}

.pad20 {
  padding: 20px;
}

.pad5h {
  padding-right: 5px;
  padding-left: 5px;
}

.pad5 {
  padding: 5px;
}

.pad2 {
  padding: 2px;
}

.ltrf {
  direction: ltr !important;
  unicode-bidi: embed;
}

.tac {
  text-align: center !important;
}

.tajc {
  text-align: justify;
  text-align-last: center;
}

.rtlf {
  direction: rtl !important;
}

.ltrf {
  direction: ltr !important;
  unicode-bidi: embed;
}

.mg10b {
  margin-bottom: 10px;
}

.mg10t {
  margin-top: 10px;
}

.mg5t {
  margin-top: 5px;
}

.mg20b {
  margin-bottom: 20px;
}

.yes {
  background: var(--blue);
  color: white;
}

.no {
  background: #ff6b6b;
  color: white;
}

.selected {
  background: var(--blue-dark) !important;
}

.opa {
  opacity: 0.3;
}

.op50 {
  opacity: 0.5;
}

.op70 {
  opacity: 0.7;
}

.op90 {
  opacity: 0.9;
}

.h40 {
  height: 40px !important;
}

.h30 {
  height: 30px !important;
}

.gray {
  color: #00000055;
}

table {
  border-collapse: collapse;
  width: 100%;
}

td {
  gap: 10px;
  display: inline-flex;
  align-items: center;
  height: 40px;
  padding: 10px;
  border-bottom: 1px solid #00000022;
  font-size: 0.8rem;
  width: 50%;
}

.english {
  font-family: Arial, Helvetica, sans-serif !important;
}

.blueCol {
  color: var(--blue);
}

.redCol {
  color: var(--red-dark);
}

.blue-dark {
  color: var(--blue-dark);
}

.red-dark {
  color: var(--red-dark);
}

.small {
  font-size: 0.8rem;
}

.smaller {
  font-size: 0.7rem;
}

.vanish {
  background: #00000000 !important;
}

.nb {
  border: none !important;
}

.glass-blue {
  color: var(--blue-dark);
  background: var(--glass-blue);
}

.glass-red {
  color: var(--red-dark);
  background: var(--glass-red);
}

.glass-green {
  color: var(--green-dark);
  background: var(--glass-green);
}

.lock {
  z-index: 9999;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #00000000;
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}

.blur {
  backdrop-filter: grayscale(90%) blur(2px);
}

a {
  text-decoration: none;
}

@keyframes menu {
  0% {
    transform: translate(-50%, -50%) scale(0);
  }
  100% {
    transform: translate(-50%, -50%) scale(1);
  }
}

.menu {
  animation: menu ease-in-out 200ms;
  animation-fill-mode: forwards;
  max-height: 35px;
  max-width: 200px;
  min-width: 80px;
  height: 100%;
  display: flex;
  background: #ffffffbb;
  border: 1px solid var(--border-col);
  position: absolute;
  top: 50%;
  left: 50%;
  align-items: center;
  justify-content: space-between;
  transform-origin: center center;
}

.menu .flex {
  max-width: 50px;
  max-height: 40px;
}

.pr {
  position: relative;
}

.black {
  color: black;
}

.green {
  color: white;
  background: #12a856;
}

.red {
  color: white;
  background: #cf3f26;
}

.fh-35 {
  height: calc(100% - 35px);
}

.nt {
  transition: 0 !important;
  animation-duration: 0 !important;
}

.none {
  display: none;
}

#nav_back {
  max-width: 100px;
}

.mxw100 {
  max-width: 100px;
}

.ofy {
  overflow-x: hidden !important;
  overflow-y: auto !important;
}

.projecLists {
  max-height: calc(100vh - 200px);
}

.FilesLists {
  max-height: calc(100vh - 315px);
}

.vac {
  vertical-align: center;
}

.pIcon {
  width: 20px;
}

.icon {
  width: 24px;
}

.iconb {
  width: 18px;
}

.tt {
  width: 100%;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--blue-dark);
  border-bottom: 2px solid var(--blue-dark) !important;
}

.std {
  font-size: 1rem;
}

.nm {
  margin: 0 !important;
}

.np {
  padding: 0 !important;
}

select {
  cursor: pointer;
}

label,
input[type="checkbox"],
input[type="radio"] {
  height: auto !important;
  vertical-align: middle;
  cursor: pointer;
}

.purple {
  color: purple;
}

.ofh {
  overflow: hidden;
}

@keyframes slideDown {
  0% {
    transform: translateX(-150%);
    opacity: 0;
  }
  100% {
    transform: translateX(0);
    opacity: 1;
  }
}

#helpText {
  animation: slideDown ease-in-out 300ms;
  animation-fill-mode: forwards;
}

#editor,
#editorDiv,
#editorNum {
  resize: none;
  outline: none;
  border: none;
  line-height: var(--code-height);
  font-size: var(--code-font);
  color: #002c52;
}

#editorNum {
  line-height: var(--code-height);
  font-size: var(--code-font);
  background: #00229922;
  color: #00229977;
  font-weight: 600;
}

#editorNum span{
 border-bottom: 1px solid var(--border-col);
}

#editor,
#editorDiv,
#editor * {
  font-family: Consolas, Monaco, "Courier New", monospace !important;
}

.pa{
  position: absolute;
}

.pr{
  position: relative;
}