@charset "UTF-8";
body {
  font: 100% Helvetica, sans-serif;
  color: #fdfdfd;
  background-color: #202020;
}

.app-root {
  height: 100vh;
}

.top-menu {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 3rem;
  padding: 1rem 2em;
  background-color: #050505;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
}
.top-menu .center-group {
  position: fixed;
  left: 42%;
  right: 42%;
  text-align: center;
}
.top-menu .center-group .title {
  font-weight: 200;
  font-style: italic;
  font-size: 162%;
  cursor: default;
  color: linear-gradient(pink, blue);
}
.top-menu .center-group .title::before {
  display: inline-block;
  content: "[";
  transform: translateX(-0.25rem);
  transition: transform 1s ease;
}
.top-menu .center-group .title::after {
  display: inline-block;
  content: "]";
  transform: translateX(0.25rem);
  transition: transform 1s ease;
}
.top-menu .center-group .title:hover::before {
  transform: translateX(-2rem);
}
.top-menu .center-group .title:hover::after {
  transform: translateX(2rem);
}
.top-menu .right-group {
  justify-self: end;
}

.main {
  margin-top: 4rem;
}

.popup {
  position: fixed;
  right: 2rem;
  top: 4rem;
  padding: 1rem;
  max-width: 86vw;
  border-radius: 0.5rem;
  border: #404040 0.1rem solid;
  background-color: #202020;
}
.popup .tab-selector {
  font-size: 100%;
  font-weight: 600;
  color: #fdfdfd;
  border: none;
  border-bottom: transparent 0.15rem solid;
  background-color: inherit;
  border-radius: 0;
  cursor: pointer;
  text-transform: capitalize;
}
.popup .tab-selector-container {
  display: flex;
  flex-direction: row;
  margin-bottom: 1rem;
}
.popup .tab-selector:hover {
  background-color: rgba(255, 255, 255, 0.1254901961);
}
.popup .tab-selector-active {
  border-bottom: #fdfdfd 0.15rem solid;
}
.popup .tab-selector:not(:first-child) {
  margin-left: 1rem;
}

.task-viewer {
  min-height: 2rem;
}
.task-viewer .task-list {
  display: column;
  flex-direction: row;
}
.task-viewer .task-list .task {
  padding-top: 1rem;
  padding-bottom: 1rem;
}
.task-viewer .task-list .task:not(:first-child) {
  border-top: #404040 0.1rem solid;
}

.task-summary {
  display: grid;
  flex-direction: row;
  cursor: pointer;
  grid-template-columns: repeat(4, 1fr);
  grid-column-gap: 0.25rem;
  justify-items: end;
}
.task-summary .description {
  grid-row-start: 1;
  grid-column-start: 1;
  grid-column-end: 5;
}

.modal {
  position: fixed;
  top: 8vh;
  right: 0;
  left: 0;
  margin: auto;
  width: fit-content;
  min-width: 24rem;
  max-height: 86vh;
  overflow: auto;
  background-color: #101010;
  border: #404040 0.25rem solid;
  border-radius: 0 0.25rem 0.25em 0.25em;
  box-shadow: rgba(10, 10, 10, 0.8) 0px 20px 20px 30px;
  animation: slide-in 0.5s ease-out;
}
.modal-closing {
  animation: slide-out 0.5s ease-in;
}
@keyframes slide-in {
  from {
    transform: translateY(-150%);
  }
}
@keyframes slide-out {
  to {
    transform: translateY(-150%);
  }
}
.modal-editor {
  width: clamp(24rem, 32rem, 86vw);
}
.modal .data-preview .table-wrapper {
  overflow-x: scroll;
}
.modal-data .table-wrapper {
  overflow-x: scroll;
  max-width: 86vw;
}
.modal-header {
  padding: 1rem;
  position: sticky;
  top: 0;
  display: flex;
  justify-content: space-between;
  font-weight: 800;
  font: 120% serif;
  border-bottom: #808080 0.1rem solid;
  text-overflow: ellipsis;
  align-items: baseline;
  background-color: inherit;
}
.modal-header > div {
  flex: 0 1 auto;
}
.modal-header > div:not(:first-child) {
  margin-left: 1rem;
}
.modal-body {
  border-bottom: #808080 0.1rem solid;
  padding: 1rem 2em;
}
.modal h3 {
  padding: 0;
  margin: 0;
  padding-bottom: 0.5rem;
  border-bottom: #808080 0.1rem solid;
  margin-bottom: 0.5rem;
}
.modal-section {
  display: flex;
  flex-direction: column;
  align-items: stretch;
}
.modal-section:not(:first-child) {
  margin-top: 2rem;
}
.modal-section > button {
  align-self: center;
}
.modal .description-field .label {
  font-weight: 600;
  margin-right: 1rem;
}
.modal .table-wrapper {
  margin-top: 1rem;
  background-color: #050505;
  padding: 0.5rem;
  border-radius: 1rem;
  display: flex;
  flex-direction: column;
}
.modal .table-wrapper .blank {
  color: #b0b0b0;
  font-style: italic;
}
.modal .table-wrapper table {
  table-layout: fixed;
  border-collapse: collapse;
}
.modal .table-wrapper th {
  font-weight: 600;
  border-bottom: #808080 0.1rem solid;
}
.modal .table-wrapper th, .modal .table-wrapper td {
  padding: 0.5rem;
  text-align: center;
  min-width: 1rem;
  min-height: 1rem;
}
.modal .table-wrapper .editable {
  cursor: pointer;
}
.modal .table-wrapper td > input {
  text-align: center;
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}
.modal .table-wrapper tr:not(:last-child) td {
  border-bottom: #404040 0.1rem solid;
}
.modal .table-wrapper th:not(:last-child), .modal .table-wrapper td:not(:last-child) {
  border-right: #404040 0.1rem solid;
}
.modal .table-wrapper > button {
  margin: 1rem auto;
}
.modal .operation {
  border: 0.1rem solid #808080;
  border-radius: 1rem;
  background-color: #0c0c0c;
  transition: background-color 0.3s;
}
.modal .operation:not(:last-child) {
  margin-bottom: 0.5rem;
}
.modal .operation-view {
  cursor: pointer;
  display: flex;
  flex-direction: column;
}
.modal .operation-view:hover {
  background-color: #202020;
}
.modal .operation-view-header {
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  justify-content: space-between;
  padding: 0.5rem 1em 0.25em 1em;
}
.modal .operation-view-name {
  font-weight: 600;
}
.modal .operation-view-operand {
  font-size: 85%;
  font-style: italic;
  color: #b0b0b0;
}
.modal .operation-view-params {
  border-top: #808080 0.1rem solid;
  padding: 0.25rem 1em 1em 1em;
  text-align: left;
}
.modal .operation-view-params .number {
  font-weight: 600;
}
.modal .operation-view-params .list::before {
  content: "[";
  font-size: 120%;
}
.modal .operation-view-params .list::after {
  content: "]";
  font-size: 120%;
}
.modal .operation-view-params .list > span {
  font-style: italic;
  margin: 0 0.5rem;
}
.modal .operation-view-params .list > span:not(:first-child) {
  margin-left: 0;
}
.modal .operation-movable {
  border: #808080 0.1rem solid;
  padding: 0.5rem 1rem;
  cursor: grab;
  font-weight: 600;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  transition: transform 0.2s ease-out;
}
.modal .operation-movable::before {
  content: "Move here";
  font-style: italic;
  font-weight: 400;
  position: absolute;
  transform: translateY(-50%) scaleY(0);
  transition: all 0.2s ease-out;
}
.modal .operation-movable::after {
  content: "Click and hold to drag";
  font-style: italic;
  font-weight: 400;
  position: absolute;
  transform: translateY(50%) scaleY(0);
  transition: all 0.2s ease-out;
}
.modal .operation-movable span {
  display: inline-block;
  transition: all 0.2s ease-out;
}
.modal .operation-movable:hover {
  background-color: #202020;
}
.modal .operation-movable:hover::after {
  display: inline-block;
  transform: translateY(0) scaleY(1);
}
.modal .operation-movable:hover span {
  transform: translateY(-50%) scaleY(0);
}
.modal .operation-movable:active {
  background-color: #202020;
}
.modal .operation-movable-moving span {
  opacity: 0.5;
}
.modal .operation-movable-dragover::before {
  display: inline-block;
  transform: translateY(0) scaleY(1);
}
.modal .operation-movable-dragover span {
  transform: translateY(50%) scaleY(0);
}
.modal .operations-actions {
  margin-top: 1rem;
  align-self: end;
}

.column-editor {
  display: flex;
  flex-direction: row;
  padding-bottom: 1rem;
}
.column-editor .column-label {
  flex: 1 1 auto;
}
.column-editor > div:not(:last-child) {
  margin-right: 1rem;
}

.button-select-wrapper {
  display: flex;
  flex-direction: column;
  background-color: #050505;
  border-radius: 0.5rem;
  padding: 1rem;
}
.button-select-wrapper .select-group-wrapper {
  display: flex;
  flex-direction: row;
}
.button-select-wrapper > div:not(:first-child) {
  margin-top: 0.5rem;
  border-top: #808080 0.1rem solid;
  padding-top: 0.5rem;
}
.button-select-wrapper .btn-group {
  flex: 1 1 auto;
  flex-wrap: wrap;
  align-self: baseline;
}
.button-select-wrapper .btn-select {
  margin: 0.25rem 0;
}
.button-select-wrapper .label {
  flex: 0 0 auto;
  justify-self: end;
  color: #b0b0b0;
  font-size: 85%;
  font-style: italic;
  align-self: baseline;
  margin-left: 1rem;
}
.button-select-wrapper .blank {
  flex-grow: auto;
  justify-self: center;
}

.grid-editor {
  display: grid;
  grid-row-gap: 0.5rem;
  grid-column-gap: 1rem;
  grid-template-columns: min-content auto;
  padding: 1rem 2em;
  border: #808080 0.1rem solid;
  border-radius: 1rem;
  background-color: #0c0c0c;
  align-items: baseline;
}
.grid-editor .input-label {
  justify-self: end;
}
.grid-editor .field-label {
  justify-self: start;
}
.grid-editor .input-label, .grid-editor .field-label {
  grid-column-start: 1;
  font-size: 85%;
  font-weight: 600;
  color: #b0b0b0;
}
.grid-editor .input {
  grid-column-start: 2;
  align-self: baseline;
}
.grid-editor .field-wrapper {
  grid-column: span 2;
  justify-self: stretch;
}
.grid-editor .button-wrapper {
  grid-column: span 2;
  justify-self: center;
}
.grid-editor input, .grid-editor textarea {
  border: none;
  border-radius: 0.5rem;
  color: #fdfdfd;
  background-color: #050505;
  padding: 0.5rem;
  width: auto;
}

.card-function .card-header::before {
  content: "𝑓";
  margin-right: 0.5rem;
  font-weight: normal;
  font-size: 85%;
}

.card {
  border: #808080 0.1rem solid;
  border-radius: 0 1rem 1em 1em;
  margin: 1rem 0;
  padding: 1rem 2em;
  background-color: #0c0c0c;
  cursor: pointer;
  flex: 0 0 auto;
  transition: background-color 0.3s;
}
.card:not(:first-child) {
  margin-left: 2rem;
}
.card-header {
  font: 120% serif;
  font-weight: 600;
  padding-bottom: 0.25rem;
  text-overflow: ellipsis;
  border-bottom: #808080 0.1rem solid;
}
.card-subheader {
  grid-column: span 2;
  font-size: 85%;
  font-style: italic;
  text-align: right;
  color: #b0b0b0;
}
.card-content {
  margin-top: 1rem;
  background-color: #050505;
  padding: 0.5rem;
  border-radius: 1rem;
  height: 16rem;
  width: 16rem;
  overflow: clip;
}
.card-content table {
  margin: 0 auto;
  table-layout: fixed;
  border-collapse: collapse;
}
.card-content th {
  font-weight: 600;
  border-bottom: #808080 0.1rem solid;
}
.card-content th, .card-content td {
  padding: 0.5rem;
  text-align: center;
  min-width: 1rem;
  max-width: 3rem;
  overflow: clip;
  text-overflow: ellipsis;
}
.card-content tr:not(:last-child) td {
  border-bottom: #404040 0.1rem solid;
}
.card-content th:not(:last-child), .card-content td:not(:last-child) {
  border-right: #404040 0.1rem solid;
}
.card:hover {
  background-color: #151515;
  box-shadow: rgba(10, 10, 10, 0.8) 0px 5px 5px 5px;
}

.table-container {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  border-top: #404040 0.1rem solid;
  border-bottom: #404040 0.1rem solid;
  border-radius: 1rem;
}
.table-container:not(:first-child) {
  margin-top: 2rem;
}
.table-container-header {
  font: 150% serif;
  font-weight: 600;
  font-variant: small-caps;
  border-bottom: #808080 0.1rem solid;
  text-overflow: ellipsis;
  max-width: 68vw;
  padding: 0 0 0.25rem 0;
  margin: 2rem 1rem 0.25rem 1rem;
}
.table-container-subheader {
  font-size: 85%;
  font-style: italic;
  color: #b0b0b0;
  margin: 0 1rem;
}
.table-container-cards {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  overflow-x: auto;
  padding: 1rem 1rem 2em 1em;
}
.table-container-functions {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
}

.button-container {
  padding: 4rem;
  display: flex;
  align-items: center;
  justify-content: space-evenly;
}

.modal-select {
  animation: pop-in 0.3s ease-out;
}
.modal-select-closing {
  animation: pop-out 0.2s linear;
}
@keyframes pop-in {
  from {
    transform: scale(120%);
    opacity: 0;
  }
}
@keyframes pop-out {
  to {
    transform: scale(80%);
    opacity: 0;
  }
}

.btn, .select, .input {
  border: #808080 0.1rem solid;
  color: #fdfdfd;
  transition: 0.2s linear;
  background-color: #050505;
  padding: 0.5rem 1em;
}
.btn:hover, .select:hover, .input:hover {
  transition: 0.2s linear;
  background-color: #202020;
}

.input {
  border-radius: 0.25rem;
  box-sizing: border-box;
  width: 100%;
}

.btn, .select {
  border-radius: 1rem;
  cursor: pointer;
}
.btn:disabled, .select:disabled {
  background-color: #404040;
  color: #b0b0b0;
}

.btn-group > button:not(:first-child) {
  margin-left: 0.5rem;
}

.select-btn-group {
  display: flex;
  flex-direction: row;
  justify-content: center;
  margin-top: 0.5rem;
}
.select-btn:not(:first-child) {
  margin-left: 1rem;
}
.select-btn-selected {
  box-shadow: #808080 0 0 0.25rem 0.1rem;
}
.select-btn-deselected {
  color: #b0b0b0;
}

.description-btn-header {
  padding: 0.5rem 0;
  font-weight: 600;
  font-size: 120%;
}
.description-btn-description {
  border-top: #808080 0.1rem solid;
  padding: 0.5rem 0;
  font-style: italic;
}

/*# sourceMappingURL=site.css.map */
