@import "https://fonts.googleapis.com/css2?family=Roboto+Mono:wght@400;700&display=swap";
:root {
  --bg-color: #fff;
  --text-color: #000;
  --border-color: #000;
  --shadow-color: #030303;
  --button-bg: #fff;
  --button-text: #000;
  --input-bg: #fff;
  --input-text: #000;
  --hover-color: #ddd;
  --alert-info-bg: #e7f5ff;
  --alert-warning-bg: #fff3cd;
  --alert-danger-bg: #f8d7da;
  --bg-color-disabled: #f0f0f0;
  --text-color-disabled: #a0a0a0;
  --thumb-color: #000;
}

.dark-mode {
  --bg-color: #121212;
  --text-color: #e0e0e0;
  --border-color: #c4c4c4;
  --shadow-color: #c4c4c4;
  --button-bg: #1e1e1e;
  --button-text: #fff;
  --input-bg: #1c1c1c;
  --input-text: #fff;
  --hover-color: #2c2c2c;
  --alert-info-bg: #04c;
  --alert-warning-bg: #b86f00;
  --alert-danger-bg: #800;
  --bg-color-disabled: #1f1f1f;
  --text-color-disabled: #a0a0a0;
}

@font-face {
  font-family: MonaspaceNeon;
  src: url("MonaspaceNeon-Regular.705db559.woff2") format("woff2"), url("MonaspaceNeon-Regular.56e915d5.woff") format("woff");
  font-weight: 500;
  font-style: normal;
}

@font-face {
  font-family: Glass;
  src: url("Glass_TTY_VT220.24d360ba.ttf") format("truetype");
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html, body, button, select, input {
  background-color: var(--bg-color);
  color: var(--text-color);
  font-family: MonaspaceNeon, Roboto Mono, monospace;
  font-size: 1em;
  font-weight: 500;
}

h1, h2, h3, h4, h5, h6 {
  margin-bottom: 1rem;
  font-weight: 700;
}

p {
  margin-bottom: 1rem;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 1rem;
}

.row {
  flex-wrap: wrap;
  align-items: center;
  margin: -.5rem -.5rem -.5rem -1em;
  display: flex;
}

.col {
  flex: 1;
  padding: .5rem;
}

.col-1 {
  flex: 0 0 8.33%;
}

.col-2 {
  flex: 0 0 16.66%;
}

.col-3 {
  flex: 0 0 25%;
}

.col-4 {
  flex: 0 0 33.33%;
}

.col-5 {
  flex: 0 0 41.66%;
}

.col-6 {
  flex: 0 0 50%;
}

.col-7 {
  flex: 0 0 58.33%;
}

.col-8 {
  flex: 0 0 66.66%;
}

.col-9 {
  flex: 0 0 75%;
}

.col-10 {
  flex: 0 0 83.33%;
}

.col-11 {
  flex: 0 0 91.66%;
}

.col-12 {
  flex: 0 0 100%;
}

button, .button {
  text-align: center;
  background-color: var(--bg-color);
  color: var(--text-color);
  border: 2px solid var(--border-color);
  box-shadow: 4px 4px 0 var(--shadow-color);
  cursor: pointer;
  cursor: pointer;
  padding: .75rem 1.5rem;
  font-size: 1rem;
  text-decoration: none;
  transition: all .2s;
  display: inline-block;
  transform: translate(0, -8px);
}

button:active, .button:active {
  box-shadow: 2px 2px 0 var(--shadow-color);
  transform: translate(2px, 2px);
}

button:hover, .button:hover {
  box-shadow: 6px 6px 0 var(--shadow-color);
}

input, textarea, select {
  border: 2px solid var(--border-color);
  width: 100%;
  box-shadow: 4px 4px 0 var(--shadow-color);
  margin-bottom: 1rem;
  padding: .75rem;
}

textarea {
  resize: vertical;
}

label {
  margin-bottom: .5rem;
  display: block;
}

input[type="radio"], input[type="checkbox"] {
  width: auto;
  margin-right: .5rem;
  display: inline-block;
}

select[multiple] {
  height: auto;
}

.box {
  border: 2px solid var(--border-color);
  box-shadow: 4px 4px 0 var(--shadow-color);
  margin-bottom: 1rem;
  padding: 1rem;
}

.text-center {
  text-align: center;
}

.mt-1 {
  margin-top: 1rem;
}

.mb-1 {
  margin-bottom: 1rem;
}

.ml-1 {
  margin-left: 1rem;
}

.mr-1 {
  margin-right: 1rem;
}

.mt-2 {
  margin-top: 2rem;
}

.mb-2 {
  margin-bottom: 2rem;
}

.ml-2 {
  margin-left: 2rem;
}

.mr-2 {
  margin-right: 2rem;
}

.alert {
  border: 2px solid var(--border-color);
  box-shadow: 4px 4px 0 var(--shadow-color);
  margin-bottom: 1rem;
  padding: 1rem;
}

.alert-info {
  color: #000;
  background-color: #e7f5ff;
}

.alert-warning {
  color: #000;
  background-color: #fff3cd;
}

.alert-danger {
  color: #000;
  background-color: #f8d7da;
}

.modal {
  background-color: #00000080;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  display: none;
  position: fixed;
  top: 0;
  left: 0;
}

.modal-content {
  background-color: var(--bg-color);
  border: 2px solid var(--border-color);
  box-shadow: 4px 4px 0 var(--shadow-color);
  padding: 2rem;
}

.progress {
  background-color: var(--progress-bg);
  border: 2px solid var(--border-color);
  width: 100%;
  box-shadow: 4px 4px 0 var(--shadow-color);
  height: 1.5rem;
}

.progress-bar {
  background-color: var(--progress-color);
  width: 0;
  height: 100%;
  transition: width .2s;
}

.progress-bar-25 {
  width: 25%;
}

.progress-bar-50 {
  width: 50%;
}

.progress-bar-75 {
  width: 75%;
}

.progress-bar-100 {
  width: 100%;
}

.code-container {
  background-color: var(--bg-color);
  border: 2px solid var(--border-color);
  box-shadow: 4px 4px 0 var(--shadow-color);
  margin-bottom: 1rem;
  padding: 1rem;
}

a {
  color: var(--text-color);
  text-decoration: underline;
}

a:hover {
  color: gray;
}

@media (width <= 768px) {
  .col {
    flex: 0 0 100%;
  }
}

body {
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  min-height: 100vh;
  margin: 0;
  padding: 1em;
  display: flex;
}

.inactive {
  color: var(--text-color-disabled);
  background-color: var(--bg-color-disabled);
}

.fr {
  text-align: right;
  justify-content: flex-end;
  display: flex;
}

.center {
  text-align: center;
  justify-content: center;
  display: flex;
}

.active {
  box-shadow: -6px -6px 0 var(--shadow-color);
  font-weight: bold;
}

.button-row {
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-top: -1em;
  display: flex;
}

.output-details {
  margin-top: 20px;
}

.mode-0 {
  color: #000;
  background-color: #fff;
}

.mode-1, .mode-2 {
  color: #000;
  background-color: #ff000073;
}

.mode-3 {
  color: #000;
  background-color: #ffaa3373;
}

.mode-4 {
  color: #000;
  background-color: #ffea0073;
}

.mode-5 {
  color: #000;
  background-color: #adff2f73;
}

.mode-6 {
  color: #000;
  background-color: #00ff0073;
}

.mode-7 {
  color: #000;
  background-color: #00ffff73;
}

.mode-8 {
  color: #000;
  background-color: #0000ff73;
}

.mode-9 {
  color: #000;
  background-color: #4b008273;
}

.mode-10 {
  color: #000;
  background-color: #7e00ff73;
}

.appbox {
  border: solid var(--border-color);
  background: var(--bg-color);
  box-shadow: 8px 8px 0px var(--shadow-color);
  width: 100%;
  max-width: 800px;
  margin: 1em;
  padding: 2em;
  position: relative;
}

input:disabled, select:disabled {
  background-color: var(--bg-color-disabled);
  color: var(--text-color-disabled);
  border: 1px solid var(--border-color);
  cursor: not-allowed;
}

input:disabled:hover, select:disabled:hover {
  background-color: #f0f0f0;
}

.grayed {
  color: #a0a0a0;
}

.routing div:not(:first-child) {
  margin-left: .5em;
}

.sparkline {
  width: 100%;
  height: 35px;
  margin-bottom: 1em;
  display: none;
}

.slider-container {
  width: 100%;
  position: relative;
}

#tuning-slider {
  -webkit-appearance: none;
  background: linear-gradient(to right, var(--bg-color) 50%, var(--bg-color) 50%);
  z-index: 1;
  border-radius: 5px;
  outline: none;
  width: 100%;
  height: 10px;
  margin-bottom: 0;
  transition: background .2s;
  position: relative;
}

#tuning-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  background-color: var(--thumb-color);
  cursor: pointer;
  z-index: 2;
  border-radius: 50%;
  width: 20px;
  height: 20px;
  position: relative;
}

#tuning-slider::-moz-range-thumb {
  background-color: var(--thumb-color);
  cursor: pointer;
  z-index: 2;
  border-radius: 50%;
  width: 20px;
  height: 20px;
  position: relative;
}

.CodeMirror {
  margin-bottom: 1em;
}

.copied {
  border-radius: 40%;
}

.header-container {
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0;
  display: flex;
}

.header-icons {
  align-items: center;
  gap: 1rem;
  display: flex;
}

.header-icons i {
  cursor: pointer;
  color: var(--text-color);
  font-size: 1.5rem;
  transition: all .2s;
}

.header-icons a {
  color: var(--text-color);
  align-items: center;
  text-decoration: none;
  display: flex;
}

.header-icons a i {
  font-size: 1.5rem;
}

.header-icons i:hover, .header-icons a:hover i {
  opacity: .8;
  transform: scale(1.2);
}

.header-icons i:active, .header-icons a:active i {
  transform: scale(.9);
}
/*# sourceMappingURL=web.ace23ee9.css.map */
