#__console-container {
  position: absolute !important;
}
#__debug-bar {
  margin: 0px 0 0 0 !important;
}
:root {
  --color-workspace-background: #f3f3f3;
  --color-workspace-foreground: #606060;
  --color-contrast-background: #293d3d;
  --color-contrast-foreground: #9ea8a8;
  --color-surface-background: #FFFFFF;
  --color-surface-faded: #d9d9d9;
  --color-surface-mediumground: #A0A0A0;
  --color-surface-foreground: #606060;
  --color-highlight-foreground: #007E7B;
  --color-highlight-foreground-alternative: #1F1F1F;
  --color-highlight-background: #FFFFFF;
  --color-highlight-faded: #d9eceb;
  --color-highlight-foreground-inverted: #007E7B;
  --color-highlight-background-inverted: #FFFFFF;
  --color-warning: #ffc107;
  --color-danger: #dc3545;
  --color-success: #28a745;
  --color-shadow-text: #000;
  --color-shadow: rgba(0, 0, 0, 0.25);
  --color-shadow-dark: rgba(0, 0, 0, 0.5);
  --spacing-minimum: calc(var(--spacing-normal) / 2);
  --spacing-normal: 5px;
  --spacing-separated: calc(var(--spacing-normal) * 2);
  --spacing-isolated: calc(var(--spacing-normal) * 4);
  --font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
  --font-size-small: 0.8rem;
  --font-size-normal: 14px;
  --font-size-big: 1.4rem;
}
badge,
.badge {
  display: inline-block;
  border: none;
  color: var(--color-highlight-background);
  background-color: var(--color-highlight-foreground);
  width: 24px;
  height: 24px;
  border-radius: 50%;
  font-size: 14px;
  line-height: 24px;
  text-align: center;
}
menu a[badge]::after {
  content: attr(badge);
  display: inline-block;
  border: none;
  color: var(--color-highlight-background);
  background-color: var(--color-highlight-foreground);
  width: 22px;
  height: 22px;
  border-radius: 50%;
  font-size: 14px;
  line-height: 22px;
  text-align: center;
  position: absolute;
  right: 0px;
  top: 50%;
  transform: translate(-49%, -50%);
}
heading a[badge]::after {
  content: attr(badge);
  display: inline-block;
  border: none;
  color: var(--color-surface-foreground);
  background-color: var(--color-warning);
  width: 18px;
  height: 18px;
  border-radius: 50%;
  font-size: 12px;
  text-align: center;
  position: absolute;
  right: 7px;
  top: 11px;
  line-height: 18px;
}
body {
  width: 100%;
  height: 100%;
  display: grid;
  grid-template-columns: minmax(55px, auto) 1fr;
  grid-template-rows: auto 1fr;
  grid-template-areas: "headding headding" "menu workspace";
  place-content: stretch / stretch;
}
body heading {
  grid-area: headding;
  padding: var(--spacing-normal);
  display: grid;
  grid-template-columns: auto 1fr auto;
  grid-template-areas: "left middle right";
  justify-content: space-between;
  align-content: stretch;
  justify-items: center;
  align-items: center;
  min-height: 64px;
  background-color: var(--color-highlight-foreground-inverted);
  color: var(--color-highlight-background-inverted);
  box-shadow: 0 5px 5px -3px var(--color-shadow);
  --color-highlight-border: var(--color-highlight-foreground-inverted);
  --color-highlight-background: var(--color-highlight-foreground-inverted);
  --color-highlight-foreground: var(--color-highlight-background-inverted);
  z-index: 1000;
}
body heading > img {
  grid-area: left;
  height: 24px;
  padding-left: 20px;
}
body heading systray {
  grid-area: right;
  display: grid;
  gap: var(--spacing-normal);
  padding-right: 14px;
  grid-template-columns: auto auto auto auto;
  align-items: center;
}
body heading progress {
  position: absolute;
  bottom: 0px;
  left: 0px;
  right: 0px;
  width: auto;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border: none;
  color: var(--color-surface-background);
  height: 4px;
  display: none;
}
body heading progress::-webkit-progress-bar {
  background-color: var(--color-highlight-foreground);
}
body heading progress::-webkit-progress-value {
  background-color: var(--color-surface-background);
}
body heading progress::-moz-progress-bar {
  background-color: var(--color-surface-background);
}
body menu.root {
  grid-area: menu;
}
body workspace {
  grid-area: workspace;
  padding: var(--spacing-isolated);
  gap: var(--spacing-isolated);
  display: grid;
  grid-template-columns: 1fr;
  grid-auto-rows: auto;
  align-content: start;
  justify-content: center;
  align-items: start;
  justify-items: center;
}
body.login {
  grid-template-columns: 1fr !important;
  grid-template-rows: 100px 1fr;
  grid-row-gap: 100px;
}
body.login heading {
  grid-template-columns: auto;
}
body.login heading img {
  grid-area: middle;
  height: auto;
  justify-self: center;
}
body.login panel {
  justify-self: center;
}
body.login panel info {
  padding-right: var(--spacing-isolated);
  text-align: right;
}
body.login panel a {
  padding: initial;
  border: none;
}
body.login panel button {
  min-width: 100px;
}
body.submiting progress {
  display: block;
}
body.submiting .save icon {
  animation: spinning 2s linear infinite;
}
body.submiting .save icon:before {
  content: "\f2f1";
}
body form[invalid] .save icon:before {
  content: '\f071';
  color: var(--color-danger);
}
@keyframes spinning {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
.button,
button {
  display: inline-grid;
  grid-gap: var(--spacing-separated);
  grid-auto-flow: column;
  font-weight: normal;
  cursor: pointer;
  border: 1px solid var(--color-highlight-border, var(--color-highlight-foreground));
  border-radius: var(--spacing-normal);
  white-space: nowrap;
  padding: var(--spacing-normal) var(--spacing-separated);
  line-height: 1rem;
  color: var(--color-highlight-foreground);
  background-color: var(--color-highlight-background);
  text-decoration: none;
  min-height: 32px;
  align-items: center;
  justify-items: center;
  grid-auto-columns: 1fr;
  grid-template-columns: auto;
  transition: background-color 0.5s ease, color 0.5s ease;
}
.button:hover,
button:hover {
  color: var(--color-highlight-background);
  background-color: var(--color-highlight-foreground);
}
.button.main,
button.main {
  color: var(--color-highlight-background);
  background-color: var(--color-highlight-foreground);
}
.button.main:disabled,
button.main:disabled,
.button.main[disabled],
button.main[disabled],
.button.main.disabled,
button.main.disabled {
  background-color: var(--color-surface-mediumground);
  color: var(--color-highlight-background);
}
.button.main:hover,
button.main:hover {
  color: var(--color-highlight-foreground);
  background-color: var(--color-highlight-background);
}
.button:disabled,
button:disabled,
.button[disabled],
button[disabled],
.button.disabled,
button.disabled {
  color: var(--color-surface-mediumground) !important;
  border-color: var(--color-surface-mediumground) !important;
  background-color: var(--color-surface-background) !important;
  cursor: not-allowed;
}
.button.caret,
button.caret {
  gap: var(--spacing-normal);
  grid-auto-columns: auto;
}
.button.caret:after,
button.caret:after {
  content: '';
  justify-self: end;
  align-self: center;
  width: 0;
  height: 0;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-top: 5px solid currentcolor;
  border-bottom: none;
}
calendar {
  display: inline-grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto 1fr auto;
  grid-template-areas: "months years" "month month" "clear today";
  min-width: auto !important;
  flex-basis: auto !important;
  flex-grow: 0 !important;
  flex-shrink: 0 !important;
}
calendar > clear {
  grid-area: clear;
  justify-self: start;
}
calendar > clear button {
  border: 0px;
}
calendar > today {
  grid-area: today;
  justify-self: end;
}
calendar > today button {
  border: 0px;
}
calendar > months {
  grid-area: months;
  justify-self: start;
}
calendar > years {
  grid-area: years;
  justify-self: end;
}
calendar dropbutton > a.button {
  border: 0px;
}
calendar > month {
  grid-area: month;
  display: inline-grid;
  grid-template-columns: repeat(7, 30px);
  grid-auto-rows: 30px;
  width: min-content;
  gap: 1px;
  background-color: var(--color-surface-faded);
  border: 1px solid var(--color-surface-faded);
}
calendar > month > * {
  background-color: var(--color-surface-background);
}
calendar > month weekday {
  display: flex;
  justify-content: center;
  align-items: center;
}
calendar > month day {
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
}
calendar > month day > a {
  display: inline-block;
}
calendar > month day.out-month {
  color: var(--color-surface-mediumground);
}
calendar > month day.weekend {
  background-color: var(--color-workspace-background);
}
calendar > month day.signaled {
  background-color: var(--color-highlight-faded);
}
calendar > month day.filtering {
  outline: 1px solid var(--color-highlight-foreground);
}
calendar > month day.today::after {
  content: '';
  border: 1px solid var(--color-surface-foreground);
  border-radius: 100px;
  position: absolute;
  top: var(--spacing-minimum);
  left: var(--spacing-minimum);
  bottom: var(--spacing-minimum);
  right: var(--spacing-minimum);
}
calendar.popup {
  grid-template-columns: auto 1fr 1fr auto;
  grid-template-rows: auto 1fr auto;
  grid-template-areas: "prev datescope datescope next" "month month month month" "clear clear today today";
}
calendar.popup > datescope {
  grid-area: datescope;
  display: flex;
  justify-content: center;
  align-items: center;
}
calendar.popup > button {
  padding: var(--spacing-normal);
  margin: var(--spacing-normal);
  min-height: auto;
}
calendar.popup > .previous {
  grid-area: prev;
}
calendar.popup > .next {
  grid-area: next;
}
calendar.popup > .clear {
  grid-area: clear;
  border: none;
}
calendar.popup > .today {
  grid-area: today;
  border: none;
}
calendar.popup > .previous:before {
  content: '';
  justify-self: end;
  align-self: center;
  width: 0;
  height: 0;
  border-left: none;
  border-right: 5px solid currentcolor;
  border-top: 5px solid transparent;
  border-bottom: 5px solid transparent;
}
calendar.popup > .next:before {
  content: '';
  justify-self: end;
  align-self: center;
  width: 0;
  height: 0;
  border-left: 5px solid currentcolor;
  border-right: none;
  border-top: 5px solid transparent;
  border-bottom: 5px solid transparent;
}
.checked-button {
  display: inline-grid;
  grid-auto-flow: column;
  font-weight: normal;
  touch-action: manipulation;
  cursor: pointer;
  white-space: nowrap;
  color: var(--color-highlight-foreground);
  background-color: var(--color-highlight-background);
  text-decoration: none;
  min-height: 32px;
  align-items: center;
  justify-items: center;
  grid-template-columns: 1fr auto;
  transition: background-color 0.5s ease, color 0.5s ease;
}
.checked-button:hover {
  color: var(--color-highlight-background);
  background-color: var(--color-highlight-foreground);
}
.checked-button.main {
  color: var(--color-highlight-background);
  background-color: var(--color-highlight-foreground);
}
.checked-button.main:disabled,
.checked-button.main[disabled],
.checked-button.main.disabled {
  background-color: var(--color-surface-mediumground);
  color: var(--color-highlight-background);
}
.checked-button.main:hover {
  color: var(--color-highlight-foreground);
  background-color: var(--color-highlight-background);
}
.checked-button:disabled,
.checked-button[disabled],
.checked-button.disabled {
  color: var(--color-surface-mediumground) !important;
  border-color: var(--color-surface-mediumground) !important;
  background-color: var(--color-surface-background) !important;
  cursor: not-allowed;
}
.checked-button > .button,
.checked-button > button {
  display: grid;
  grid-gap: var(--spacing-separated);
  grid-auto-flow: column;
  font-weight: normal;
  touch-action: manipulation;
  cursor: pointer;
  white-space: nowrap;
  padding: var(--spacing-normal) var(--spacing-separated);
  line-height: 1rem;
  text-decoration: none;
  min-height: 32px;
  align-items: center;
  justify-items: start;
  grid-template-columns: auto 1fr;
  justify-self: start;
  width: 100%;
  border: 0px;
  color: currentColor;
  background-color: transparent !important;
  transition: none;
}
.checked-button > .button:hover,
.checked-button > button:hover {
  color: currentColor;
  background-color: transparent !important;
}
.checked-button > a.toggle {
  display: inline-block;
  border: 1px solid var(--color-surface-faded);
  border-radius: 5px;
  width: 20px;
  height: 20px;
  cursor: pointer;
  min-height: auto;
  justify-self: end;
  margin: var(--spacing-normal);
}
.checked-button > a.toggle[checked]::before {
  content: '';
  position: absolute;
  display: inline-block;
  transform: translate(-50%, -50%) rotate(45deg);
  height: 8px;
  width: 4px;
  top: 50%;
  left: 50%;
  border-bottom: 3px solid currentColor;
  border-right: 3px solid currentColor;
}
dropbutton {
  user-select: none;
  display: inline-block;
}
dropbutton.open > .button:after,
dropbutton.open > button:after {
  border-bottom: 5px solid currentcolor  !important;
  border-top: none !important;
}
dropbutton > droplayer {
  display: none;
  --color-highlight-border: var(--color-highlight-background-inverted);
  --color-highlight-background: var(--color-highlight-background-inverted);
  --color-highlight-foreground: var(--color-highlight-foreground-inverted);
}
droplayer {
  display: flex;
  background: var(--color-surface-background);
  color: var(--color-surface-foreground);
  z-index: 99999999;
  position: fixed;
  top: 100%;
  left: 0px;
  min-width: 100px;
  border-radius: var(--spacing-normal);
  box-shadow: 0px 1px 3px 0px var(--color-shadow-dark);
  flex-direction: column;
  align-items: stretch;
  font-size: 1rem;
  max-height: 500px;
  padding: var(--spacing-normal) 0px;
  /*overflow-x: hidden;
	overflow-y: visible;*/
  /*
	&.stretch
	{
		max-height: none;
	}
	*/
}
droplayer > input[type="search"] {
  margin: var(--spacing-normal);
  width: auto;
}
droplayer > a,
droplayer > a:link,
droplayer > a:active,
droplayer > a:visited,
droplayer > button,
droplayer > .button {
  border-radius: 0px;
  border: none;
  justify-items: left;
}
droplayer > ul {
  display: block;
  overflow-y: visible;
  overflow-x: hidden;
  width: 100%;
}
droplayer > ul > li {
  display: block;
  width: 100%;
  padding: var(--spacing-normal);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  min-height: 2rem;
}
droplayer > ul > li.group {
  font-size: var(--font-size-small);
  color: var(--color-surface-background);
  background-color: var(--color-surface-faded);
}
droplayer > ul > li[selected] {
  color: var(--color-surface-foreground);
  background-color: var(--color-surface-faded);
}
droplayer > ul > li[disabled] {
  pointer-events: none;
  color: var(--color-surface-mediumground) !important;
  background-color: var(--color-surface-background) !important;
}
droplayer > ul > li:not(.group):hover {
  cursor: pointer;
  color: var(--color-highlight-background);
  background-color: var(--color-highlight-foreground);
}
droplayer label {
  font-size: 1rem;
  padding: 4px 8px;
}
fases {
  display: flex;
  /* background: var(--color-workspace-background); */
  border-radius: var(--spacing-normal);
  flex-direction: row;
  flex-wrap: nowrap;
  align-content: center;
  align-items: center;
  justify-content: stretch;
  padding-left: var(--spacing-normal);
  padding-right: 25px;
  padding-bottom: var(--spacing-isolated);
}
fases > fase {
  display: inline-grid;
  justify-content: center;
  align-content: center;
  padding: var(--spacing-separated);
  padding-left: calc(var(--spacing-separated) * 2);
  padding-right: calc(var(--spacing-separated) * 2);
  overflow: hidden;
  height: 100%;
  align-items: center;
  background: var(--color-highlight-foreground);
  clip-path: polygon(0% 0%, calc(100% - 16px) 0%, 100% 50%, calc(100% - 16px) 100%, 0% 100%);
  margin-right: -16px;
  z-index: calc(100 - var(--order));
  flex-shrink: 1;
}
fases > fase:first-child {
  padding-left: var(--spacing-separated);
}
fases > fase::before {
  top: 1px;
  left: 1px;
  position: absolute;
  content: '';
  z-index: 1;
  background-color: var(--color-workspace-background);
  right: 1px;
  bottom: 1px;
  clip-path: polygon(0% 0%, calc(100% - 15px) 0%, 100% 50%, calc(100% - 15px) 100%, 0% 100%);
}
fases > fase > title {
  z-index: 2;
  display: inline-block;
  width: 100%;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
fases > fase.activa {
  color: var(--color-highlight-background);
}
fases > fase.activa::before {
  background-color: var(--color-highlight-foreground);
  box-shadow: inset 0px 0px 0px 100px #ffffff40;
}
fases > fase.completada {
  color: var(--color-highlight-background);
}
fases > fase.completada::before {
  background-color: var(--color-highlight-foreground);
}
fases.producao > fase {
  background-color: var(--color-highlight-foreground-alternative);
}
fases.producao > fase.completada::before {
  background-color: var(--color-highlight-foreground-alternative);
}
fases.producao > fase.activa::before {
  background-color: var(--color-highlight-foreground-alternative);
}
fetchable {
  display: contents;
}
fetchable > * {
  --weight: 100;
  flex-basis: calc(var(--weight) * 1%);
  flex-grow: calc(var(--weight) * var(--responsiveness, 1));
  flex-shrink: calc((100 - var(--weight)) * var(--responsiveness, 1));
  min-width: 0ch;
}
fetchable > *.large {
  --weight: 100;
  min-width: calc(var(--responsiveness, 1) * 40ch);
}
fetchable > *.medium-large {
  --weight: 66.6;
  min-width: calc(var(--responsiveness, 1) * 20ch);
}
fetchable > *.intermedium {
  --weight: 75;
}
fetchable > *.medium {
  --weight: 50;
}
fetchable > *.third,
fetchable > *.medium-small {
  --weight: 33.3;
  min-width: calc(var(--responsiveness, 1) * 20ch);
}
fetchable > *.small-medium {
  --weight: 37.5;
}
fetchable > *.small {
  --weight: 25;
  min-width: calc(var(--responsiveness, 1) * 20ch);
}
fetchable > *.extra-small,
fetchable > *.mini {
  --weight: 12.5;
  min-width: calc(var(--responsiveness, 1) * 10ch);
}
fetchable > *.micro {
  --weight: 6.25;
  min-width: calc(var(--responsiveness, 1) * 10ch);
}
fetchable > *.size-4 {
  --weight: 4.3;
}
fetchable > *.size-5 {
  --weight: 5.8;
}
fetchable > *.size-6 {
  --weight: 6.3;
}
fetchable > *.size-8 {
  --weight: 8.3;
}
fetchable > *.size-10 {
  --weight: 10;
}
fetchable > *.size-11 {
  --weight: 11.66;
}
fetchable > *.size-14 {
  --weight: 14.28;
}
fetchable > *.size-16 {
  --weight: 16.6;
}
fetchable > *.size-20 {
  --weight: 20;
}
fetchable > *.size-30 {
  --weight: 30;
}
fetchable > *.size-33 {
  --weight: 33.3;
}
fetchable > *.size-40 {
  --weight: 40;
}
fetchable > *.size-50 {
  --weight: 50;
}
fetchable > *.size-60 {
  --weight: 60;
}
fetchable > *.size-66 {
  --weight: 66.6;
}
fetchable > *.size-70 {
  --weight: 70;
}
fetchable > *.size-80 {
  --weight: 80;
}
fetchable > *.size-90 {
  --weight: 90;
}
fetchable > *.size-100 {
  --weight: 100;
}
channel {
  display: contents;
}
channel > * {
  --weight: 100;
  flex-basis: calc(var(--weight) * 1%);
  flex-grow: calc(var(--weight) * var(--responsiveness, 1));
  flex-shrink: calc((100 - var(--weight)) * var(--responsiveness, 1));
  min-width: 0ch;
}
channel > *.large {
  --weight: 100;
  min-width: calc(var(--responsiveness, 1) * 40ch);
}
channel > *.medium-large {
  --weight: 66.6;
  min-width: calc(var(--responsiveness, 1) * 20ch);
}
channel > *.intermedium {
  --weight: 75;
}
channel > *.medium {
  --weight: 50;
}
channel > *.third,
channel > *.medium-small {
  --weight: 33.3;
  min-width: calc(var(--responsiveness, 1) * 20ch);
}
channel > *.small-medium {
  --weight: 37.5;
}
channel > *.small {
  --weight: 25;
  min-width: calc(var(--responsiveness, 1) * 20ch);
}
channel > *.extra-small,
channel > *.mini {
  --weight: 12.5;
  min-width: calc(var(--responsiveness, 1) * 10ch);
}
channel > *.micro {
  --weight: 6.25;
  min-width: calc(var(--responsiveness, 1) * 10ch);
}
channel > *.size-4 {
  --weight: 4.3;
}
channel > *.size-5 {
  --weight: 5.8;
}
channel > *.size-6 {
  --weight: 6.3;
}
channel > *.size-8 {
  --weight: 8.3;
}
channel > *.size-10 {
  --weight: 10;
}
channel > *.size-11 {
  --weight: 11.66;
}
channel > *.size-14 {
  --weight: 14.28;
}
channel > *.size-16 {
  --weight: 16.6;
}
channel > *.size-20 {
  --weight: 20;
}
channel > *.size-30 {
  --weight: 30;
}
channel > *.size-33 {
  --weight: 33.3;
}
channel > *.size-40 {
  --weight: 40;
}
channel > *.size-50 {
  --weight: 50;
}
channel > *.size-60 {
  --weight: 60;
}
channel > *.size-66 {
  --weight: 66.6;
}
channel > *.size-70 {
  --weight: 70;
}
channel > *.size-80 {
  --weight: 80;
}
channel > *.size-90 {
  --weight: 90;
}
channel > *.size-100 {
  --weight: 100;
}
fieldset,
.fieldset {
  width: 100%;
  padding-bottom: 20px;
  display: inline-flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-content: flex-start;
  justify-content: flex-start;
  align-items: flex-start;
}
fieldset:not(.static)::after,
.fieldset:not(.static)::after {
  content: '';
  height: 0px;
  flex-basis: 25%;
  flex-grow: 100;
  flex-shrink: 0;
}
fieldset:not(.static) break,
.fieldset:not(.static) break {
  display: contents;
}
fieldset:not(.static) break::before,
.fieldset:not(.static) break::before {
  content: '';
  height: 0px;
  flex-basis: 25%;
  flex-grow: 100;
  flex-shrink: 0;
}
fieldset:not(.static) break::after,
.fieldset:not(.static) break::after {
  content: '';
  height: 0px;
  flex-basis: 100%;
  flex-grow: 100;
  flex-shrink: 0;
  width: 100%;
  min-width: 100%;
  max-width: 100%;
}
fieldset.static,
.fieldset.static {
  --responsiveness: 0;
}
fieldset.static break,
.fieldset.static break {
  display: block;
  height: 0px;
  flex-basis: 100%;
  flex-grow: 100;
  flex-shrink: 0;
  width: 100%;
  min-width: 100%;
  max-width: 100%;
}
fieldset.static break.withspace,
.fieldset.static break.withspace {
  height: var(--spacing-isolated);
}
fieldset > *,
.fieldset > * {
  --weight: 100;
  flex-basis: calc(var(--weight) * 1%);
  flex-grow: calc(var(--weight) * var(--responsiveness, 1));
  flex-shrink: calc((100 - var(--weight)) * var(--responsiveness, 1));
  min-width: 0ch;
}
fieldset > *.large,
.fieldset > *.large {
  --weight: 100;
  min-width: calc(var(--responsiveness, 1) * 40ch);
}
fieldset > *.medium-large,
.fieldset > *.medium-large {
  --weight: 66.6;
  min-width: calc(var(--responsiveness, 1) * 20ch);
}
fieldset > *.intermedium,
.fieldset > *.intermedium {
  --weight: 75;
}
fieldset > *.medium,
.fieldset > *.medium {
  --weight: 50;
}
fieldset > *.third,
.fieldset > *.third,
fieldset > *.medium-small,
.fieldset > *.medium-small {
  --weight: 33.3;
  min-width: calc(var(--responsiveness, 1) * 20ch);
}
fieldset > *.small-medium,
.fieldset > *.small-medium {
  --weight: 37.5;
}
fieldset > *.small,
.fieldset > *.small {
  --weight: 25;
  min-width: calc(var(--responsiveness, 1) * 20ch);
}
fieldset > *.extra-small,
.fieldset > *.extra-small,
fieldset > *.mini,
.fieldset > *.mini {
  --weight: 12.5;
  min-width: calc(var(--responsiveness, 1) * 10ch);
}
fieldset > *.micro,
.fieldset > *.micro {
  --weight: 6.25;
  min-width: calc(var(--responsiveness, 1) * 10ch);
}
fieldset > *.size-4,
.fieldset > *.size-4 {
  --weight: 4.3;
}
fieldset > *.size-5,
.fieldset > *.size-5 {
  --weight: 5.8;
}
fieldset > *.size-6,
.fieldset > *.size-6 {
  --weight: 6.3;
}
fieldset > *.size-8,
.fieldset > *.size-8 {
  --weight: 8.3;
}
fieldset > *.size-10,
.fieldset > *.size-10 {
  --weight: 10;
}
fieldset > *.size-11,
.fieldset > *.size-11 {
  --weight: 11.66;
}
fieldset > *.size-14,
.fieldset > *.size-14 {
  --weight: 14.28;
}
fieldset > *.size-16,
.fieldset > *.size-16 {
  --weight: 16.6;
}
fieldset > *.size-20,
.fieldset > *.size-20 {
  --weight: 20;
}
fieldset > *.size-30,
.fieldset > *.size-30 {
  --weight: 30;
}
fieldset > *.size-33,
.fieldset > *.size-33 {
  --weight: 33.3;
}
fieldset > *.size-40,
.fieldset > *.size-40 {
  --weight: 40;
}
fieldset > *.size-50,
.fieldset > *.size-50 {
  --weight: 50;
}
fieldset > *.size-60,
.fieldset > *.size-60 {
  --weight: 60;
}
fieldset > *.size-66,
.fieldset > *.size-66 {
  --weight: 66.6;
}
fieldset > *.size-70,
.fieldset > *.size-70 {
  --weight: 70;
}
fieldset > *.size-80,
.fieldset > *.size-80 {
  --weight: 80;
}
fieldset > *.size-90,
.fieldset > *.size-90 {
  --weight: 90;
}
fieldset > *.size-100,
.fieldset > *.size-100 {
  --weight: 100;
}
fieldset > legend,
.fieldset > legend {
  padding: var(--spacing-minimum);
  padding-bottom: var(--spacing-separated);
  font-size: var(--font-size-big);
  color: var(--color-surface-mediumground);
}
form {
  display: contents;
}
form > header {
  display: grid;
  grid-template-columns: auto 1fr auto;
  padding: var(--spacing-separated);
  background-color: var(--color-contrast-background);
  border-radius: var(--spacing-minimum);
  width: 100%;
  box-shadow: 0 3px 3px var(--color-shadow);
}
form > header > title {
  display: inline-block;
  justify-self: start;
  align-self: center;
  font-size: var(--font-size-big);
  color: var(--color-contrast-foreground);
  align-items: center;
  text-align: center;
  padding-left: var(--spacing-separated);
}
form > header toolbar {
  justify-self: end;
  align-items: center;
  display: flex;
  justify-content: center;
  gap: 5px;
  --color-highlight-border: var(--color-highlight-foreground-inverted);
  --color-highlight-background: var(--color-highlight-foreground-inverted);
  --color-highlight-foreground: var(--color-highlight-background-inverted);
}
grid {
  --border-color: var(--color-surface-faded);
  display: table;
  border-collapse: collapse;
  table-layout: fixed;
  width: 100%;
  flex-basis: 100%;
}
grid.dynamic > columns > column > text {
  padding-right: 14px;
}
grid > columns {
  color: var(--color-surface-foreground);
  background-color: var(--color-surface-background);
  display: table-row;
}
grid > columns column {
  color: var(--color-surface-mediumground);
  font-weight: 500;
  border: 1px solid var(--border-color);
  display: table-cell;
  border-bottom-width: 2px;
  height: 32px;
  vertical-align: middle;
  user-select: none;
  overflow: visble;
  text-align: center;
}
grid > columns column.selector {
  overflow: hidden;
  text-align: center;
  width: 50px;
  padding-right: var(--spacing-minimum);
}
grid > columns column.selector input[type="checkbox"] {
  display: none;
}
grid > columns column.selector input[type="checkbox"] + label {
  display: inline-block;
  border: 1px solid var(--color-surface-faded);
  border-radius: 5px;
  width: 20px;
  height: 20px;
  cursor: pointer;
  min-height: auto;
}
grid > columns column.selector input[type="checkbox"]:checked + label {
  background-color: var(--color-highlight-foreground);
}
grid > columns column.selector input[type="checkbox"]:checked + label::before {
  content: '';
  position: absolute;
  display: inline-block;
  transform: translate(-50%, -50%) rotate(45deg);
  height: 8px;
  width: 4px;
  top: 50%;
  left: 50%;
  border-bottom: 3px solid var(--color-highlight-background);
  border-right: 3px solid var(--color-highlight-background);
}
grid > columns column.selector input[type="checkbox"]:indeterminate + label {
  background-color: var(--color-highlight-foreground);
}
grid > columns column.selector input[type="checkbox"]:indeterminate + label::before {
  content: '';
  display: inline-block;
  position: absolute;
  top: 50%;
  height: 0;
  left: 50%;
  width: 10px;
  margin-left: 0px;
  margin-top: 0;
  border-top: 3px solid var(--color-highlight-background);
  transform: translate(-50%, -50%);
}
grid > columns column > text {
  display: block;
  width: 100%;
  height: 100%;
  line-height: 32px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  padding: var(--spacing-minimum);
  min-width: 100%;
}
grid > columns column > text:hover {
  position: absolute;
  text-overflow: clip;
  overflow: visible;
  z-index: 1;
  background-color: var(--color-surface-background);
  width: fit-content;
  top: 0px;
  left: 0px;
  bottom: 0px;
  border-right: 1px solid var(--border-color);
}
grid > columns column.toolbar {
  overflow: hidden;
  cursor: pointer;
  text-align: center;
  width: 100px;
}
grid > columns column.toolbar:before {
  content: '';
}
grid > columns column.toolbar {
  cursor: default;
}
grid > columns column[class^='sort'] {
  cursor: pointer;
}
grid > columns column[class^='sort'] > text::before {
  content: "";
  position: absolute;
  top: 50%;
  right: 0px;
  transform: translateY(-50%);
  display: inline;
  text-align: center;
  width: 16px;
  height: 16px;
  font-family: 'Font Awesome 6 Free' !important;
  font-weight: 900;
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 16px;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
grid > columns column.sort > text:before {
  content: "\f0dc";
  color: var(--color-surface-faded);
}
grid > columns column.sort-up > text:before {
  content: "\f0de";
  color: var(--color-surface-mediumground);
}
grid > columns column.sort-down > text:before {
  content: "\f0dd";
  color: var(--color-surface-mediumground);
}
grid > columns column > handle {
  display: none;
  position: absolute;
  background-color: var(--border-color);
  width: 5px;
  height: auto;
  top: 0px;
  right: 0px;
  bottom: 0px;
  cursor: col-resize;
  z-index: 2;
}
grid > columns column:hover > handle {
  display: block;
  opacity: 0;
}
grid > columns column:hover > handle:hover {
  opacity: 1;
}
grid > row {
  display: table-row;
}
grid > row:nth-child(even) {
  background-color: var(--color-workspace-background);
}
grid > row value {
  border: 1px solid var(--border-color);
  display: table-cell;
  padding: var(--spacing-minimum);
  overflow: hidden;
  /*white-space: nowrap;*/
  vertical-align: middle;
}
grid > row value.selector {
  overflow: hidden;
  text-align: center;
  width: 50px;
}
grid > row value.selector input[type="checkbox"] {
  display: none;
}
grid > row value.selector input[type="checkbox"] + label {
  display: inline-block;
  border: 1px solid var(--color-surface-faded);
  border-radius: 5px;
  width: 20px;
  height: 20px;
  cursor: pointer;
  min-height: auto;
}
grid > row value.selector input[type="checkbox"]:checked + label {
  background-color: var(--color-highlight-foreground);
}
grid > row value.selector input[type="checkbox"]:checked + label::before {
  content: '';
  position: absolute;
  display: inline-block;
  transform: translate(-50%, -50%) rotate(45deg);
  height: 8px;
  width: 4px;
  top: 50%;
  left: 50%;
  border-bottom: 3px solid var(--color-highlight-background);
  border-right: 3px solid var(--color-highlight-background);
}
grid > row value.selector input[type="checkbox"]:indeterminate + label {
  background-color: var(--color-highlight-foreground);
}
grid > row value.selector input[type="checkbox"]:indeterminate + label::before {
  content: '';
  display: inline-block;
  position: absolute;
  top: 50%;
  height: 0;
  left: 50%;
  width: 10px;
  margin-left: 0px;
  margin-top: 0;
  border-top: 3px solid var(--color-highlight-background);
  transform: translate(-50%, -50%);
}
grid > row value.icon,
grid > row value.control {
  text-align: center;
}
grid > row value.percent,
grid > row value.quantity,
grid > row value.money,
grid > row value.count,
grid > row value.byte,
grid > row value.int8,
grid > row value.short,
grid > row value.int16,
grid > row value.number,
grid > row value.int,
grid > row value.int32 {
  text-align: right;
}
grid > row value.toolbar {
  text-align: right;
}
grid > row value > spreader {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
grid > columns > column,
grid > row > value {
  height: 32px;
  min-width: 16px;
  /*&.text
		{
			width: 30ch;
		}
		&.large
		{
			width: 60ch;
		}*/
  /*&.reference
		{
			width: 15ch;
		}
		&.date
		{
			width: 10ch;
		}
		&.datetime
		{
			width: 16ch;
		}
		&.icon
		{
			width: 15ch;
			text-align: center;
			&>.button
			{
				min-width: 8ch;
		}
		}*/
  /*&.short-number
		{
			width: 6ch;
	}
		&.digit
	{
			width: 4ch;
		}
		&.icon
		{
			width: 10ch;
			text-align: center;
			overflow: visible;
		}
		&.number
		{
			width: 10ch;
		}*/
}
grid > columns > column.expandable > span,
grid > row > value.expandable > span {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
grid > columns > column.toolbar,
grid > row > value.toolbar {
  width: 100px;
  text-align: center;
  overflow: visible;
}
grid > columns > column.toolbar > dropbutton > a,
grid > row > value.toolbar > dropbutton > a {
  border: none;
  color: inherit;
  font-weight: inherit;
}
grid > columns > column.toolbar > dropbutton > a:hover,
grid > row > value.toolbar > dropbutton > a:hover {
  color: inherit;
  background-color: inherit;
}
grid > columns > column.toolbar > dropbutton > a:last-of-type:after,
grid > row > value.toolbar > dropbutton > a:last-of-type:after {
  border-top-color: var(--color-surface-mediumground);
}
grid > footer {
  display: table-caption;
  caption-side: bottom;
  padding-top: var(--spacing-normal);
}
grid > footer > footerlayout {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: var(--spacing-normal);
}
grid > footer > footerlayout > pagination {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: flex-start;
  align-items: stretch;
  justify-items: stretch;
  align-content: stretch;
  gap: var(--spacing-normal);
  white-space: nowrap;
  align-items: center;
}
grid > footer > footerlayout > pageinfo {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: flex-start;
  align-items: stretch;
  justify-items: stretch;
  align-content: stretch;
  gap: var(--spacing-normal);
  white-space: nowrap;
  align-items: center;
}
grid > footer > footerlayout > navigation {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: flex-start;
  align-items: stretch;
  justify-items: stretch;
  align-content: stretch;
  gap: var(--spacing-normal);
  white-space: nowrap;
  align-items: center;
}
grid .toolbar.size-3 {
  width: 125px;
}
hr {
  display: block;
  border: none;
  height: 1px;
  background-color: var(--color-surface-faded);
}
hr.medium {
  height: 5px;
}
hr.large {
  height: 10px;
}
icon {
  /* use !important to prevent issues with browser extensions that change fonts */
  font-family: 'Font Awesome 6 Free' !important;
  font-weight: 900;
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  /* Better Font Rendering =========== */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-decoration: none;
}
icon {
  display: inline-block;
  text-align: center;
  padding: 0px;
  margin: 0px;
  width: 16px;
  height: 16px;
  /* use !important to prevent issues with browser extensions that change fonts */
  font-family: 'Font Awesome 6 Free' !important;
  font-weight: 900;
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 16px;
  font-size: 16px;
  /* Better Font Rendering =========== */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-decoration: none;
}
icon.big {
  font-size: 32px;
  width: 32px;
  height: 32px;
  line-height: 32px;
}
icon.round {
  border-radius: 50%;
  border-style: solid;
  border-width: 1px;
  font-size: 12px;
}
icon.mirror::before {
  transform: scaleX(-1);
}
icon.tooltip {
  color: var(--color-highlight-foreground);
}
icon[class^='fa-o']:before,
icon[class*=' fa-o']:before {
  position: absolute;
  top: 0px;
  left: 0px;
  height: 16px;
  width: 16px;
}
icon[class^='fa-o']:after,
icon[class*=' fa-o']:after {
  position: absolute;
  bottom: 0px;
  right: 0px;
  display: inline;
  text-align: center;
  font-family: 'Font Awesome 6 Free' !important;
  font-weight: 900;
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 10px;
  font-size: 10px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-shadow: -1px -1px 0px var(--color-shadow), -2px -2px 1px var(--color-shadow);
}
icon.round.big {
  font-size: 24px;
}
legend tooltip {
  margin-left: 10px;
  top: 2px;
}
tooltip {
  cursor: pointer;
  position: relative;
  display: inline-block;
  overflow: visible;
}
tooltip a:hover icon {
  color: white;
}
tooltip img {
  vertical-align: middle;
}
tooltip icon {
  color: var(--color-highlight-foreground);
}
tooltip.pull-left::before {
  transform: translateX(-75%);
}
tooltip.pull-right::before {
  transform: translateX(-25%);
}
tooltip .content {
  opacity: 0;
  visibility: hidden;
  font-size: 13px;
  display: inline-block;
  position: absolute;
  bottom: calc(100% + 5px);
  left: -100px;
  background-color: var(--color-highlight-foreground);
  border-radius: var(--spacing-normal);
  color: var(--color-highlight-background);
  padding: 10px;
  text-transform: none;
  text-align: left;
  box-shadow: 0px 1px 3px 0px var(--color-shadow-dark);
  transition: opacity 0.75s ease;
  min-width: 140px;
  z-index: 1000;
}
tooltip .content p {
  margin-bottom: 10px;
}
tooltip .content table {
  width: 100%;
  margin-bottom: 10px;
}
tooltip .content table td {
  text-align: center;
}
tooltip.medium .content {
  min-width: 140px;
  width: max-content;
}
tooltip.large .content {
  min-width: 140px;
  width: max-content;
  max-width: 500px;
}
tooltip::after {
  display: inline-block;
  position: absolute;
  top: -5px;
  left: calc(50% - 5px);
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-top: 5px solid var(--color-highlight-foreground);
  content: " ";
  font-size: 0px;
  line-height: 0px;
  width: 0px;
  height: 0px;
}
tooltip::after {
  visibility: hidden;
  opacity: 0;
  transition: opacity 0.75s ease;
  pointer-events: none;
  text-align: center;
  z-index: 1000;
}
tooltip:focus::after,
tooltip:hover::after,
tooltip:focus .content,
tooltip:hover .content {
  visibility: visible;
  opacity: 1;
}
label {
  display: grid;
  /*grid-template-columns: 1fr auto auto;
	grid-template-rows: auto 1fr auto;*/
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  /*grid-template-areas:
		"Label Label Label"
		"Input Unit Error"
		"Remark Remark Remark";*/
  justify-items: start;
  align-items: end;
  padding: var(--spacing-normal);
  white-space: nowrap;
  grid-gap: var(--spacing-normal);
  grid-auto-columns: auto;
  grid-auto-rows: auto;
  min-height: 61px;
}
label.bare {
  min-height: auto;
}
label > title {
  font-size: var(--font-size-small);
  color: var(--color-surface-mediumground);
  display: inline-block;
  grid-column-start: 1;
  grid-row-start: -3;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  width: 100%;
}
label > input,
label > select,
label > textarea,
label > skin,
label > p,
label > .uploadzone {
  grid-column-start: 1;
  grid-row-start: 1;
}
label > unit {
  grid-column-start: 2;
  grid-row-start: 1;
  align-self: center;
  font-size: var(--font-size-small);
  color: var(--color-surface-mediumground);
}
label.inline {
  min-height: auto;
  /*grid-template-columns: 1fr auto;
		grid-template-rows: auto ;
		column-gap: var(--spacing-normal);
		//column-gap: 10px;
		
		grid-template-areas:
			"Label Input";
		*/
}
label.inline > title {
  grid-column-start: -3;
  grid-row-start: 1;
  align-self: center;
}
label > remark {
  grid-column-start: 1;
  grid-row-start: 3;
  grid-column-end: -1;
  display: block;
  white-space: normal;
  font-size: var(--font-size-small);
}
label[errormessage]:hover::before {
  content: attr(errormessage);
  color: var(--color-surface-mediumground);
  font-size: var(--font-size-small);
  position: absolute;
  top: calc(100% - var(--spacing-normal));
  left: 0px;
  color: red;
  border: 1px solid var(--color-surface-faded);
  border-radius: var(--spacing-normal);
  box-shadow: 0px 1px 3px 0px var(--color-shadow-dark);
  background-color: var(--color-surface-background);
  z-index: 1;
  padding: var(--spacing-normal);
}
label[errormessage]::after {
  grid-column-start: 3;
  grid-row-start: 1;
  text-align: center;
  width: 16px;
  height: 16px;
  font-family: 'Font Awesome 6 Free' !important;
  font-weight: 900;
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 16px;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  content: '\f071';
  color: var(--color-danger);
  align-self: center;
}
form[readonly] label,
label[readonly],
label[disabled] {
  pointer-events: none;
}
.input,
input[type="text"],
input[type="email"],
input[type="password"],
input[type="date"],
input[type="datetime-local"],
input[type="time"],
input[type="number"],
input[type="search"],
select,
textarea,
.uploadzone {
  background-color: var(--color-surface-background);
  color: var(--color-surface-foreground);
  background-clip: padding-box;
  border: 1px solid var(--color-surface-faded);
  border-radius: var(--spacing-normal);
  padding: var(--spacing-normal);
  width: 100%;
  font-size: 1rem;
}
form[readonly] .input,
form[readonly] input[type="email"],
form[readonly] input[type="text"],
form[readonly] input[type="password"],
form[readonly] input[type="date"],
form[readonly] input[type="number"],
form[readonly] input[type="search"],
form[readonly] select[readonly],
.input[readonly],
input[type="text"]:read-only,
input[type="email"]:read-only,
input[type="password"]:read-only,
input[type="date"]:read-only,
input[type="number"]:read-only,
input[type="search"]:read-only,
select[readonly] {
  border-style: dashed;
}
textarea:read-only,
form[readonly] textarea {
  border-style: dashed;
}
input[type="number"] {
  text-align: right;
  -moz-appearance: textfield;
}
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
input[type="checkbox"] {
  margin: var(--spacing-normal);
  height: 1.5rem;
}
textarea {
  line-height: 1rem;
  height: calc(1rem * 6);
  resize: none;
}
input[type="checkbox"]:not(.nonSwitchType) {
  display: none;
}
input[type="checkbox"]:not(.nonSwitchType) + skin {
  display: block;
  cursor: pointer;
  background-color: var(--color-surface-faded);
  -webkit-transition: 0.4s;
  transition: 0.4s;
  line-height: 1.5rem;
  height: 1.5rem;
  width: 48px;
  border-radius: 1.5rem;
  align-self: center;
}
input[type="checkbox"]:not(.nonSwitchType) + skin:before {
  position: absolute;
  content: "";
  height: 1rem;
  width: 1rem;
  left: 0px;
  right: auto;
  top: 50%;
  transform: translateY(-50%) translateX(5px);
  background-color: white;
  -webkit-transition: 0.4s;
  transition: 0.4s;
  border-radius: 1.5rem;
}
input[type="checkbox"]:not(.nonSwitchType):checked + skin {
  background-color: var(--color-highlight-foreground);
}
input[type="checkbox"]:not(.nonSwitchType):checked + skin:before {
  -webkit-transform: translateY(-50%) translateX(29px);
  -ms-transform: translateY(-50%) translateX(29px);
  transform: translateY(-50%) translateX(29px);
}
form[readonly] input[type="checkbox"]:not(.nonSwitchType),
input[type="checkbox"]:not(.nonSwitchType)[readonly] {
  pointer-events: none;
}
form[readonly] input[type="checkbox"]:not(.nonSwitchType) + skin,
input[type="checkbox"]:not(.nonSwitchType)[readonly] + skin {
  background-color: var(--color-surface-background);
  border: 1px dashed var(--color-surface-faded);
}
form[readonly] input[type="checkbox"]:not(.nonSwitchType) + skin:before,
input[type="checkbox"]:not(.nonSwitchType)[readonly] + skin:before {
  background-color: var(--color-surface-faded);
}
form[readonly] input[type="checkbox"]:not(.nonSwitchType):checked + skin:before,
input[type="checkbox"]:not(.nonSwitchType)[readonly]:checked + skin:before {
  background-color: var(--color-highlight-foreground);
}
input[type="checkbox"].nonSwitchType {
  width: 20px;
  cursor: pointer;
  accent-color: var(--color-highlight-foreground);
}
/*
input[type="checkbox"][readonly]
{


}*/
select[multiple] + skin {
  background-color: var(--color-surface-background);
  color: var(--color-surface-foreground);
  background-clip: padding-box;
  border: 1px solid var(--color-surface-faded);
  border-radius: var(--spacing-normal);
  padding: var(--spacing-minimum);
  width: 100%;
  min-height: calc(1.5rem + (var(--spacing-normal) + var(--spacing-normal)));
  font-size: 1rem;
  display: inline-flex;
  gap: var(--spacing-minimum);
  overflow: hidden;
  flex-wrap: nowrap;
  justify-content: flex-start;
  align-items: stretch;
  align-content: flex-start;
  transition: max-height 0.1s linear;
  max-height: 1rem;
}
select[multiple] + skin pill {
  overflow: hidden;
  text-overflow: ellipsis;
  min-width: 6ch;
}
select[multiple] + skin:hover,
select[multiple] + skin.expanded {
  height: min-content;
  max-height: 10rem;
  flex-wrap: wrap;
  position: absolute;
  overflow-y: auto;
  top: 0px;
  animation: hide-scroll 0.1s backwards;
  z-index: 10;
  width: calc(100% - 5px);
}
select[multiple] + skin:hover pill,
select[multiple] + skin.expanded pill {
  overflow: visible;
  text-overflow: ellipsis;
}
@keyframes hide-scroll {
  from,
  to {
    overflow: hidden;
  }
}
form[readonly] select + skin,
select[readonly] + skin {
  border-style: dashed !important;
  pointer-events: none !important;
  touch-action: none !important;
}
select:not([multiple]) + skin {
  background-color: var(--color-surface-background);
  color: var(--color-surface-foreground);
  background-clip: padding-box;
  border: 1px solid var(--color-surface-faded);
  border-radius: var(--spacing-normal);
  padding: var(--spacing-normal);
  padding-right: calc(var(--spacing-normal) + 15px);
  width: 100%;
  display: inline-block;
  min-height: calc(1.5rem + (var(--spacing-normal) + var(--spacing-normal)));
  font-size: 1rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
select:not([multiple]) + skin:after {
  content: '';
  position: absolute;
  top: calc(50%);
  width: 0;
  height: 0;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-top: 5px solid var(--color-surface-faded);
  border-bottom: none;
  clear: both;
  transform: translateY(-50%);
  right: var(--spacing-normal);
}
input[type="file"] + skin {
  background-color: var(--color-surface-background);
  color: var(--color-surface-foreground);
  background-clip: padding-box;
  border: 1px solid var(--color-surface-faded);
  border-radius: var(--spacing-normal);
  padding: var(--spacing-normal);
  width: 100%;
  display: grid;
  min-height: calc(1.5rem + (var(--spacing-normal) + var(--spacing-normal)));
  font-size: 1rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  z-index: 1;
}
input[type="file"] + skin.expanded {
  height: 100px;
  position: absolute;
  top: 0px;
}
input[type="file"] + skin.expanded:after {
  content: "\f093";
  display: inline-block;
  ertical-align: middle;
  text-align: center;
  width: 32px;
  height: 32px;
  color: var(--color-surface-faded);
  /* use !important to prevent issues with browser extensions that change fonts */
  font-family: 'Font Awesome 6 Free' !important;
  font-weight: 900;
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 32px;
  font-size: 32px;
  padding: 0px;
  /* Better Font Rendering =========== */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translateX(-50%) translateY(-50%);
  z-index: -1;
}
input[type="file"] + skin progress {
  /* Reset the default appearance */
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border: none;
  width: 100%;
  height: 100%;
  color: var(--color-highlight-foreground);
}
input[type="file"] + skin progress::-webkit-progress-bar {
  background-color: var(--color-surface-background);
}
input[type="file"] + skin progress::-webkit-progress-value {
  background-color: var(--color-highlight-foreground);
}
input[type="file"] + skin progress::-moz-progress-bar {
  background-color: var(--color-highlight-foreground);
}
form[readonly] input[type="file"] + skin,
input[type="file"][readonly] + skin {
  border-style: dashed !important;
  pointer-events: none !important;
  touch-action: none !important;
}
input.enableafterload {
  border-style: solid!important;
}
.numeric-input {
  text-align: right;
}
itemlist {
  display: flex;
  background-color: var(--color-surface-background);
  color: var(--color-surface-foreground);
  background-clip: padding-box;
  border-radius: var(--spacing-normal);
  flex-direction: column;
  flex-wrap: nowrap;
  align-content: flex-start;
  align-items: stretch;
  justify-content: flex-start;
  width: 100%;
}
itemlist > item,
itemlist > .item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  align-content: flex-start;
  cursor: pointer;
  border: 1px solid transparent;
  display: block;
  padding: var(--spacing-minimum);
}
itemlist > item:hover,
itemlist > .item:hover {
  text-decoration: underline;
}
itemlist > item.selected,
itemlist > .item.selected {
  color: var(--color-highlight-background);
  background-color: var(--color-highlight-foreground);
  border-radius: var(--spacing-minimum);
}
itemlist > item.selected > span:before,
itemlist > .item.selected > span:before,
itemlist > item.selected > span:after,
itemlist > .item.selected > span:after {
  background-color: var(--color-highlight-background);
}
itemlist > item > span,
itemlist > .item > span {
  position: absolute;
  border: none;
  background-color: transparent;
  width: 15px;
  height: 10px;
  max-width: none;
  min-width: auto;
  padding: 0px;
  display: inline-grid;
  right: var(--spacing-normal);
  top: 50%;
  transform: translateY(-50%);
}
itemlist > item > span:before,
itemlist > .item > span:before {
  content: '';
  background-color: var(--color-surface-foreground);
  width: 2px;
  height: 100%;
  position: absolute;
  display: block;
  left: 50%;
  transform: rotate(45deg);
}
itemlist > item > span:after,
itemlist > .item > span:after {
  content: '';
  background-color: var(--color-surface-foreground);
  width: 2px;
  height: 100%;
  position: absolute;
  display: block;
  left: 50%;
  transform: rotate(-45deg);
}
menu {
  width: 100%;
  user-select: none;
  display: inline-grid;
  grid-template-columns: 1fr;
  grid-auto-rows: auto;
  justify-items: stretch;
  align-items: start;
  justify-content: stretch;
  align-content: start;
  background-color: var(--color-contrast-background);
  color: var(--color-contrast-foreground);
  scrollbar-width: var(--spacing-normal);
  scrollbar-color: var(--color-contrast-foreground);
}
menu::-webkit-scrollbar {
  width: var(--spacing-normal);
}
menu::-webkit-scrollbar-track {
  background: var(--color-contrast-background);
}
menu::-webkit-scrollbar-thumb {
  background: var(--color-contrast-foreground);
  border-radius: var(--spacing-normal);
}
menu > icon {
  justify-self: end;
  align-self: start;
  margin-right: 20px;
  cursor: pointer;
}
menu a {
  display: block;
  background: transparent;
  border: none;
  border-radius: 0px;
  padding: 0px;
  white-space: nowrap;
  cursor: pointer;
  text-transform: none;
  text-align: left;
  line-height: 1rem;
  min-height: 30px;
  line-height: 30px;
  padding-left: var(--spacing-separated);
  color: var(--color-contrast-foreground);
  text-shadow: 0 1px 2px var(--color-shadow-text);
}
menu a[class^='fa']:before,
menu a[class*=' fa']:before {
  display: inline-block;
  ertical-align: middle;
  text-align: center;
  width: 30px;
  height: 30px;
  /* use !important to prevent issues with browser extensions that change fonts */
  font-family: 'Font Awesome 6 Free' !important;
  font-weight: 900;
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 30px;
  font-size: 18px;
  padding: 0px;
  /* Better Font Rendering =========== */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
menu a:before {
  color: var(--color-contrast-foreground);
  margin-right: var(--spacing-normal);
  border-radius: 50%;
  text-shadow: 0 1px 2px var(--color-shadow-text);
}
menu a:hover {
  background-color: var(--color-highlight-foreground);
}
menu a.open {
  color: var(--color-highlight-background);
}
menu a.open:before {
  background-color: var(--color-highlight-background);
  color: var(--color-contrast-background);
  text-shadow: none;
}
menu > menu {
  max-height: 0px;
  transition: max-height 0.1s ease-in-out;
  display: block;
  overflow-x: hidden;
  overflow-y: auto;
}
menu > menu > a {
  padding-left: 45px;
}
menu > menu > a::before {
  content: '';
  border-left: 1px dashed var(--color-contrast-foreground);
  width: 14px;
  border-bottom: 1px dashed var(--color-contrast-foreground);
  display: block;
  position: absolute;
  height: 14px;
  left: 24px;
  border-radius: unset;
  top: 0px;
  background-color: transparent !important;
}
menu > menu > a::after {
  content: '';
  border-left: 1px dashed var(--color-contrast-foreground);
  width: 14px;
  display: block;
  position: absolute;
  height: 13px;
  left: 24px;
  border-radius: unset;
  top: 16px;
  background-color: transparent !important;
}
menu > menu > a:last-child::after {
  border-left: none;
}
menu.root {
  box-shadow: 3px 0px 3px 0px var(--color-surface-faded);
  padding-top: var(--spacing-separated);
  width: 55px;
  transition: width 0.1s ease-in-out;
  z-index: 999;
  overflow-x: hidden;
  position: absolute;
  height: 100%;
}
menu.root.expanded {
  position: static;
  width: 30ch;
  max-height: 100%;
}
menu.root.expanded a.open + menu,
menu.root.expanded a:active + menu,
menu.root.expanded a:focus + menu,
menu.root.expanded a:focus-within + menu,
menu.root.expanded menu:focus,
menu.root.expanded menu:focus-within,
menu.root.expanded menu:active {
  max-height: 100%;
  outline: none;
}
menu.root.expanded:not(:hover) a {
  color: var(--color-contrast-foreground);
  text-shadow: 0 1px 2px var(--color-shadow-text);
}
menu.root.expanded:not(:hover) a.open {
  color: var(--color-highlight-background);
}
menu.root > a {
  margin-top: var(--spacing-normal);
  transition: color 0.1s ease-in-out, text-shadow 0.1s ease-in-out;
  color: var(--color-contrast-foreground);
  text-shadow: 0 1px 2px var(--color-shadow-text);
}
menu.root > a.open {
  color: var(--color-highlight-background);
}
menu.root:hover {
  width: 30ch;
}
menu.root:hover a.open + menu,
menu.root:hover a:active + menu,
menu.root:hover a:focus + menu,
menu.root:hover a:focus-within + menu,
menu.root:hover menu:focus,
menu.root:hover menu:focus-within,
menu.root:hover menu:active {
  max-height: 100%;
  outline: none;
}
menu.root:not(:hover) a {
  color: var(--color-contrast-background);
  text-shadow: none;
}
modal {
  display: none;
}
backdrop {
  position: fixed;
  top: 0px;
  left: 0px;
  height: 100%;
  width: 100%;
  background-color: var(--color-shadow-dark);
  background: radial-gradient(circle, transparent, var(--color-shadow-dark) 100%);
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
}
backdrop > spinner {
  display: block;
  padding: var(--spacing-isolated);
  border-radius: var(--spacing-normal);
  background-color: var(--color-surface-background);
  width: 250px;
  text-align: center;
  box-shadow: 0px 10px 40px 10px var(--color-shadow-dark);
}
backdrop > spinner:before {
  content: " ";
  display: block;
  width: 64px;
  height: 64px;
  margin: 20px auto;
  border-radius: 50%;
  border-width: 6px;
  border-style: solid;
  border-color: var(--color-contrast-background) transparent var(--color-contrast-background) transparent;
  animation: lds-dual-ring 1.2s linear infinite;
}
backdrop modal {
  display: block;
  padding: var(--spacing-isolated);
  border-radius: var(--spacing-normal);
  background-color: var(--color-surface-background);
  color: var(--color-surface-foreground);
  min-width: 500px;
  font-size: var(--font-size-big);
  box-shadow: 0px 10px 40px 10px var(--color-shadow-dark);
}
backdrop modal.popup {
  padding: 0px;
  max-width: 90%;
  max-height: 90%;
  overflow: auto;
}
backdrop modal > toolbar {
  text-align: center;
  margin-top: 20px;
}
backdrop modal > toolbar.right {
  justify-content: flex-end;
}
backdrop modal > panel {
  font-size: 1rem;
  width: 100%;
}
backdrop modal > panel > header {
  padding: var(--spacing-normal);
}
backdrop modal > panel > header > title {
  font-size: 1rem;
}
backdrop modal > panel > header button,
backdrop modal > panel > header .button {
  padding: var(--spacing-normal);
  min-height: auto;
  grid-gap: var(--spacing-normal);
}
backdrop iframe {
  display: block;
  border-radius: var(--spacing-normal);
  background-color: var(--color-surface-background);
  transition: width 0.1s ease-in-out, height 0.1s ease-in-out;
  box-shadow: 0px 10px 40px 10px var(--color-shadow-dark);
}
body.modal {
  width: 100%;
  height: 100%;
  display: grid;
  padding: 5px;
  padding-top: 0px;
  margin-bottom: 5px;
}
body.modal::after {
  display: block;
  content: '';
  width: 100%;
  height: 0px;
  border-bottom: 1px solid var(--color-workspace-background);
}
body.modal.modal {
  display: flex;
  flex-direction: column;
  row-gap: var(--spacing-normal);
}
body.modal > header {
  padding: var(--spacing-normal);
  position: sticky;
  top: 0px;
  z-index: 1;
}
body.modal > header > title {
  font-size: 1em;
  diplay: inline-block;
}
body.modal > header button,
body.modal > header .button {
  padding: var(--spacing-normal);
  min-height: auto;
  grid-gap: var(--spacing-normal);
}
body.modal panel {
  height: max-content;
  min-height: 100%;
}
body.modal panel > header {
  padding: var(--spacing-normal);
}
body.modal panel > header > title {
  font-size: 1em;
  diplay: inline-block;
}
body.modal panel > header button,
body.modal panel > header .button {
  padding: var(--spacing-normal);
  min-height: auto;
  grid-gap: var(--spacing-normal);
}
body.modal form > header {
  margin-left: calc(0px - var(--spacing-normal));
  width: calc(var(--spacing-normal) * 2 + 100%);
  position: sticky;
  top: 0px;
  z-index: 1;
}
body.modal section:last-child {
  padding-bottom: 2rem;
}
@keyframes lds-dual-ring {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
panel {
  display: grid;
  align-self: start;
  grid-template-rows: auto 1fr auto auto;
  grid-template-areas: "header" "content" "info" "footer";
  color: var(--color-surface-foreground);
  background-color: var(--color-surface-background);
  box-shadow: 0 3px 3px var(--color-shadow);
  justify-items: stretch;
  align-items: stretch;
  justify-content: stretch;
  border-radius: var(--spacing-minimum);
  width: 100%;
  min-width: min-content;
}
panel.medium {
  width: 50%;
}
panel.large {
  width: 100%;
}
panel.small {
  width: 33%;
}
panel.extra-small {
  width: 25%;
}
panel > header {
  grid-area: header;
  display: grid;
  grid-template-columns: 1fr auto;
  padding: var(--spacing-separated);
  background-color: var(--color-contrast-background);
  border-top-left-radius: var(--spacing-minimum);
  border-top-right-radius: var(--spacing-minimum);
}
panel > header title {
  display: inline-block;
  justify-self: start;
  align-self: center;
  font-size: var(--font-size-big);
  color: var(--color-contrast-foreground);
  align-items: center;
  text-align: center;
  padding-left: var(--spacing-separated);
}
panel > header toolbar {
  justify-self: end;
  align-items: center;
  display: flex;
  justify-content: center;
  gap: 5px;
  --color-highlight-border: var(--color-highlight-foreground-inverted);
  --color-highlight-background: var(--color-highlight-foreground-inverted);
  --color-highlight-foreground: var(--color-highlight-background-inverted);
}
panel > content {
  grid-area: content;
  padding: var(--spacing-isolated);
  width: 100%;
  display: inline-flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-content: flex-start;
  justify-content: flex-start;
  align-items: flex-start;
}
panel > content:not(.static)::after {
  content: '';
  height: 0px;
  flex-basis: 25%;
  flex-grow: 100;
  flex-shrink: 0;
}
panel > content:not(.static) break {
  display: contents;
}
panel > content:not(.static) break::before {
  content: '';
  height: 0px;
  flex-basis: 25%;
  flex-grow: 100;
  flex-shrink: 0;
}
panel > content:not(.static) break::after {
  content: '';
  height: 0px;
  flex-basis: 100%;
  flex-grow: 100;
  flex-shrink: 0;
  width: 100%;
  min-width: 100%;
  max-width: 100%;
}
panel > content.static {
  --responsiveness: 0;
}
panel > content.static break {
  display: block;
  height: 0px;
  flex-basis: 100%;
  flex-grow: 100;
  flex-shrink: 0;
  width: 100%;
  min-width: 100%;
  max-width: 100%;
}
panel > content.static break.withspace {
  height: var(--spacing-isolated);
}
panel > content > * {
  --weight: 100;
  flex-basis: calc(var(--weight) * 1%);
  flex-grow: calc(var(--weight) * var(--responsiveness, 1));
  flex-shrink: calc((100 - var(--weight)) * var(--responsiveness, 1));
  min-width: 0ch;
}
panel > content > *.large {
  --weight: 100;
  min-width: calc(var(--responsiveness, 1) * 40ch);
}
panel > content > *.medium-large {
  --weight: 66.6;
  min-width: calc(var(--responsiveness, 1) * 20ch);
}
panel > content > *.intermedium {
  --weight: 75;
}
panel > content > *.medium {
  --weight: 50;
}
panel > content > *.third,
panel > content > *.medium-small {
  --weight: 33.3;
  min-width: calc(var(--responsiveness, 1) * 20ch);
}
panel > content > *.small-medium {
  --weight: 37.5;
}
panel > content > *.small {
  --weight: 25;
  min-width: calc(var(--responsiveness, 1) * 20ch);
}
panel > content > *.extra-small,
panel > content > *.mini {
  --weight: 12.5;
  min-width: calc(var(--responsiveness, 1) * 10ch);
}
panel > content > *.micro {
  --weight: 6.25;
  min-width: calc(var(--responsiveness, 1) * 10ch);
}
panel > content > *.size-4 {
  --weight: 4.3;
}
panel > content > *.size-5 {
  --weight: 5.8;
}
panel > content > *.size-6 {
  --weight: 6.3;
}
panel > content > *.size-8 {
  --weight: 8.3;
}
panel > content > *.size-10 {
  --weight: 10;
}
panel > content > *.size-11 {
  --weight: 11.66;
}
panel > content > *.size-14 {
  --weight: 14.28;
}
panel > content > *.size-16 {
  --weight: 16.6;
}
panel > content > *.size-20 {
  --weight: 20;
}
panel > content > *.size-30 {
  --weight: 30;
}
panel > content > *.size-33 {
  --weight: 33.3;
}
panel > content > *.size-40 {
  --weight: 40;
}
panel > content > *.size-50 {
  --weight: 50;
}
panel > content > *.size-60 {
  --weight: 60;
}
panel > content > *.size-66 {
  --weight: 66.6;
}
panel > content > *.size-70 {
  --weight: 70;
}
panel > content > *.size-80 {
  --weight: 80;
}
panel > content > *.size-90 {
  --weight: 90;
}
panel > content > *.size-100 {
  --weight: 100;
}
panel > content > warning {
  font-size: var(--font-size-big);
  flex-grow: 4;
  flex-shrink: 4;
  flex-basis: 100%;
}
panel > content > gridOptions {
  flex-grow: 1;
  flex-shrink: 0;
  flex-basis: 100%;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr auto;
  grid-template-areas: "gridsearch" "gridpills";
}
panel > content > gridOptions > gridsearch {
  padding-bottom: var(--spacing-separated);
  grid-area: gridsearch;
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: flex-start;
  align-content: center;
  align-items: flex-end;
  gap: 5px;
}
panel > content > gridOptions > gridsearch > label,
panel > content > gridOptions > gridsearch > label.medium {
  min-width: 20ch;
  width: 25%;
  max-width: 50%;
  padding: 0px;
}
panel > content > gridOptions > gridsearch > label.large {
  width: 50%;
  padding: 0px;
}
panel > content > gridOptions > gridsearch > label.small {
  width: 15%;
  padding: 0px;
}
panel > content > gridOptions > gridpills {
  grid-area: gridpills;
  display: flex;
  padding-bottom: var(--spacing-separated);
  flex-grow: 1;
  flex-shrink: 0;
  flex-basis: 100%;
  flex-wrap: wrap;
  gap: 5px;
}
panel > content > gridOptions > gridadvanced {
  flex-grow: 1;
  flex-shrink: 0;
  flex-basis: 100%;
  display: inline-flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-content: flex-start;
  align-items: flex-end;
  padding-bottom: var(--spacing-separated);
  /*min-width: 20ch;*/
}
panel > content > gridOptions > gridadvanced > label,
panel > content > gridOptions > gridadvanced > label.medium {
  /*flex-grow: 1;*/
  flex-shrink: 1;
  flex-basis: 40%;
  min-width: 20ch;
  /*width: 50%;
					max-width: 50%;*/
}
panel > content > gridOptions > gridadvanced > label.large {
  flex-grow: 4;
  flex-shrink: 4;
  flex-basis: 100%;
}
panel > content > gridOptions > gridadvanced > label.small {
  flex-grow: 0;
  flex-shrink: 1;
  flex-basis: 10%;
  min-width: 30ch;
}
panel > content > gridOptions > gridadvanced > button {
  margin: var(--spacing-minimum);
}
panel > content > grid {
  flex-grow: 1;
  flex-shrink: 0;
  flex-basis: 100%;
}
panel > info {
  grid-area: info;
  padding: var(--spacing-isolated);
  padding-top: 0px;
}
panel > footer {
  grid-area: footer;
  background-color: var(--color-surface-background);
  display: grid;
  align-items: center;
  padding: var(--spacing-separated);
}
panel > footer toolbar {
  display: flex;
  justify-content: flex-end;
  align-items: center;
}
panel.traducoes {
  min-height: 205px;
}
panel.traducoes > content {
  align-content: center;
}
pillbox {
  display: inline-flex;
  flex-wrap: wrap;
  gap: var(--spacing-minimum);
}
pill {
  display: inline;
  border: none;
  background-color: var(--color-surface-faded);
  color: var(--color-surface-foreground);
  border-radius: var(--spacing-minimum);
  padding: var(--spacing-minimum) var(--spacing-normal);
}
pill > a,
pill > button {
  min-height: auto;
  border: none;
  background-color: transparent;
  width: 15px;
  height: 10px;
  max-width: none;
  min-width: auto;
  padding: 0px;
  display: inline-grid;
}
pill > a:before,
pill > button:before {
  content: '';
  background-color: var(--color-surface-foreground);
  width: 2px;
  height: 100%;
  position: absolute;
  display: block;
  left: 50%;
  transform: rotate(45deg);
}
pill > a:after,
pill > button:after {
  content: '';
  background-color: var(--color-surface-foreground);
  width: 2px;
  height: 100%;
  position: absolute;
  display: block;
  left: 50%;
  transform: rotate(-45deg);
}
pill > a:hover,
pill > button:hover {
  background-color: transparent;
}
pill.error {
  background-color: var(--color-warning);
}
splitbutton {
  user-select: none;
  display: inline-grid;
  grid-template-columns: 1fr auto;
}
splitbutton > .button,
splitbutton > button {
  border-top-right-radius: 0px;
  border-bottom-right-radius: 0px;
  gap: var(--spacing-normal);
  grid-auto-columns: auto;
}
splitbutton > .button.main,
splitbutton > button.main {
  border-right-color: var(--color-highlight-background);
}
splitbutton > .button:last-child,
splitbutton > button:last-child {
  border-top-right-radius: var(--spacing-normal);
  border-bottom-right-radius: var(--spacing-normal);
}
splitbutton > .droptrigger {
  gap: var(--spacing-normal);
  grid-auto-columns: auto;
  border-left: none;
  border-top-left-radius: 0px;
  border-bottom-left-radius: 0px;
  border-top-right-radius: var(--spacing-normal);
  border-bottom-right-radius: var(--spacing-normal);
  border-right-color: var(--color-highlight-foreground) !important;
}
splitbutton > .droptrigger:after {
  content: '';
  justify-self: end;
  align-self: center;
  width: 0;
  height: 0;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-top: 5px solid currentcolor;
  border-bottom: none;
}
splitbutton.open > .droptrigger {
  color: var(--color-highlight-background);
  background-color: var(--color-highlight-foreground);
}
splitbutton.open > .droptrigger:after {
  border-bottom: 5px solid currentcolor;
  border-top: none;
}
splitbutton > droplayer {
  display: none;
}
section {
  display: grid;
  align-self: start;
  grid-template-rows: auto 1fr auto auto;
  grid-template-areas: "header" "content" "info" "footer";
  color: var(--color-surface-foreground);
  background-color: var(--color-surface-background);
  box-shadow: 0 3px 3px var(--color-shadow);
  justify-items: stretch;
  align-items: stretch;
  justify-content: stretch;
  border-radius: var(--spacing-minimum);
  width: 100%;
  min-width: min-content;
}
section > header {
  grid-area: header;
  display: grid;
  grid-template-columns: auto auto 1fr;
  padding: var(--spacing-separated);
  border-top-left-radius: var(--spacing-minimum);
  border-top-right-radius: var(--spacing-minimum);
  grid-template-areas: "title tooltip toolbar";
  column-gap: var(--spacing-minimum);
}
section > header tooltip {
  grid-area: tooltip;
  justify-self: center;
  align-self: center;
}
section > header title {
  grid-area: title;
  display: inline-block;
  justify-self: start;
  align-self: center;
  font-size: var(--font-size-big);
  color: var(--color-contrast-foreground);
  align-items: center;
  text-align: center;
}
section > header toolbar {
  grid-area: toolbar;
  justify-self: end;
  align-items: center;
  display: flex;
  justify-content: center;
  gap: 5px;
}
section > content {
  grid-area: content;
  padding: var(--spacing-separated);
  width: 100%;
  display: inline-flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-content: flex-start;
  justify-content: flex-start;
  align-items: flex-start;
}
section > content:not(.static)::after {
  content: '';
  height: 0px;
  flex-basis: 25%;
  flex-grow: 100;
  flex-shrink: 0;
}
section > content:not(.static) break {
  display: contents;
}
section > content:not(.static) break::before {
  content: '';
  height: 0px;
  flex-basis: 25%;
  flex-grow: 100;
  flex-shrink: 0;
}
section > content:not(.static) break::after {
  content: '';
  height: 0px;
  flex-basis: 100%;
  flex-grow: 100;
  flex-shrink: 0;
  width: 100%;
  min-width: 100%;
  max-width: 100%;
}
section > content.static {
  --responsiveness: 0;
}
section > content.static break {
  display: block;
  height: 0px;
  flex-basis: 100%;
  flex-grow: 100;
  flex-shrink: 0;
  width: 100%;
  min-width: 100%;
  max-width: 100%;
}
section > content.static break.withspace {
  height: var(--spacing-isolated);
}
section > content > * {
  --weight: 100;
  flex-basis: calc(var(--weight) * 1%);
  flex-grow: calc(var(--weight) * var(--responsiveness, 1));
  flex-shrink: calc((100 - var(--weight)) * var(--responsiveness, 1));
  min-width: 0ch;
}
section > content > *.large {
  --weight: 100;
  min-width: calc(var(--responsiveness, 1) * 40ch);
}
section > content > *.medium-large {
  --weight: 66.6;
  min-width: calc(var(--responsiveness, 1) * 20ch);
}
section > content > *.intermedium {
  --weight: 75;
}
section > content > *.medium {
  --weight: 50;
}
section > content > *.third,
section > content > *.medium-small {
  --weight: 33.3;
  min-width: calc(var(--responsiveness, 1) * 20ch);
}
section > content > *.small-medium {
  --weight: 37.5;
}
section > content > *.small {
  --weight: 25;
  min-width: calc(var(--responsiveness, 1) * 20ch);
}
section > content > *.extra-small,
section > content > *.mini {
  --weight: 12.5;
  min-width: calc(var(--responsiveness, 1) * 10ch);
}
section > content > *.micro {
  --weight: 6.25;
  min-width: calc(var(--responsiveness, 1) * 10ch);
}
section > content > *.size-4 {
  --weight: 4.3;
}
section > content > *.size-5 {
  --weight: 5.8;
}
section > content > *.size-6 {
  --weight: 6.3;
}
section > content > *.size-8 {
  --weight: 8.3;
}
section > content > *.size-10 {
  --weight: 10;
}
section > content > *.size-11 {
  --weight: 11.66;
}
section > content > *.size-14 {
  --weight: 14.28;
}
section > content > *.size-16 {
  --weight: 16.6;
}
section > content > *.size-20 {
  --weight: 20;
}
section > content > *.size-30 {
  --weight: 30;
}
section > content > *.size-33 {
  --weight: 33.3;
}
section > content > *.size-40 {
  --weight: 40;
}
section > content > *.size-50 {
  --weight: 50;
}
section > content > *.size-60 {
  --weight: 60;
}
section > content > *.size-66 {
  --weight: 66.6;
}
section > content > *.size-70 {
  --weight: 70;
}
section > content > *.size-80 {
  --weight: 80;
}
section > content > *.size-90 {
  --weight: 90;
}
section > content > *.size-100 {
  --weight: 100;
}
section > content > warning {
  font-size: var(--font-size-big);
  --weight: 100;
  padding: var(--spacing-normal);
}
section > content > gridOptions {
  flex-grow: 1;
  flex-shrink: 0;
  flex-basis: 100%;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr auto;
  grid-template-areas: "gridsearch" "gridpills";
}
section > content > gridOptions > gridsearch {
  padding-bottom: var(--spacing-separated);
  grid-area: gridsearch;
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: flex-start;
  align-content: center;
  align-items: flex-end;
  gap: 5px;
}
section > content > gridOptions > gridsearch > label,
section > content > gridOptions > gridsearch > label.medium {
  min-width: 20ch;
  width: 25%;
  max-width: 50%;
}
section > content > gridOptions > gridsearch > label.large {
  width: 50%;
}
section > content > gridOptions > gridsearch > label.small {
  width: 15%;
}
section > content > gridOptions > gridsearch > toolbar {
  padding: var(--spacing-normal);
}
section > content > gridOptions > gridpills {
  grid-area: gridpills;
  display: flex;
  padding-bottom: var(--spacing-separated);
  flex-grow: 1;
  flex-shrink: 0;
  flex-basis: 100%;
  flex-wrap: wrap;
  gap: 5px;
}
section > content > gridOptions > gridadvanced {
  flex-grow: 1;
  flex-shrink: 0;
  flex-basis: 100%;
  display: inline-flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-content: flex-start;
  align-items: flex-end;
  padding-bottom: var(--spacing-separated);
  /*min-width: 20ch;*/
}
section > content > gridOptions > gridadvanced > label,
section > content > gridOptions > gridadvanced > label.medium {
  /*flex-grow: 1;*/
  flex-shrink: 1;
  flex-basis: 40%;
  min-width: 20ch;
  /*width: 50%;
					max-width: 50%;*/
}
section > content > gridOptions > gridadvanced > label.large {
  flex-grow: 4;
  flex-shrink: 4;
  flex-basis: 100%;
}
section > content > gridOptions > gridadvanced > label.small {
  flex-grow: 0;
  flex-shrink: 1;
  flex-basis: 10%;
  min-width: 30ch;
}
section > content > gridOptions > gridadvanced > button {
  margin: var(--spacing-minimum);
}
section > content > gridsearch {
  flex-grow: 1;
  flex-shrink: 0;
  flex-basis: 100%;
  padding-bottom: var(--spacing-separated);
  grid-area: gridsearch;
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: flex-start;
  align-content: center;
  align-items: flex-end;
  gap: 5px;
}
section > content > gridsearch > label,
section > content > gridsearch > label.medium {
  min-width: 20ch;
  width: 25%;
  max-width: 50%;
}
section > content > gridsearch > label.large {
  width: 50%;
}
section > content > gridsearch > label.small {
  width: 15%;
}
section > content > gridsearch > toolbar {
  padding: var(--spacing-normal);
}
section > content gridpills {
  grid-area: gridpills;
  display: flex;
  padding-bottom: var(--spacing-separated);
  flex-grow: 1;
  flex-shrink: 0;
  flex-basis: 100%;
  flex-wrap: wrap;
  gap: 5px;
}
section > content > grid {
  flex-grow: 1;
  flex-shrink: 0;
  flex-basis: 100%;
}
section > info {
  grid-area: info;
  padding: var(--spacing-isolated);
  padding-top: 0px;
}
section > footer {
  grid-area: footer;
  background-color: var(--color-surface-background);
  display: grid;
  align-items: center;
  padding: var(--spacing-separated);
}
section > footer toolbar {
  display: flex;
  justify-content: flex-end;
  align-items: center;
}
section.traducoes {
  min-height: 205px;
}
section.traducoes > content {
  align-content: center;
}
tabs {
  display: inline-grid;
  grid-auto-flow: column;
  grid-auto-rows: auto 1px 1fr;
  grid-template-columns: repeat(auto-fit, minmax(20ch, 1fr)) [end];
  margin-top: 20px;
  margin-bottom: 20px;
}
tabs > input[type="radio"] {
  display: none;
}
tabs > input[type="radio"]:checked + tabtitle {
  border-bottom: 2px solid var(--color-highlight-foreground);
}
tabs > input[type="radio"]:checked + tabtitle + tabcontent {
  display: inline-flex;
}
tabs::before {
  content: '';
  height: 1px;
  background-color: var(--color-surface-faded);
  grid-row-start: 2;
  grid-row-end: 2;
  grid-column-start: 1;
  grid-column-end: span end;
}
tabs > tabtitle {
  grid-row-start: 1;
  grid-row-end: 1;
  padding: 0px;
  font-size: var(--font-size-big);
  color: var(--color-surface-mediumground);
  border-bottom: 2px solid transparent;
}
tabs > tabtitle:hover {
  color: var(--color-highlight-foreground);
  border-bottom: 2px solid var(--color-surface-mediumground);
}
tabs > tabtitle label {
  display: block;
  color: inherit;
  font-size: inherit;
  padding: var(--spacing-normal);
  padding-bottom: var(--spacing-separated);
  white-space: nowrap;
  cursor: pointer;
}
tabs > tabcontent {
  grid-row-start: 3;
  grid-row-end: 3;
  grid-column-start: 1;
  grid-column-end: span end;
  display: inline-flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-content: flex-start;
  justify-content: flex-start;
  align-items: flex-start;
  display: none;
  padding-top: 10px;
  padding-bottom: 10px;
}
tabs > tabcontent:not(.static)::after {
  content: '';
  height: 0px;
  flex-basis: 25%;
  flex-grow: 100;
  flex-shrink: 0;
}
tabs > tabcontent:not(.static) break {
  display: contents;
}
tabs > tabcontent:not(.static) break::before {
  content: '';
  height: 0px;
  flex-basis: 25%;
  flex-grow: 100;
  flex-shrink: 0;
}
tabs > tabcontent:not(.static) break::after {
  content: '';
  height: 0px;
  flex-basis: 100%;
  flex-grow: 100;
  flex-shrink: 0;
  width: 100%;
  min-width: 100%;
  max-width: 100%;
}
tabs > tabcontent.static {
  --responsiveness: 0;
}
tabs > tabcontent.static break {
  display: block;
  height: 0px;
  flex-basis: 100%;
  flex-grow: 100;
  flex-shrink: 0;
  width: 100%;
  min-width: 100%;
  max-width: 100%;
}
tabs > tabcontent.static break.withspace {
  height: var(--spacing-isolated);
}
tabs > tabcontent > * {
  --weight: 100;
  flex-basis: calc(var(--weight) * 1%);
  flex-grow: calc(var(--weight) * var(--responsiveness, 1));
  flex-shrink: calc((100 - var(--weight)) * var(--responsiveness, 1));
  min-width: 0ch;
}
tabs > tabcontent > *.large {
  --weight: 100;
  min-width: calc(var(--responsiveness, 1) * 40ch);
}
tabs > tabcontent > *.medium-large {
  --weight: 66.6;
  min-width: calc(var(--responsiveness, 1) * 20ch);
}
tabs > tabcontent > *.intermedium {
  --weight: 75;
}
tabs > tabcontent > *.medium {
  --weight: 50;
}
tabs > tabcontent > *.third,
tabs > tabcontent > *.medium-small {
  --weight: 33.3;
  min-width: calc(var(--responsiveness, 1) * 20ch);
}
tabs > tabcontent > *.small-medium {
  --weight: 37.5;
}
tabs > tabcontent > *.small {
  --weight: 25;
  min-width: calc(var(--responsiveness, 1) * 20ch);
}
tabs > tabcontent > *.extra-small,
tabs > tabcontent > *.mini {
  --weight: 12.5;
  min-width: calc(var(--responsiveness, 1) * 10ch);
}
tabs > tabcontent > *.micro {
  --weight: 6.25;
  min-width: calc(var(--responsiveness, 1) * 10ch);
}
tabs > tabcontent > *.size-4 {
  --weight: 4.3;
}
tabs > tabcontent > *.size-5 {
  --weight: 5.8;
}
tabs > tabcontent > *.size-6 {
  --weight: 6.3;
}
tabs > tabcontent > *.size-8 {
  --weight: 8.3;
}
tabs > tabcontent > *.size-10 {
  --weight: 10;
}
tabs > tabcontent > *.size-11 {
  --weight: 11.66;
}
tabs > tabcontent > *.size-14 {
  --weight: 14.28;
}
tabs > tabcontent > *.size-16 {
  --weight: 16.6;
}
tabs > tabcontent > *.size-20 {
  --weight: 20;
}
tabs > tabcontent > *.size-30 {
  --weight: 30;
}
tabs > tabcontent > *.size-33 {
  --weight: 33.3;
}
tabs > tabcontent > *.size-40 {
  --weight: 40;
}
tabs > tabcontent > *.size-50 {
  --weight: 50;
}
tabs > tabcontent > *.size-60 {
  --weight: 60;
}
tabs > tabcontent > *.size-66 {
  --weight: 66.6;
}
tabs > tabcontent > *.size-70 {
  --weight: 70;
}
tabs > tabcontent > *.size-80 {
  --weight: 80;
}
tabs > tabcontent > *.size-90 {
  --weight: 90;
}
tabs > tabcontent > *.size-100 {
  --weight: 100;
}
.grid {
  /*table-layout:fixed;*/
  width: 100%;
  flex-basis: 100%;
  border-collapse: separate;
  border-spacing: 0;
}
.grid th,
.grid td {
  border: none !important;
  border-right: 1px solid #cccccc87 !important;
  border-bottom: 1px solid #cccccc87 !important;
}
.grid tr:first-child th,
.grid tr:first-child td {
  border-top: 1px solid #cccccc87 !important;
}
.grid th:first-child,
.grid td:first-child {
  border-left: 1px solid #cccccc87 !important;
}
.grid > thead > tr {
  color: var(--color-surface-foreground);
  background-color: var(--color-surface-background);
}
.grid > thead > tr th {
  color: var(--color-surface-mediumground);
  font-weight: 500;
  display: table-cell;
  padding: var(--spacing-minimum);
  border-bottom-width: 2px;
  height: 32px;
  vertical-align: middle;
  user-select: none;
  overflow: hidden;
  text-align: center;
}
.grid > thead > tr th.toolbar {
  overflow: visible;
  text-align: center;
  width: 100px;
}
.grid > thead > tr th.toolbar:before {
  content: '';
}
.grid > thead > tr th.toolbar dropbutton {
  cursor: pointer;
  width: auto;
}
.grid > thead > tr th.toolbar.fa-sort {
  cursor: default;
}
.grid > thead > tr th[class^='fa'] {
  cursor: pointer;
}
.grid > thead > tr th[class^='fa']::before {
  position: absolute;
  top: 50%;
  right: 0px;
  transform: translateY(-50%);
  display: inline;
  vertical-align: text-bottom;
  text-align: center;
  width: 16px;
  height: 16px;
  font-family: 'Font Awesome 6 Free' !important;
  font-weight: 900;
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 16px;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  background-color: #fff;
}
.grid > thead > tr th.fa-sort:before {
  color: var(--color-surface-faded);
}
.grid > thead > tr th.fa-sort-up:before {
  color: var(--color-surface-mediumground);
}
.grid > thead > tr th.fa-sort-down:before {
  color: var(--color-surface-mediumground);
}
.grid > tbody tr {
  display: table-row;
  /*&:nth-child(even)
			{
			background-color: var(--color-workspace-background);
		}*/
}
.grid > tbody tr.summary {
  background-color: #f3f3f3;
  font-weight: bold;
}
.grid > tbody tr.strike {
  color: var(--color-surface-foreground);
  background-color: var(--color-warning);
}
.grid > tbody tr td {
  border: 1px solid #cccccc87;
  display: table-cell;
  padding: var(--spacing-minimum);
  overflow: hidden;
  /*white-space: nowrap;*/
  height: 32px;
}
.grid > tbody tr td.number {
  text-align: right;
}
.grid > tbody tr td.toolbar {
  text-align: right;
}
.grid > tbody tr td.invalid {
  font-weight: bold;
  text-decoration: underline;
  overflow: visible;
}
.grid > tbody tr td.strike {
  color: var(--color-surface-foreground);
  background-color: var(--color-warning);
}
.grid > thead > tr > th,
.grid > tbody > tr > td {
  height: 32px;
  vertical-align: middle;
}
.grid > thead > tr > th > spreader,
.grid > tbody > tr > td > spreader {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.grid > thead > tr > th.text,
.grid > tbody > tr > td.text {
  width: 30ch;
}
.grid > thead > tr > th.large,
.grid > tbody > tr > td.large {
  width: 60ch;
}
.grid > thead > tr > th.reference,
.grid > tbody > tr > td.reference {
  width: 15ch;
}
.grid > thead > tr > th.date,
.grid > tbody > tr > td.date {
  width: 10ch;
}
.grid > thead > tr > th.icon,
.grid > tbody > tr > td.icon {
  width: 15ch;
  text-align: center;
  overflow: visible;
}
.grid > thead > tr > th.icon label,
.grid > tbody > tr > td.icon label {
  display: inline-grid;
}
.grid > thead > tr > th.short-number,
.grid > tbody > tr > td.short-number {
  width: 6ch;
}
.grid > thead > tr > th.icon,
.grid > tbody > tr > td.icon {
  width: 6ch;
}
.grid > thead > tr > th.number,
.grid > tbody > tr > td.number {
  width: 10ch;
}
.grid > thead > tr > th.toolbar,
.grid > tbody > tr > td.toolbar {
  min-width: 120px;
  text-align: center;
}
.grid > footer {
  display: table-caption;
  caption-side: bottom;
  padding-top: var(--spacing-normal);
}
.grid > footer pagination {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: flex-start;
  align-items: stretch;
  justify-items: stretch;
  align-content: stretch;
  gap: var(--spacing-normal);
}
.grid tr.diff-op-I {
  background-color: #DDFFDD !important;
}
.grid tr.diff-op-D {
  background-color: #FEE8E9 !important;
}
.grid tr.diff-op-U.source {
  background-color: #FFF3DD !important;
}
.grid tr.diff-op-U.target {
  background-color: #FFF3DD !important;
}
.grid.solid tr:nth-child(even) {
  background-color: transparent;
}
.grid.solid tr td.bold {
  font-weight: bold;
}
toastlist {
  position: fixed;
  flex-direction: column;
  flex-wrap: nowrap;
  align-content: stretch;
  justify-content: flex-end;
  align-items: center;
  display: flex;
  bottom: var(--spacing-isolated);
  right: var(--spacing-isolated);
  width: min-content;
  height: min-content;
  gap: var(--spacing-isolated);
  animation: toastlist-timedhide 0s ease-out 11s both;
}
toastlist > toast {
  color: var(--color-surface-background);
  background-color: var(--color-success);
  display: grid;
  min-width: 400px;
  box-shadow: 0px 0px 10px 3px var(--color-shadow);
  grid-template-columns: auto 1fr;
  justify-items: start;
  align-items: center;
  min-height: 3rem;
  gap: var(--spacing-isolated);
  padding: var(--spacing-isolated);
  border-radius: var(--spacing-normal);
  animation: toast-timedfade 1s ease-out 10s both;
}
toastlist > toast > icon {
  justify-self: center;
  align-self: center;
}
toastlist > toast.warning {
  background-color: var(--color-warning) !important;
}
@keyframes toast-timedfade {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
@keyframes toastlist-timedhide {
  100% {
    width: 0px;
    height: 0px;
    bottom: auto;
    right: auto;
    top: 0px;
    left: 0px;
  }
}
toolbar {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: center;
  gap: var(--spacing-normal);
}
warning {
  background: #dc35451f;
  display: block;
  padding: var(--spacing-normal);
  width: 100%;
  border: 1px solid currentColor;
  color: var(--color-danger);
  border-radius: var(--spacing-minimum);
}
* {
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  margin: 0px;
  padding: 0px;
  border: 0px;
  outline: 0px;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
  font-weight: inherit;
  font-size: inherit;
  vertical-align: baseline;
  background: transparent;
  position: relative;
  color: inherit;
  text-decoration: none;
  line-height: initial;
  /* Better Font Rendering =========== */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
html {
  height: 100%;
  color: var(--color-workspace-foreground);
  background-color: var(--color-workspace-background);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
  font-size: var(--font-size-normal);
}
b {
  font-weight: bold;
}
.hidden {
  display: none!important;
}
.dashboard-header {
  padding: 50px 0;
  text-align: center;
}
dashboard {
  display: grid;
  align-self: center;
  justify-self: center;
}
dashboard-buttons {
  display: inline-grid;
  grid-template-columns: repeat(5, 1fr);
}
dashboard-buttons a.button {
  width: 130px;
  height: 130px;
  margin: var(--spacing-normal) var(--spacing-separated) var(--spacing-separated) var(--spacing-normal);
  background-color: white;
  border: 1px solid var(--color-highlight-foreground);
  border-radius: var(--spacing-normal);
  text-transform: uppercase;
  text-decoration: none;
  grid-auto-flow: row;
  align-items: start;
  grid-template-rows: 1fr 1fr;
  white-space: normal;
  text-align: center;
}
dashboard-buttons a.button:hover {
  background-color: var(--color-contrast-background);
}
dashboard-buttons a.button icon {
  align-self: end;
  align-items: start;
  font-size: 24px;
  width: 24px;
  height: 24px;
  line-height: 24px;
}
body.dashboard workspace {
  align-content: center;
}
datas-audit {
  width: 100%;
  display: flex;
  flex-direction: row;
  padding-left: 10px;
  padding-right: 10px;
}
datas-audit data {
  margin-right: 30px;
}
datas-audit data:last-of-type {
  margin-right: 0!important;
}
info a:hover {
  text-decoration: underline;
}
.infoPassword {
  display: block;
  font-size: var(--font-size-small);
  color: var(--color-surface-mediumground);
  text-align: left;
}
.infoPassword b {
  font-weight: bold;
}
body.traducoes-list workspace {
  grid-template-columns: 1fr 1fr;
}
.no-border {
  border: none!important;
}
.font-size-20 {
  font-size: 20px;
}
.alerta-traducoes-falta {
  border-bottom: 2px solid var(--color-highlight-foreground);
  margin-bottom: 20px;
  padding-bottom: 5px;
}
.margin-top-20 {
  margin-top: 20px;
}
channel {
  width: 100%;
  flex-basis: 100%;
  flex-grow: 100;
  flex-shrink: 0;
}
overflow {
  position: fixed;
  padding: var(--spacing-minimum);
  background-color: var(--color-surface-background);
  border: 1px solid #cccccc87;
  box-shadow: 0 2px 6px 0px #777;
  padding: 5px;
  z-index: 10000;
  pointer-events: none;
}
.no-margin-top {
  margin-top: 0!important;
}
.no-padding-top {
  padding-top: 0!important;
}
.extraHeight {
  height: 250px;
}
.overflow-visible {
  overflow: visible!important;
}
label.switch-add-artigo {
  justify-items: center;
}
.tooltipSendEmail:before {
  left: -100px !important;
}
systray > clock {
  display: inline-flex;
  align-content: center;
  justify-content: center;
  align-items: center;
  flex-wrap: nowrap;
  flex-direction: row;
  gap: 5px;
  min-height: 32px;
}
.fa-user-doctor:before {
  content: "\f0f0";
}
.fa-wharehouse:before {
  content: "\f494";
}
section.sticky {
  align-self: start;
  position: sticky;
  top: 0px;
  z-index: 1;
  /*&>content
	{
		position: sticky;
		top:0px;
	}*/
}
table.sticky thead {
  position: sticky;
  top: 141px;
  z-index: 2;
  box-shadow: -10px 0px 0px 0px #ffff, 10px 0px 0px 0px #ffff;
}
table.sticky thead > tr > th {
  box-shadow: inset 0px -1px 0px 0px #cccccc87;
}
highlight {
  display: inline;
  color: var(--color-highlight-foreground);
  font-weight: bold;
}
table.agendamentoresume {
  border-collapse: collapse;
  min-width: auto;
  flex-basis: 100%;
  margin-top: var(--spacing-isolated);
}
table.agendamentoresume th dropbutton {
  width: 100%;
}
table.agendamentoresume th dropbutton > .button {
  width: 100%;
  justify-items: left;
}
table.agendamentoresume td {
  border: 1px solid var(--color-surface-faded);
  padding: var(--spacing-minimum);
}
table.agendamentoresume td.link {
  cursor: pointer;
}
table.agendamentoresume tr.filtering {
  outline: 1px solid var(--color-highlight-foreground);
}

row value .color-red {
  color: red;
}
row value .bold {
  font-weight: bold;
}

input.color-red {
  color: red;
}

.absoluteTitle title {
  position: absolute;
  top: 5px;
  overflow: visible;
}

.absoluteTitle unit {
  top: 10px;
}

.justifyContentSpaceBetween {
  justify-content: space-between;
}

.justifyContentFlexEnd {
  justify-content: flex-end;
}