:root {
  --color-background: #110e1b;
  --color-background-overview: #322E44;
  --color-primary: #1e1932;
  --color-secondary: #fab42d;
  --color-text: #fff;
  --color-text-highlight: #fab42d;
  --color-text-highligt-transparent: #66fab42d;
  --color-border: #3c3030;
  --color-success: #648f2d;
  --color-error: #f5414f;
  --color-error-dark: #621a20;
  --color-warning: #ff9d00;
  --black: #000;
  --dark-gray: #272626;
  --gray: #4e4d4d;
  --light-gray: #aeacac;
  --white: #fff;
  --transparant: rgba(0, 0, 0, 0);
  --color-primary-light: color-mod(var(--color-primary) tint(15%));
  --color-primary-dark: color-mod(var(--color-primary) shade(15%));
  --color-primary-bg: color-mod(var(--color-primary) alpha(20%));
  --color-secondary-light: #fbc65f;
  --color-secondary-dark: #ee9f06;
  --form-element-border: var(--color-border);
  --form-element-border-focus: var(--color-primary);
  --form-element-border-error: var(--color-error);
  --form-element-bg: var(--white);
  --form-text-placeholder: var(--light-gray);
  --btn-primary-bg: var(--color-text);
  --btn-primary-hover: var(--color-text-highlight);
  --btn-primary-active: var(--color-text);
  --btn-primary-label: var(--gray);
  --color-icon-primary: var(--gray);
  --color-icon-secondary: var(--dark-gray);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

@supports (-moz-appearance: none) {
  * {
    scrollbar-width: thin;
  }
}
html {
  font-size: 14px;
  scroll-behavior: smooth;
}

body {
  background-color: var(--color-background);
  color: var(--color-text);
  margin: 0;
  padding: 0;
  scrollbar-width: thin;
}

::-webkit-scrollbar-track {
  width: 15px;
  height: 15px;
}

::-webkit-scrollbar {
  background: transparent;
  width: 5px;
  height: 5px;
}

::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.3);
}

html,
input[type=text] {
  font-family: Arial, sans-serif;
  font-size: 14px;
}

li {
  list-style: none;
}

#nav li:hover {
  color: var(--color-text-highlight);
}

h1,
h2,
h3 {
  font-weight: 300;
  line-height: 1.5;
  margin-top: 0;
}

p {
  margin-top: 0;
}

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

#navigation a {
  position: relative;
  display: flex;
  vertical-align: middle;
}
#navigation span {
  position: relative;
  top: 11px;
}

div.highlight [aria-current] {
  width: 100%;
  color: var(--color-primary);
  background-color: var(--color-text-highlight);
  display: inline-block;
  outline: 7px solid var(--color-text-highlight);
  border: none;
  border-radius: 2px;
}

div.past [aria-current] {
  width: 100%;
  color: var(--color-text-highlight);
  background-color: rgba(255, 255, 255, 0.1254901961);
  display: inline-block;
  outline: 7px solid rgba(255, 255, 255, 0.1254901961);
  border: none;
  border-radius: 2px;
}
div.past [aria-current] p.loading {
  padding: 15px;
  color: var(--gray);
}

.status {
  opacity: 0.5;
  text-align: right;
}

.statusDropdown,
.overviewElement {
  line-height: 1.3em;
  width: 100%;
}

.headline {
  text-transform: capitalize;
  margin: 27px 0 10px 15px;
}

.column h2,
.formContainer h2 {
  font-size: 1.1em;
  padding: 10px 15px 0 15px;
  line-height: 15px;
  margin-bottom: 10px;
}

dialog span {
  font-size: 14px;
}

.deleteConfirmationInput p strong {
  color: var(--color-secondary);
}

#columns {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  height: 100vh;
  left: 20vw;
  position: static;
  width: 60%;
  top: 80px;
}

.column {
  width: 20vw;
  position: relative;
}
.column ol:not(.listDragAndDropx) li {
  height: auto;
  display: grid;
  gap: 10px;
}

ol:not(.listDragAndDropx) {
  width: 100%;
  padding: 15px;
  top: 4vh;
  position: absolute;
  height: 85%;
  overflow-y: auto;
  overflow-x: hidden !important;
  -ms-overflow-style: none;
  scroll-padding-top: 7px;
}

.copyForm {
  display: flex;
  flex-direction: column;
  background: var(--color-background-overview);
  border: none;
  border-radius: 12px;
  padding: 25px;
  width: 40vw;
  position: absolute;
  left: -30vw;
  top: 20vh;
  transform: translateX(100%);
}

.overviewContainer {
  overflow: auto;
  position: relative;
  height: calc(100% - 14px);
  top: 12px;
}
.overviewContainer input[type=text] {
  width: 100%;
}

.headerContentContainer {
  width: 100%;
  height: 100vh;
}

.error-container {
  color: red;
}

.success-container {
  color: green;
  text-decoration: underline;
  word-break: break-all;
}

.addForm {
  position: relative;
  top: 25vh;
  left: 22vw;
  width: 40%;
  min-width: 360px;
  max-width: 700px;
  padding: 25px;
  margin-bottom: 20%;
}

.editForm {
  margin-top: 28px;
  padding: 25px;
}

.overview_text {
  display: flex;
  flex-direction: column;
  width: 100%;
  overflow: auto;
  max-height: 73vh;
  top: 8px;
  position: relative;
}
.overview_text input[type=text] {
  width: 100%;
}

.popup .overview_text {
  max-height: calc(100vh - 250px);
}

#navigation {
  position: relative;
  color: var(--white);
  z-index: 5000;
  height: 100vh;
  max-width: 240px;
  background-color: var(--color-background-overview);
  top: 0;
  display: flex;
  flex-direction: column;
  -webkit-box-pack: justify;
  padding-left: 1em;
  padding-right: 3px;
}
#navigation ul {
  width: 100%;
  padding-inline-start: 0;
  height: fit-content;
}
#navigation li {
  list-style: none;
  cursor: pointer;
}

nav .svgs {
  margin-right: 1.5em;
  width: 35px;
  position: relative;
  height: 42px;
  top: -2px;
  filter: brightness(600%) !important;
}
nav a[aria-current] .svgs {
  filter: brightness(100%) !important;
}
nav .icon-nav:hover .svgs {
  filter: brightness(100%) !important;
}
nav a[aria-current],
nav a:active,
nav a:hover {
  color: var(--color-text-highlight);
}

div.links span {
  display: block;
  white-space: nowrap;
}

nav.open {
  min-width: 236px;
  height: 100vw;
}
nav.open .staticLinks {
  width: 222px;
}

nav:not(.open) {
  width: 77px;
  height: 100vw;
  padding-right: 2px;
}
nav:not(.open) .marketLink:not([aria-current]) {
  display: none !important;
}
nav:not(.open) .staticLinks {
  width: 55px;
}
nav:not(.open) #logo h1 {
  display: none;
}
nav:not(.open) .marketSvg,
nav:not(.open) .marketTitle {
  display: none;
}
nav:not(.open) div.links span {
  display: none;
}

div.links {
  display: block;
  position: relative;
  height: calc(100vh - 310px);
  overflow: auto;
}

#logo {
  display: flex;
  overflow: hidden;
  position: static;
  margin-top: 35px;
  margin-bottom: 15px;
  align-items: end;
}
#logo img {
  background-color: rgb(76, 72, 92);
  border-radius: 8px;
  display: inline-block;
  padding: 3px;
  width: 40px;
  height: 40px;
  margin-bottom: 5px;
}
#logo h1 {
  display: block;
  font-size: 16.5px;
  margin-left: 12px;
  text-transform: uppercase;
}

.columnListItem {
  display: flex;
  flex-direction: row;
  vertical-align: text-top;
  padding-bottom: 10px;
}

.hrNav {
  display: inline-table;
  opacity: 1;
  position: relative;
  padding-right: 0.8em;
  width: 100%;
}

.navTop {
  justify-content: start;
  display: flex;
  flex-direction: column;
}

.staticLinks {
  width: auto;
  padding-right: 10px;
  position: fixed;
  bottom: 0;
  background: var(--color-background-overview);
}
.staticLinks ul {
  overflow: hidden;
}

.marketNav {
  display: flex;
}
.marketNav span {
  top: 11px;
  position: relative;
  margin-right: 20px;
}

.marketLink {
  padding: 12px 5px 0 5px;
}

#closeButton {
  font-size: 22px;
  background: var(--transparant);
  border: none;
  position: absolute;
  top: 3px;
  right: 3px;
  width: 20px;
  height: 20px;
  margin-right: 10px;
  cursor: pointer;
}
#closeButton .open {
  animation: animClose 0.5s linear;
  transform: rotate(45deg);
}

@keyframes animClose {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(45deg);
  }
}
#closeButton:hover {
  color: var(--btn-primary-hover);
}

.closeConfirmationDialog {
  left: 96%;
  top: -7px;
  position: relative;
  stroke: var(--white);
}

.key,
.description {
  display: flex;
  justify-content: left;
  flex-grow: 1;
  padding-bottom: 4px;
}
.key label,
.description label {
  margin-right: 20px;
  position: relative;
}
.key span,
.description span {
  border-bottom: 1px solid white;
  width: 100%;
}

.overview_text {
  display: flex;
  flex-direction: column;
  width: 100%;
}
.overview_text input[type=text] {
  width: 100%;
}

input[type=text] {
  border: 1px solid white;
  box-sizing: border-box;
  background: none;
  color: white;
  border-top: none;
  border-left: none;
  border-right: none;
  float: right;
  margin-top: -4px;
  flex-grow: 1;
  max-height: 19px;
  height: 19px;
}

.deleteConfirmationInput {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.deleteConfirmationInput input[type=text] {
  width: 45%;
  padding: 10px;
  font-size: 28px;
  text-align: center;
  border-top: 1px solid white;
  border-left: 1px solid white;
  border-right: 1px solid white;
}
.deleteConfirmationInput p {
  margin-top: 20px;
  font-size: 20px;
}

input:focus,
select:focus,
textarea:focus,
button:focus {
  outline: none;
}

.inputField {
  display: flex;
  width: 100%;
  flex-direction: column;
  text-align: left;
}

.formContainer {
  container-name: formContainer;
  container-type: inline-size;
}

.popup {
  container-name: popup;
  container-type: inline-size;
}

.formContainer:has(> .popup) {
  container-type: normal;
}

.new {
  margin-bottom: 20px;
}

.keyDiv, .descriptionDiv, .name {
  display: flex;
  flex-direction: row;
}

.keyDiv,
.editDiv,
.addDiv {
  position: relative;
}
.keyDiv:not(:has(.editor)),
.editDiv:not(:has(.editor)),
.addDiv:not(:has(.editor)) {
  min-height: 40px;
}
.keyDiv text, .keyDiv div,
.editDiv text,
.editDiv div,
.addDiv text,
.addDiv div {
  position: relative;
}
.keyDiv .regex_input_component .input_error,
.editDiv .regex_input_component .input_error,
.addDiv .regex_input_component .input_error {
  border-color: white !important;
}

.keyDiv > label,
.name > label,
.descriptionDiv > label {
  text-align: left;
  margin-right: 20px;
}

/* Apply styles if the container is narrower than 260px */
@container formContainer (width < 450px) {
  .tools {
    width: 100%;
    flex-direction: column;
  }
  .boxButton {
    width: 100% !important;
  }
  .new {
    flex-direction: column;
  }
  .new > label {
    margin-bottom: 10px;
  }
  .key {
    flex-direction: row;
  }
  .testDrive {
    flex-direction: row;
  }
}
@container popup (width < 450px) {
  .tools {
    width: 100%;
    flex-direction: column !important;
  }
}
.column {
  container-name: column;
  container-type: inline-size;
}

/* Apply styles if the container is narrower than 170px */
@container column (width < 170px) {
  .column h2 {
    font-size: 1em;
  }
}
.backdropAddForm {
  background: rgba(0, 0, 0, 0.5);
  width: 100vw;
  height: 103vh;
  position: absolute;
  left: -150%;
  top: -89px;
  overflow: auto;
  z-index: 1000;
}

.tabText,
.keyName span {
  color: var(--white);
}

textarea {
  resize: vertical;
  width: 100%;
  background: var(--color-background-overview);
  color: white;
  padding: 9px;
  border: 0.8px solid white;
  margin-top: 10px;
  font-family: Arial, sans-serif;
  font-size: 14px;
}

.key span {
  width: 65%;
  float: right;
  flex-grow: 1;
  border: none;
}

.textarea-box {
  display: flex;
  flex-direction: column;
}

.explain {
  margin-bottom: 20px;
}

.tab {
  display: none;
}
.tab:checked ~ .tab__content {
  opacity: 1;
  transition: 0.5s opacity ease-in, 0.8s transform ease;
  transform: translateY(0px);
  text-shadow: 0 0 0;
  border: 1px var(--color-secondary) solid;
  width: 100%;
  border-radius: 2px;
  padding: 4%;
}
.tab__content {
  transform: translateY(-3px);
  display: none;
}

.container {
  container-name: container;
  container-type: inline-size;
  width: 96%;
  background: var(--color-background-overview);
  border: none;
  border-radius: 12px;
  padding: 25px;
  height: fit-content;
  position: relative;
  margin-bottom: 50px;
  margin-left: 1.5%;
}
.container label {
  border-radius: 5px 5px 0 0;
}

.tab__content label {
  margin-bottom: 10px;
}

@container container (width < 310px) {
  .container {
    width: 96%;
    padding: 3% 3% 120px 3%;
  }
}
.editorsmall .editor {
  margin-top: 20px;
}
.editorsmall label:not(.tabLabel) {
  min-width: 100px;
}
.editorsmall input[type=text]:not(div.inputWrapper input) {
  width: auto !important;
}
.editorsmall .inputWrapper {
  flex-grow: 1;
}
.editorsmall .inputWrapper input {
  width: 100%;
}
.editorsmall .errorMessageInForm {
  position: absolute;
  bottom: 0;
  transition: none;
}
.editorsmall .errorMessageInForm:not(.parsedText .errorMessageInForm) {
  padding-left: 120px;
}

.editor {
  display: grid;
  grid-row-gap: 0;
  grid-template-columns: 20% 20% 20% 40%;
  width: 100%;
  margin-bottom: 20px;
}
.editor .editor > * {
  padding: 3%;
  box-sizing: border-box;
}
.editor .new {
  display: flex;
  flex-direction: column;
  position: relative;
  margin-top: 10px;
  margin-bottom: 10px;
  gap: 1em;
}
.editor label:has(+ input:checked) {
  border: 1px var(--color-secondary) solid;
  border-bottom: none;
  color: var(--color-secondary);
  cursor: default;
  z-index: 80;
  background-color: var(--color-background-overview);
}
.editor input:checked + div {
  display: block;
  grid-column-start: 1;
  grid-column-end: 5;
  order: 5;
  border: 1px solid var(--color-secondary);
}

.field__ttl {
  margin-right: 20px;
}

.tabLabel {
  border-radius: 5px 5px 0 0;
  cursor: pointer;
  text-decoration: none;
  color: var(--white);
  text-align: center;
  user-select: none;
  transition: 0.3s background-color ease, 0.3s box-shadow ease;
  height: 50px;
  box-sizing: border-box;
  padding: 15px;
  background-color: rgba(255, 255, 255, 0.15);
  top: 2px;
  position: relative;
  margin-bottom: 0;
  margin-right: 0 !important;
}
.tabLabel:hover {
  color: var(--color-secondary);
  background-color: var(--color-background-overview);
  -webkit-transition: background-color 1000ms linear;
  -ms-transition: background-color 1000ms linear;
  transition: background-color 1000ms linear;
}

.addDiv,
.editDiv {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  position: relative;
}
.addDiv label,
.editDiv label {
  margin-right: 20px;
}

.parsedText {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  position: relative;
}

*:-webkit-autofill,
*:-webkit-autofill:hover,
*:-webkit-autofill:focus,
*:-webkit-autofill:active {
  -webkit-box-shadow: 0 0 0 1000px var(--color-background-overview) inset;
  -webkit-text-fill-color: var(--white);
}

.parsedText span {
  text-align: left;
  margin-top: 7px;
  color: red;
  text-wrap: initial;
}

select[multiple] {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

.range {
  border: 1px solid white !important;
  height: auto;
  margin-top: 10px;
  margin-bottom: -12px;
  padding: 1em 0.5em;
  background-image: none !important;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 5px;
  overflow: auto;
  max-height: 110px;
}
.range label {
  display: flex;
  margin: auto;
  width: 100%;
  border-radius: 3px;
  padding: 7px 15px;
}
.range label:has(> input:checked) {
  background: var(--color-secondary);
}
.range label:hover {
  background: rgba(255, 255, 255, 0.1254901961);
}

.indications {
  font-style: italic;
  color: rgba(255, 255, 255, 0.25);
}

.addForm .closeButtonAddForm {
  background: none;
  margin-right: -12px;
  margin-top: -5px;
  margin-left: auto;
  border: none;
  color: white;
}

.tableRowFeatures {
  position: relative;
}
.tableRowFeatures input[type=text] {
  margin: 0;
  position: relative;
  text-align: right;
}

.tableRowData {
  position: relative;
}

.autocompleteList {
  height: auto;
  max-height: 200px;
  background-color: var(--color-background);
  color: var(--color-text);
  position: absolute;
  width: 100%;
  top: 1px;
  left: 0;
  z-index: 1;
  padding: 4px;
  box-shadow: -1px 6px 10px -4px #000000;
}
.autocompleteList li {
  padding: 4px 0;
  cursor: pointer;
  opacity: 0.6;
}

.tools {
  display: flex;
  gap: 20px;
  padding: 15px 0 15px 0;
  margin-right: 0;
  margin-left: auto;
  float: right;
}
.tools.split {
  float: none;
  justify-content: flex-end;
}
.tools.split button:first-child {
  margin-right: auto;
}

.boxButton {
  top: 343px;
  left: 210px;
  border-radius: 24px;
  border: 1px solid var(--color-secondary);
  font-size: 100%;
  color: var(--color-primary);
  background-color: var(--color-secondary);
  width: auto;
  min-height: 36px;
  padding: 0 15px;
}

.button {
  width: 30%;
  max-width: 46%;
}

.deleteButton,
.editButton {
  color: var(--white);
  background-color: var(--color-background-overview);
}

.copyButton {
  width: 25px;
  height: 25px;
  border-radius: 24px;
  background-color: var(--color-secondary);
  border: none;
  text-align: center;
  padding-top: 5px;
  margin-top: 6px;
}

.copyButton:hover,
.copyButton:active {
  fill: var(--color-secondary-light);
}

select {
  appearance: none;
  color: var(--white);
  background-color: transparent;
  border: none;
  margin: 0;
  width: 100%;
  font-size: 14px;
  cursor: inherit;
  line-height: inherit;
  outline: none;
  background-image: url("../../../assets/icons/icon-arrow-yellow-down.svg");
  background-repeat: no-repeat;
  background-position: center right 10px;
}

select option {
  background-color: var(--white);
  color: var(--black);
}

.statusDropdown {
  width: 100%;
  margin-top: 10px;
  min-width: 100%;
  border: 1px solid var(--white);
  padding: 1em 0.5em;
  cursor: pointer;
  background-color: transparent;
}

.flagDropdown {
  width: 100%;
  margin-top: 10px;
  min-width: 100%;
  border: 1px solid var(--white);
  padding: 1em 0.5em;
  cursor: pointer;
  background-color: transparent;
}

.unitDropdown {
  width: 100%;
  margin-top: 10px;
  min-width: 100%;
  border: 1px solid var(--white);
  padding: 1em 0.5em;
  cursor: pointer;
  background-color: transparent;
}

.confirmationDialog {
  width: 44vw;
  height: auto;
  background-color: var(--color-background-overview);
  color: var(--white);
  text-align: center;
  flex-direction: column;
  border: none;
  border-radius: 12px;
  padding: 30px;
  z-index: 30;
  position: absolute;
  left: -55vw;
  top: 20vh;
}

.confirmationDialogDelete {
  position: absolute;
  top: 30vh;
  left: -17vw;
}

.confirmationDialogCopy {
  position: absolute;
  top: 30vh;
  left: 20vw;
}

.backdropConfirmationDialog {
  background: rgba(0, 0, 0, 0.5);
  width: 100vw;
  height: 120vh;
  position: absolute;
  left: -162%;
  top: -20%;
}

.switch {
  position: relative;
  width: 60px;
  height: 34px;
  float: right;
}

/*
[data-tooltip]:after {
  content: attr(data-tooltip);
  display: none;
  position: absolute;
  max-width: 200px;
  pointer-events: none;
  padding: 10px;
  text-decoration: none;
  overflow: hidden;
  color: var(--color-background);
  font-size: 12px;
  letter-spacing: 1px;
  text-align: center;
  text-shadow: 1px 0 1px #888;
  background-color: var(--color-text);
  border-radius: 5px;
 // box-shadow: 1px 2px 6px rgba(0, 0, 0, 0.3);
  box-shadow: 5px 5px 15px -1px #000000;
}

 */
button[data-tooltip],
.ariaPositionRelative {
  position: relative;
}

[data-tooltip]:after {
  content: attr(data-tooltip);
  display: none;
  position: absolute;
  max-width: 200px;
  pointer-events: none;
  background-color: var(--color-background);
  border: 1px solid var(--color-secondary);
  border-radius: 6px;
  box-shadow: 5px 5px 15px -1px #000000;
  color: var(--color-secondary);
  padding: 10px;
  text-align: center;
  top: 15px;
  left: -36px;
  width: 200px;
  z-index: 10000;
  white-space: normal;
}

[data-tooltip] {
  container-type: normal;
}

button[data-tooltip]:after {
  top: -36px;
  left: auto;
}

@container (max-width:210px) {
  [data-tooltip]:after {
    width: 100%;
    min-width: 100px;
  }
}
.dialogButton[data-tooltip]:after {
  top: 88%;
  left: 3vw;
  z-index: 50;
}

.deleteButton[data-tooltip]:after {
  left: 0;
  z-index: 5000;
}

.backButton {
  width: min-content;
}

.backButton[data-tooltip]:after {
  left: 75px;
  top: 12px;
  z-index: 50;
}

.saveAllButton [data-tooltip]:has(label[for=SwitchToggle]):hover:after {
  top: -60px;
  left: -10px;
}

.testDrive[data-tooltip]:has(label[for=SwitchToggle]):hover:after {
  top: 36px;
  left: auto;
  right: 10px;
}

[disabled][data-tooltip]:hover:after {
  display: block;
}

.backButton[data-tooltip]:hover:after,
.testDrive[data-tooltip]:hover:after {
  display: block;
}

.switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

.slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: var(--color-background);
  -webkit-transition: 0.4s;
  transition: 0.4s;
}

.slider:before {
  position: absolute;
  content: "";
  height: 26px;
  width: 26px;
  left: 4px;
  bottom: 4px;
  background-color: white;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}

input:checked + .slider {
  background-color: var(--color-secondary);
}

input:focus + .slider {
  box-shadow: 0 0 1px var(--color-secondary);
}

input:checked + .slider:before {
  -webkit-transform: translateX(26px);
  -ms-transform: translateX(26px);
  transform: translateX(26px);
}

/* Rounded sliders */
.slider.round {
  border-radius: 34px;
}

.slider.round:before {
  border-radius: 50%;
}

.testDrive {
  display: flex;
  justify-content: space-between;
  place-items: center;
}

.titleAndForwardButtons {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  width: 97%;
}

.buttonsNextPage {
  display: flex;
  gap: 10px;
  margin-bottom: 10px;
  margin-top: -14px;
}

#DeleteButton:after {
  position: fixed;
  left: 25px;
  bottom: 25px;
  z-index: 2000;
}

.messagesContainer {
  position: relative;
  justify-content: right;
  display: flex;
  right: 0;
  top: 0;
}

.message {
  position: absolute;
  height: 35px;
  padding: 5px;
  text-align: center;
}

.successText,
.errorText {
  text-align: center;
}

.errorMessage {
  background-color: var(--color-error);
  animation: error_animation 8s;
  top: -35px;
  z-index: 1;
  width: 100%;
}

.errorMessageInForm {
  color: var(--color-error);
  margin: 4px 0;
  width: 100%;
}

.successMessage {
  background-color: var(--color-success);
  animation: success_animation 4s;
  top: -35px;
  z-index: 1;
  width: 100%;
}

@keyframes success_animation {
  0% {
    top: -35px;
  }
  30% {
    top: 0;
  }
  70% {
    top: 0;
  }
  100% {
    top: -35px;
  }
}
@keyframes error_animation {
  0% {
    top: -35px;
  }
  15% {
    top: 0;
  }
  85% {
    top: 0;
  }
  100% {
    top: -35px;
  }
}
.closeMessageIcon {
  display: flex;
  position: absolute;
  right: 5px;
  background-color: transparent;
  height: 25px;
  width: 25px;
  border: none;
  padding: 0;
  top: 5px;
  cursor: pointer;
}

.buttonsConfirmation {
  display: flex;
  flex-direction: row;
  justify-content: right;
  gap: 20px;
  margin-top: 20px;
}

.saveButton,
.confirmationButton {
  color: var(--color-primary);
  background-color: var(--color-secondary);
  width: auto;
  padding: 0 15px;
  min-width: 140px;
}

button:disabled {
  background-color: transparent;
  color: dimgrey;
  border: 1px solid dimgray;
}

.tableBackground {
  background: var(--color-background);
  height: 54px;
  width: 100vw;
  position: fixed;
  z-index: 1350;
  top: 219px;
}

.breadcrumbAndEditorContainer {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  grid-template-rows: repeat(5, 1fr);
  grid-column-gap: 0;
  grid-row-gap: 0;
  padding: 15px;
  width: 100%;
  height: 100%;
  position: absolute;
}
.breadcrumbAndEditorContainer .boxButton {
  width: 140px;
  position: absolute;
  top: 68px;
  left: auto;
  right: 10%;
  min-width: 140px;
}

.outerContainer {
  grid-area: 1/1/2/6;
  height: 50%;
  max-height: 125px;
}

.breadcrumb {
  min-width: 160px;
  max-width: 200px;
  height: 60px;
  padding: 4px 10px;
  line-height: 1;
  background: var(--color-background-overview);
  position: relative;
  border-left: 4px solid var(--color-secondary);
  margin-right: 10px;
}
.breadcrumb h4 {
  margin: 5px 0 15px 0;
  color: var(--color-secondary);
}

table {
  text-align: left;
  position: relative;
  border-spacing: 10px;
  -webkit-border-vertical-spacing: 10px;
  border-collapse: initial;
  white-space: nowrap;
  margin: -5px -10px;
  margin-bottom: 40px;
}

th,
td {
  background-color: var(--transparant);
  text-align: left;
}

th {
  position: sticky;
  top: 0;
}

.toggle h2 {
  height: auto;
  padding: 5px 0 0 0;
  margin: 0;
  position: sticky;
  top: auto;
  left: 0;
  z-index: 210;
  text-overflow: ellipsis;
  width: 260px;
  white-space: nowrap;
  line-height: 1;
  text-transform: capitalize;
}

.categoryName {
  z-index: 800;
  top: 36px;
  font-size: 18px;
}

.categoryName[data-tooltip]:hover:after {
  display: block;
  top: -1px;
  left: 300px;
  background: none;
  box-shadow: none;
  font-size: 12px;
  color: lightgray;
  text-shadow: none;
  text-align: right;
  max-width: fit-content;
  padding-left: 3px !important;
}

.categoryElementCode {
  z-index: 800;
  top: 36px;
  font-size: 14px;
  padding-left: 5px;
  padding-top: 8px;
  background: var(--color-background);
}

.categoryElementCode[data-tooltip]:hover:after {
  display: block;
  max-width: max-content;
  top: 11px;
  left: 24%;
  position: absolute;
  padding: 5px;
  text-decoration: none;
  overflow: hidden;
  color: #fff;
  font-size: 12px;
  letter-spacing: 1px;
  text-align: center;
  word-break: keep-all;
  white-space: nowrap;
  text-shadow: 1px 0 1px #888;
  background-color: var(--color-secondary-dark);
  border-radius: 5px;
  box-shadow: 1px 2px 6px rgba(0, 0, 0, 0.3);
}

.tableRowData .categoryElementCode[data-tooltip]:hover:after {
  top: 27px;
}

.editorHeader {
  background-color: var(--color-background-overview);
  border: none;
  border-radius: 12px;
  padding: 10px;
  text-overflow: ellipsis;
  text-align: center;
  min-width: 165px;
  max-width: 220px;
  z-index: 1400;
  border-bottom: 0.8px solid white;
  position: sticky;
  cursor: pointer;
}
.editorHeader .label {
  width: 56px;
  font-weight: normal;
  display: inline-block;
}
.editorHeader .core,
.editorHeader .details,
.editorHeader .status {
  text-align: left;
  text-overflow: ellipsis;
  max-width: 220px;
  white-space: nowrap;
  overflow: hidden;
}
.editorHeader .core span,
.editorHeader .details span,
.editorHeader .status span {
  padding: 0 0 4px;
}

.editorHeader:hover,
.editorHeader:active,
.editorHeader:focus,
.editorHeader:visited {
  background: var(--color-secondary);
}
.editorHeader:hover .details,
.editorHeader:hover .status,
.editorHeader:hover .core,
.editorHeader:active .details,
.editorHeader:active .status,
.editorHeader:active .core,
.editorHeader:focus .details,
.editorHeader:focus .status,
.editorHeader:focus .core,
.editorHeader:visited .details,
.editorHeader:visited .status,
.editorHeader:visited .core {
  color: var(--color-background);
}

.draggable-column {
  cursor: move;
  transition: background-color 0.2s;
}

.stickyEditorHeader {
  display: block;
  background: var(--color-background);
  position: fixed;
  z-index: 50;
  height: 52px;
  margin-left: 160px;
  width: 100%;
  margin-top: -10px;
}

input[type=checkbox] {
  display: none;
}

.tableRowFeatures td,
.tableRowData td {
  padding-top: 10px;
  width: auto;
}
.tableRowFeatures td .regex_input_component,
.tableRowData td .regex_input_component {
  display: flex;
  align-items: center;
  width: auto;
  padding-top: 10px;
}
.tableRowFeatures td .regex_input_component input,
.tableRowData td .regex_input_component input {
  width: 150px;
}
.tableRowFeatures td .regex_input_component div,
.tableRowData td .regex_input_component div {
  min-width: initial;
  width: 150px;
}
.tableRowFeatures td .regex_input_component div p,
.tableRowData td .regex_input_component div p {
  font-style: normal;
  font-size: 0.8em;
  font-weight: 200;
  line-height: 1.6;
}

.text_glow {
  color: var(--color-secondary-light);
  text-shadow: white 0 0 10px, var(--color-secondary-light) 0 0 20px;
}

tbody {
  display: none;
}
tbody td {
  text-align: center;
  position: relative;
  vertical-align: top;
}
tbody td select {
  text-align: center;
  background: var(--color-background-overview);
  border-radius: 20px;
  padding: 7px;
  height: 30px;
  border-bottom: 0.8px solid white;
  background-image: url(../../../assets/icons/icon-arrow-yellow-down.svg);
  background-repeat: no-repeat;
  background-position: center right 17px;
}

.backdropEditor {
  width: 100%;
  z-index: 2000;
  background: rgba(0, 0, 0, 0.5);
  position: relative;
  top: -88px;
  height: calc(100% + 90px);
}

.backdropForm {
  width: 100%;
  height: calc(100% + 89px);
  top: -89px;
  left: 0;
  z-index: 2000;
  background: rgba(0, 0, 0, 0.5);
  position: relative;
}
.backdropForm form {
  position: absolute;
}

.editorDataInput {
  background: var(--white);
  color: var(--color-primary);
  height: 30px;
  border-radius: 20px;
  padding: 7px;
}

tbody.toggle {
  display: table-row-group;
  z-index: 1000;
  position: relative;
}

label {
  cursor: pointer;
}

tbody.toggle:has(input[type=checkbox]:checked) + tbody {
  display: table-row-group;
}

tbody.toggle td {
  border: none;
  padding: 0 4px;
  text-align: left;
}

.sticky-column {
  width: 274px;
  min-width: 160px;
  height: auto;
  padding: 0;
  margin: 0;
  top: auto;
  left: 0;
  vertical-align: top;
  z-index: 1500;
  background: var(--color-background);
  text-align: left;
  overflow: visible;
  clip: auto;
  white-space: normal;
  position: sticky;
  display: table-cell;
}

hr {
  border: 1px solid var(--color-secondary);
  position: relative;
  width: 100%;
}

.horizontalTableRuler {
  border-bottom: 1px solid var(--color-secondary) !important;
}

.horizontalTableRulerWhite {
  border-bottom: 1px solid var(--light-gray) !important;
  bottom: 3px;
  position: relative;
  z-index: 0;
}

.editorForm {
  top: 25vh;
  left: 20vw;
  width: 40%;
  min-width: 360px;
  max-width: 700px;
  padding: 25px;
  margin-bottom: 20%;
}
.editorForm .tools .saveButton {
  top: auto;
  right: 25px;
  bottom: 20px;
  min-width: 140px;
  width: 100%;
}

.editorOverviewContainer {
  grid-area: 2/1/7/6;
  overflow: auto;
  min-height: 100%;
  max-height: 75vh;
}

@media only screen and (min-width: 1900px) {
  .editorOverviewContainer {
    height: 77vh;
  }
}
@media only screen and (min-width: 2000px) {
  .editorOverviewContainer {
    height: 87vh;
  }
}
.patch {
  height: 53px;
  width: 283px;
  min-width: 160px;
  background: var(--color-background);
  z-index: 1389;
  position: absolute;
  top: 131px;
}

.featuresAndData select {
  width: 170px;
  position: relative;
}
.featuresAndData label {
  display: block;
  position: relative;
  width: 270px;
  min-height: 30px;
}
.featuresAndData input[type=text] {
  margin-top: -1px;
  position: relative;
}
.featuresAndData .roundElement,
.featuresAndData svg {
  width: 18px;
  height: 18px;
  position: relative;
}
.featuresAndData .addButton {
  top: 18px;
  left: 10px;
}
.featuresAndData .feature, .featuresAndData .data {
  display: flex;
  cursor: default;
  margin: 0;
}
.featuresAndData .feature h4, .featuresAndData .data h4 {
  color: var(--color-secondary);
  margin-right: 15px;
}
.featuresAndData .feature button, .featuresAndData .data button {
  margin: 0;
}
.featuresAndData .distributedContent {
  width: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.featuresAndData .leftAlignedContent {
  min-height: 115px;
}
.featuresAndData .leftAlignedContent * {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-direction: row;
}
.featuresAndData .leftAlignedContent span {
  margin: 3px 0;
}
.featuresAndData .leftAlignedContent .breakDescription {
  flex-direction: column;
  align-items: flex-start;
}
.featuresAndData .miniicon {
  height: 15px;
  width: auto;
  filter: brightness(600%) !important;
}
.featuresAndData .dimmed {
  opacity: 0.5;
}
.featuresAndData .blacked {
  opacity: 0.2;
}
.featuresAndData .invisible {
  opacity: 0;
}
.featuresAndData .categoryElementHeader {
  width: 265px;
  padding: 3px 2px 3px 7px;
  display: flex;
  flex-direction: column;
  gap: 1px;
}
.featuresAndData .categoryElementHeader span {
  width: fit-content;
  max-width: 235px;
  height: fit-content;
}
.featuresAndData .categoryElementHeaderExpansion {
  display: none;
  position: relative;
  width: auto;
  padding: 3px 7px;
  white-space: break-spaces;
  overflow: hidden;
  overflow-wrap: break-word;
  font-weight: normal;
  background: var(--color-background-overview);
  color: rgba(255, 255, 255, 0.8);
}
.featuresAndData .categoryElementHeaderExpansion span {
  align-items: flex-end;
}
.featuresAndData .categoryElementHeaderExpansion span * {
  margin-right: 8px;
}
.featuresAndData .categoryElementHeaderExpansion .buttons {
  display: none;
}
.featuresAndData .categoryElementHeaderExpansion .buttons button {
  display: inline-block;
}
.featuresAndData span {
  font-style: normal;
  font-size: 1em;
  font-weight: 100;
  min-height: 20px;
}
.featuresAndData em {
  font-style: normal;
  font-size: 0.8em;
  font-weight: 600;
}
.featuresAndData input[type=checkbox]:checked + .categoryElementHeaderExpansion {
  display: block;
}
.featuresAndData th:has(input[type=checkbox]:checked) {
  border: 1px solid var(--color-background-overview);
  border-radius: 4px;
  overflow: hidden;
}
.featuresAndData th:has(input[type=checkbox]:checked) .categoryElementHeader {
  padding: 2px 3px 4px 6px;
}
.featuresAndData th:has(input[type=checkbox]:checked) .buttons {
  width: auto;
  height: fit-content;
  margin: 15px 6px 6px 0;
  display: flex;
  flex-direction: row;
  justify-content: flex-end;
  gap: 10px;
}
.featuresAndData .cutTextWithEllepsis {
  display: block;
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
}

.priceInput {
  margin-top: 15px;
  height: fit-content;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: auto;
}
.priceInput * {
  height: 0;
  min-height: 0 !important;
  width: 150px;
}

.priceInput .error {
  height: fit-content;
}
.priceInput .error em {
  height: fit-content;
  font-weight: 200;
  line-height: 1.6;
}

.backButton {
  background: none;
  border: none;
  padding: 0;
  margin: 0;
  grid-area: backButton;
  overflow: hidden;
}

.editorGridContainer {
  height: calc(100vh - 88px);
  width: auto;
  max-width: 100%;
  padding: 15px;
  display: grid;
  grid-template-columns: 530px 1fr auto;
  grid-template-rows: 40px 80px 1fr;
  grid-template-areas: "backButton . ." "breadcrumb saveAll ." "table table tools";
  position: absolute;
}

.breadcrumbContainer {
  grid-area: breadcrumb;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  overflow: hidden;
}

.saveAllButton {
  grid-area: saveAll;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.saveAllButton div {
  margin: 10px;
  display: flex;
  align-items: center;
}
.saveAllButton div .slider {
  background-color: var(--color-background-overview);
}
.saveAllButton div .slider::before {
  background-color: var(--gray);
}
.saveAllButton div :checked + .slider::before {
  background-color: var(--color-secondary);
}
.saveAllButton div .switchLabelText {
  width: 60px;
  margin-left: 5px;
  color: var(--gray);
}
.saveAllButton div #SwitchToggle:checked + .switchLabelText {
  color: var(--color-secondary);
}
.saveAllButton #saveAllButton {
  padding: 5px 15px;
  align-items: center;
  cursor: pointer;
  margin-left: auto;
}

.editorTable {
  grid-area: table;
  overflow: auto;
  min-width: 100%;
  width: 100vw;
  max-width: calc(100vw - 290px);
  padding-top: 40px;
}

.toolsSidebar {
  grid-area: tools;
  background: var(--color-background);
  z-index: 1600;
  display: flex;
  flex-direction: row;
  top: 10px;
  position: relative;
}
.toolsSidebar .addButton {
  margin-top: 5px;
  height: 30px;
}

.toggle:first-of-type h2 {
  margin-top: 20px !important;
  display: block !important;
}

.engineTrimVariantTitle {
  margin-left: 15px;
  z-index: 1390; /*1900*/
  position: absolute;
  top: 140px;
  color: var(--color-secondary);
}

.editorHeaderRow .positioning {
  left: 35%;
  position: fixed;
}
.editorHeaderRow .backdropPopup {
  left: 0;
  position: fixed;
}

.editCodeContainer {
  display: flex;
  margin-bottom: 15px;
}

.editCodeLabel {
  margin-right: 20px;
}

.warn_text {
  height: fit-content;
  width: inherit;
  margin: 5px 0 20px 0;
  white-space: normal;
  font-size: 14px;
  text-align: left;
  color: red;
}

.no_edit_inputs * {
  pointer-events: none;
  color: #888;
}

.yellow_aria_hover[data-tooltip]:hover:after {
  display: block;
}

/*
.ariaPositionRelative[data-tooltip]:hover:after {
  position: relative;
  top: 0;
  left: 0;
}
*/
.tooltip {
  position: relative;
  display: inline-block;
}

.tooltip .tooltiptext {
  visibility: hidden;
  width: 200px;
  background-color: var(--color-background);
  border: 1px solid var(--color-secondary);
  color: var(--color-secondary);
  text-align: center;
  border-radius: 6px;
  padding: 10px;
  white-space: normal;
  pointer-events: none;
  box-shadow: 5px 5px 15px -1px #000000;
  /* Position the tooltip */
  position: absolute;
  z-index: 100;
}

.tools-waiting-logo .tooltiptext {
  visibility: hidden;
}

.tooltip:hover .tooltiptext {
  visibility: visible;
}

#mainStage {
  background-color: var(--color-background);
  display: flex;
  flex-direction: row;
  max-width: 100vw;
  margin: 0;
  position: fixed;
  width: 100%;
}
#mainStage header {
  position: absolute;
  top: 6px;
}

main {
  display: flex;
  flex-direction: column;
  width: 100%;
  height: 100vh;
  position: relative;
}

.formContainer {
  width: 40%;
}

.content {
  display: flex;
  flex-direction: row;
  position: relative;
  width: 100%;
  top: 88px;
  height: calc(100% - 90px);
}

.info {
  width: fit-content;
  height: fit-content;
  background-color: var(--color-border);
}

.core {
  display: flex;
  justify-content: space-between;
}

.columnHeader {
  display: flex;
  justify-content: flex-start;
}

.loginPageContainer {
  display: grid;
  grid-template-columns: repeat(10, 1fr);
  grid-template-rows: repeat(5, 1fr);
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  background: var(--color-primary);
  height: 100vh;
}

.div1 {
  grid-area: 1/1/6/6;
  background: var(--color-background);
}

.loginRight {
  grid-area: 1/6/6/11;
  background: green;
  background: url(/assets/images/new-bg-login.db96880e.jpg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  overflow: hidden;
}
.loginRight .corner-right {
  height: 20rem;
  overflow: hidden;
  position: absolute;
  right: 0px;
  top: 0px;
  width: 28rem;
}
.loginRight .corner__box-right {
  border: 7.5rem solid rgb(255, 255, 255);
  border-radius: 40%;
  bottom: 0px;
  left: 0px;
  height: 50rem;
  position: absolute;
  width: 50rem;
}

.loginLeft {
  grid-area: 2/2/5/5;
  display: flex;
  flex-direction: column;
  text-align: center;
  align-items: center;
  justify-content: space-evenly;
  z-index: 200;
}
.loginLeft h1 {
  font-size: 2vw;
}

.loginLogo {
  width: 5vw;
  height: 5vw;
  margin-left: auto;
  margin-right: auto;
  padding: 10px;
  background: #4c485c;
  border-radius: 10px;
}

.loginButtonContainer {
  justify-content: flex-end;
  display: flex;
  width: 100%;
  margin-right: 0;
}

.loginButton {
  width: 160px;
  min-height: 40px;
  padding: 10px;
  font-size: 17px;
}

.corner {
  height: 20rem;
  overflow: hidden;
  position: fixed;
  left: 0px;
  bottom: 0px;
  width: 28rem;
}

.corner__box {
  border: 7.5rem solid rgb(250, 180, 45);
  border-radius: 15rem;
  box-sizing: border-box;
  top: 5rem;
  left: -33.75rem;
  height: 30rem;
  position: absolute;
  width: 60rem;
}

* {
  font-family: Arial, sans-serif;
}

html {
  box-sizing: content-box;
  font-size: 100%;
  scroll-behavior: smooth;
}

body {
  background-color: var(--color-background);
  color: var(--color-text);
  scroll-behavior: smooth;
  overflow: auto;
}

li {
  list-style: none;
}

:root {
  --color-background: #110e1b;
  --color-background-overview: #322E44;
  --color-primary: #1e1932;
  --color-secondary: #fab42d;
  --color-secondary-light: #fbc65f;
  --color-text: #fff;
}

html,
input[type=text] {
  font-size: 14px;
  color: white;
}

.buttonPrimary,
.buttonSecondary {
  display: flex;
  justify-content: center;
  vertical-align: middle;
  width: auto;
  height: 40px;
  border-radius: 20px;
  padding: 12px 40px;
  cursor: pointer;
}
.buttonPrimary .containerPrimaryButton,
.buttonSecondary .containerPrimaryButton {
  margin: auto;
  text-align: center;
  display: flex;
  justify-content: center;
  position: relative;
  vertical-align: center;
}
.buttonPrimary svg,
.buttonSecondary svg {
  stroke: var(--color-background);
  fill: var(--color-background);
  margin: auto;
  vertical-align: middle;
}

.buttonPrimary {
  fill: var(--color-background);
  background-color: var(--color-secondary);
  border: none;
  color: var(--color-background);
}

.tools-waiting-logo {
  border: 5px solid #f3f3f3; /* Light grey */
  border-top: 5px solid #3498db; /* Blue */
  border-radius: 50%;
  width: 40px;
  height: 40px;
  animation: spin 2s linear infinite;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
.buttonSecondary {
  color: var(--white);
  background-color: var(--color-background-overview);
  border-radius: 24px;
  border: 1px solid var(--color-secondary);
}

.buttonPrimary:hover,
.buttonPrimary:active {
  background: var(--color-secondary-light);
}

.iconPlus,
.iconMinus {
  stroke-width: 35px;
  stroke: currentColor;
}

.iconPlus {
  transform: rotate(45deg);
}

.iconClose {
  stroke-width: 16px;
  stroke: currentColor;
}

.iconCopy {
  margin-left: 8px !important;
  margin-top: 5px !important;
  fill: currentColor;
}

.iconEditPencil {
  margin: 0 2px !important;
  stroke: currentColor;
}

.iconArrowUp,
.iconArrowDown {
  stroke: var(--color-secondary);
  stroke-width: 16px;
  cursor: pointer;
}

.iconArrowToLeft,
.iconArrowToRight {
  fill: var(--color-secondary);
  cursor: pointer;
}

.iconArrowToRight,
.iconArrowUp {
  transform: rotate(180deg);
}

.iconCSV {
  margin-left: 10px;
}

.roundElement {
  width: 25px;
  height: 25px;
  border-radius: 50%;
  padding: 0;
}

.buttonPrimary:disabled,
.buttonSecondary:disabled {
  background-color: transparent;
  color: dimgrey;
  border: 1px solid dimgray;
}

.buttonPrimary:disabled:hover,
.buttonSecondary:disabled:hover,
.buttonPrimary:disabled:active,
.buttonSecondary:disabled:active {
  background: transparent;
  cursor: not-allowed;
}

.smallPrimaryButton {
  padding: 12px 16px;
  color: var(--color-background);
}

.listDragAndDrop {
  width: 100%;
  overflow: auto;
  scroll-behavior: smooth;
}

.dragged {
  opacity: 100%;
  color: var(--color-secondary) !important;
  background-color: var(--color-background-overview);
}

.liDragItem {
  color: var(--color-text);
  display: flex;
  flex-direction: row;
  vertical-align: text-top;
  padding: 10px;
  border-radius: 7px;
  top: -8px;
  position: relative;
}

.liDragItem:active {
  width: 100%;
  color: var(--color-text);
  display: inline-block;
  outline: 1px solid var(--color-secondary);
}

input[type=text] {
  border: 1px solid #fff;
  box-sizing: border-box;
  background: none;
  color: #fff;
  border-top: none;
  border-left: none;
  border-right: none;
}

.formStandardUILib {
  display: flex;
  flex-direction: column;
  position: relative;
  width: 100%;
  min-width: 300px;
  max-width: 700px;
}
.formStandardUILib h3 {
  line-height: 1.5;
  margin-top: 0;
}
.formStandardUILib .icon {
  stroke: white;
  fill: white;
  color: white;
}
.formStandardUILib .tools {
  display: flex;
  flex-direction: row;
  gap: 10px;
  margin-left: auto;
  margin-right: 0;
}
.formStandardUILib .inputField {
  display: flex;
  flex-direction: row;
  gap: 10px;
  margin-bottom: 25px;
}
.formStandardUILib input[type=text] {
  float: right;
  margin-top: -4px;
  flex-grow: 1;
}

.popup {
  max-height: 88vh;
  background: var(--color-background-overview);
  border: none;
  border-radius: 12px;
  position: absolute;
  display: block;
  padding: 25px;
  margin: 15px;
  width: 40vw;
  min-width: 360px;
  max-width: 700px;
  z-index: 5000;
  box-shadow: 5px 5px 15px -1px #000000;
  overflow-y: auto;
}
.popup .closeButtonPopup {
  background: none;
  border: none;
  color: white;
  float: right;
  margin: -5px -12px;
}
.popup .iconClose {
  position: relative;
  float: right;
  cursor: pointer;
}
.popup ::-webkit-scrollbar-track {
  margin-left: 10px;
}

.closed {
  display: none;
}

.formContainer .positioning {
  left: 50%;
  top: 20%;
  transform: translate(-50%, -20%);
  position: fixed;
}

.positioning.formPos {
  left: 50%;
  top: 20%;
  transform: translate(-50%, -20%);
  position: fixed;
}

.backdropPopup {
  background: rgba(0, 0, 0, 0.5);
  width: 125vw;
  height: 110vh;
  position: absolute;
  overflow: auto;
  left: 0;
  top: -13vh;
  z-index: 2999;
}

.deleteFeaturePopup .backdropPopup,
.deleteDataPopup .backdropPopup {
  left: 0;
  top: -13vh;
}
.deleteFeaturePopup .positioning,
.deleteDataPopup .positioning {
  left: 40vw;
  top: 40vh;
}

.deleteConfirmation {
  text-align: center;
}

.regex_input_component {
  width: 180px; /* height & width: fit in inserted structure */
  height: auto;
  display: flex;
  flex-direction: column;
}
.regex_input_component input {
  width: 100%;
  height: auto;
}
.regex_input_component .input_error {
  background-color: var(--color-background-overview);
  border-color: #621a20;
  box-shadow: var(--color-background-overview) 0px -2px 2px 2px;
}
.regex_input_component div {
  width: 100%;
  height: auto;
  min-width: 165px;
  max-width: 220px;
  position: relative;
}
.regex_input_component div p {
  height: fit-content;
  width: inherit;
  margin-top: 7px;
  white-space: normal;
  font-size: 14px;
  text-align: left;
  color: red;
}

.columns {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  height: 100vh;
  left: 20vw;
  position: static;
  width: 70vw;
  top: 80px;
}
.columns .column {
  position: relative;
  width: 30%;
}
.columns .column .columnsContentDiv {
  padding: 15px;
  height: 300px;
  overflow: auto;
}
.columns .column h2 {
  font-size: 1.1em;
  padding: 10px 15px 0 15px;
  line-height: 15px;
  margin-bottom: 10px;
}

ol:not(.listDragAndDrop) {
  padding: 15px;
  top: 4vh;
  overflow-y: auto;
  overflow-x: hidden !important;
  -ms-overflow-style: none;
  scroll-padding-top: 7px;
}

.copyForm {
  display: flex;
  flex-direction: column;
  background: var(--color-background-overview);
  border: none;
  border-radius: 12px;
  padding: 25px;
  width: 40vw;
  left: -30vw;
  top: 20vh;
}

.columnHeader {
  display: flex;
  justify-content: flex-start;
}

.columnListItem {
  display: flex;
  flex-direction: row;
  vertical-align: text-top;
  padding-bottom: 10px;
}

.overviewElement span {
  font-size: 87%;
  line-height: 1.3em;
  width: 100%;
}
.overviewElement a {
  color: var(--color-text);
  text-decoration: none;
}
.overviewElement a .core {
  display: flex;
  justify-content: space-between;
  flex-direction: row;
}
.overviewElement a .core div {
  display: flex;
  justify-content: space-between;
  flex-direction: column;
}
.overviewElement a .core .actions {
  display: flex;
  justify-content: center;
  flex-direction: row;
  height: fit-content;
  width: fit-content;
}
.overviewElement a .core .actions .icon {
  width: 20px;
  height: 20px;
}
.overviewElement a .core .actions .icon path {
  opacity: 0.5;
  fill: var(--color-text);
}
.overviewElement a .core .actions .iconArrowUpDown:not(.liDragItem *) {
  display: none;
}
.overviewElement a .name {
  opacity: 0.5;
}
.overviewElement a .unit {
  opacity: 0.5;
}
.overviewElement a .code_unit {
  display: flex;
  flex-direction: row !important;
  gap: 10px;
}
.overviewElement a .status {
  opacity: 0.5;
  text-align: right;
}

/*div.highlight [aria-current] {
  width: 100%;
  color: var(--color-primary);
  background-color: var(--color-text-highlight);
  display: inline-block;
  outline: 7px solid var(--color-text-highlight);
  border: none;
  border-radius: 2px;
}*/
div.past [aria-current] {
  width: 100%;
  color: var(--color-text-highlight);
  background-color: rgba(255, 255, 255, 0.1254901961);
  display: inline-block;
  outline: 7px solid rgba(255, 255, 255, 0.1254901961);
  border: none;
  border-radius: 2px;
}
div.past [aria-current] p.loading {
  padding: 15px;
  color: var(--gray);
}

.element-hide {
  display: none;
}

/* @forward 'themes';
@forward 'utils';
@forward 'vendors'; */
/*
We want source maps
https://github.com/thedodd/trunk/pull/543
https://github.com/thedodd/trunk/issues/528
*/
