.fsControl.unselectable {
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

/* clears the 'X' from Internet Explorer */
input[type=search]::-ms-clear,
input[type=search]::-ms-reveal {
  display: none;
  width: 0;
  height: 0;
}

/* clears the 'X' from Chrome */
input[type=search]::-webkit-search-decoration,
input[type=search]::-webkit-search-cancel-button,
input[type=search]::-webkit-search-results-button,
input[type=search]::-webkit-search-results-decoration {
  display: none;
}

.fsControl.disabled input:disabled {
  color: #555;
  font-style: italic;
}

.fsControlPageNavigator {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 8px 3px;
}

.fsControlPageNavigator > li {
  display: inline-block;
}

.fsControlPageNavigator > li > a {
  display: inline-block;
  padding: 2px 5px;
  text-decoration: none;
  background-color: #eee;
}

.fsControlPageNavigator > li.active > a {
  background-color: #ddd;
  font-weight: bold;
}

.fsControlPanel,
.fsControlPanel > .items,
.fsControlPanel fieldset > .items {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 20px 10px;
}

.fsControlPanel.oneLine,
.fsControlPanel.oneLine > .items {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 10px;
  width: 100%;
}

.fsControlPanel.oneLine,
.fsControlPanel.oneLine > .items {
  width: fit-content;
}

.fsControlPanel.stretch,
.fsControlPanel.stretch > .items {
  width: 100%;
}

.fsControlPanel.allowWrap {
  flex-wrap: wrap;
}

.fsControlPanel.border {
  border: 1px solid #eee;
  background-color: #ddd;
}

.fsControlPanel fieldset {
  margin: 0;
  padding: 0;
}

.fsControlPanel > li,
.fsControlPanel fieldset > .items > li {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.fsControlPanel .field {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 5px;
}

.fsControlPanel > li.buttons {
  margin: 0;
  padding: 0;
  list-style: none;
  flex-direction: row;
  justify-content: flex-end;
  align-content: flex-end;
  gap: 10px;
  flex-wrap: wrap;
  align-items: center;
}

.fsControlPanel > .buttons.hasLeft {
  justify-content: space-between;
  align-content: space-between;
}

.fsControlPanel > .buttons > div {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.fsControlPanel > .buttons > div.right {
  justify-content: flex-end;
}

.fsControlPanel.oneLine > .fieldset,
.fsControlPanel > .fieldset:first-child {
  margin-top: 0;
}

.fsControlTree ul {
  list-style: none;
  padding-left: 20px;
}

.fsControlTree ul li {
  margin: 0;
  padding: 0;
}

.fsControlTree .depth0 {
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

@charset "UTF-8";
.fsControlBreadCrumbs ul {
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  list-style: none;
}

.fsControlBreadCrumbs li ~ li:before {
  content: "⤷";
  display: inline-block;
  padding: 0 5px;
}

.fsControlBreadCrumbs li ~ li {
  padding-left: calc(20px * (var(--index) - 1));
}

.fsControlBreadCrumbs.oneLine li ~ li {
  padding-left: 0;
}

.fsControlBreadCrumbs.oneLine li ~ li:before {
  content: "🡢";
}

.fsControlBreadCrumbs.oneLine ul {
  flex-direction: row;
}

.fsControlBreadCrumbs .fsIcon {
  margin-right: 2px;
}

.fsControlEdit {
  border: none;
  background-color: transparent;
  display: flex;
  width: fit-content;
  box-sizing: border-box;
  gap: 5px;
}

.fsControlEdit.hidden {
  display: none;
}

.fsControlEdit > input {
  margin: 0;
  padding: 0;
  width: 100%;
  box-sizing: border-box;
  border: none;
  background-color: transparent;
}

.fsControlEdit[data-prefix]::before {
  content: attr(data-prefix);
  white-space: nowrap;
}

.fsControlEdit[data-suffix]::after {
  content: attr(data-suffix);
  white-space: nowrap;
}

.fsControlEdit.selectAll > input {
  user-select: all;
}

.fsControlEdit.disabled[data-prefix]::before,
.fsControlEdit.disabled[data-suffix]::after {
  color: #555;
  font-style: italic;
}

@media all and (max-width: 800px) {
  .fsControlEdit {
    width: 100%;
    max-width: 100%;
  }
}

.fsControlForm > .hidden {
  position: absolute;
  visibility: hidden;
}

.fsControlForm .fsFormMagicSubmit {
  position: absolute;
  top: -10000px;
  left: -10000px;
}

.fsControlForm .items {
  margin: 0;
  padding: 0;
  list-style: none;
}

.fsControlForm .items > li.alignCenter {
  align-items: center;
}

.fsControlForm .items > li.alignRight {
  align-items: right;
}

.fsControlForm .items > li.buttons {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: row;
  justify-content: flex-end;
  align-content: flex-end;
  gap: 10px;
  flex-wrap: wrap;
  align-items: center;
}

.fsControlForm .items > .buttons.hasLeft {
  justify-content: space-between;
  align-content: space-between;
}

.fsControlForm .items > .buttons > div {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.fsControlForm .items > .buttons > div.right {
  justify-content: flex-end;
}

.fsControlForm.disabled {
  cursor: not-allowed;
  pointer-events: none;
  user-select: none;
  opacity: 0.5;
}

.fsControlButton {
  margin: 0;
  padding: 0 8px;
  background-color: #eee;
  border-radius: 5px;
  border-width: 0;
  line-height: 28px;
  cursor: pointer;
  display: flex;
  gap: 5px;
  align-items: center;
  flex-wrap: nowrap;
  justify-content: center;
  width: fit-content;
}

.fsControlButton:disabled {
  cursor: not-allowed;
}

.fsControlButton .fsIcon {
  width: 32px;
  height: 32px;
  font-size: 20px;
  line-height: 32px;
}

.fsControlImage {
  position: relative;
  user-select: none;
}

.fsControlImage.border {
  border: 1px solid #ddd;
}

.fsControlImage > ul {
  list-style: none;
  margin: 0;
  padding: 0;
  width: 100%;
  height: 100%;
}

.fsControlImage > ul > li {
  display: none;
  width: 100%;
  height: 100%;
}

.fsControlImage > ul > li.zoomable {
  cursor: zoom-in;
}

.fsControlImage > .popout {
  position: fixed;
  z-index: 1;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.3);
  cursor: zoom-out;
}

.fsControlImage > .popout,
.fsControlImage > ul > li.active {
  display: grid;
  align-items: center;
  justify-content: center;
}

.fsControlImage > .button {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-color: #ccc;
  border-radius: 20px;
  display: none;
  cursor: pointer;
}

.fsControlImage > .button.right {
  right: 0;
}

.fsControlImage:hover > .button {
  display: block;
}

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

.fsControlFileDrop.border {
  border: 1px solid #ddd;
}

.fsControlFileDrop input {
  display: none;
}

.fsControlFileDrop.highlight {
  background-color: yellow;
}

.fsControlFileDrop.disallow {
  cursor: no-drop;
}

.fsControlSelect {
  border: none;
  background-color: transparent;
}

.fsControlSelect.border {
  border: 1px solid #ddd;
  background-color: #eee;
}

@media all and (max-width: 800px) {
  .fsControlSelect {
    width: 100%;
    max-width: 100%;
  }
}

.fsControlValuesEdit {
  position: relative;
  display: inline-block;
  box-sizing: border-box;
  background-color: white;
  border: 1px solid black;
  cursor: text;
}

.fsControlValuesEdit .types {
  display: none;
}

.fsControlValuesEdit .items {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  position: relative;
  gap: 2px 5px;
}

.fsControlValuesEdit .items > * {
  display: block;
  margin: 0;
  padding: 3px 6px;
  white-space: nowrap;
}

.fsControlValuesEdit .items > .value {
  background-color: #ddd;
  display: flex;
  gap: 5px;
  align-items: center;
  cursor: default;
  padding: 0;
}

.fsControlValuesEdit .items > .value .fsIcon {
  line-height: inherit;
  width: auto;
  height: auto;
}

.fsControlValuesEdit .items > .value .fsIcon.remove {
  color: #999;
  font-size: 80%;
  cursor: pointer;
}

.fsControlValuesEdit .items > .edit {
  padding: 3px 4px 3px 0;
}

.fsControlValuesEdit .items > .edit:first-child {
  padding-left: 4px;
}

.fsControlValuesEdit .items > .edit .ghost {
  position: absolute;
  height: 0px;
  visibility: hidden;
  white-space: pre;
}

.fsControlValuesEdit .items > .edit input {
  margin: 0;
  padding: 0;
  border: none;
  background-color: transparent;
  min-width: 10px;
}

.fsControlValuesEdit .lookup {
  list-style: none;
  margin: 0;
  padding: 0;
  display: none;
  position: absolute;
  width: 100%;
  background-color: white;
  border: 1px solid black;
  overflow-x: hidden;
  overflow-y: auto;
  min-width: fit-content;
  max-height: 40vh;
  flex-direction: column;
  align-items: stretch;
  flex-wrap: nowrap;
}

.fsControlValuesEdit .lookup li {
  position: relative;
  padding: 3px 6px 3px 3px;
  cursor: pointer;
  user-select: none;
}

.fsControlValuesEdit .lookup li .select {
  display: none;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(127, 127, 127, 0.2);
}

.fsControlValuesEdit .lookup li:nth-child(even) .select {
  display: block;
}

.fsControlValuesEdit .lookup li.hover .select {
  display: block;
  background-color: rgba(0, 0, 0, 0.2);
}

.fsControlValuesEdit .overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.fsControlValuesEdit .overlay input {
  position: fixed;
  left: -1000px;
}

.fsControlValuesEdit.open .edit {
  z-index: 10001;
}

.fsControlValuesEdit.open .edit input {
  position: relative;
  z-index: 10001;
}

.fsControlValuesEdit.open .lookup {
  display: flex;
  z-index: 10001;
  gap: 0;
}

.fsControlValuesEdit.open .overlay {
  display: block;
  z-index: 10000;
}

.fsControlValuesEdit .fsIcon {
  font-size: inherit;
}

@media all and (max-width: 800px) {
  .fsControlValuesEdit {
    width: 100%;
    max-width: 100%;
  }
}

.fsControlTextArea {
  box-sizing: border-box;
  min-width: 10%;
  max-width: 100%;
  min-height: 3em;
  max-height: 80vh;
  resize: none;
}

.fsControlTextArea.resizeVertical {
  resize: vertical;
}

.fsControlTextArea.resizeHorizontal {
  resize: horizontal;
}

.fsControlTextArea.resizeVertical.resizeHorizontal {
  resize: both;
}

@media all and (max-width: 800px) {
  .fsControlTextArea {
    width: 100%;
    max-width: 100%;
  }
}

.fsControlPdfViewer {
  position: relative;
  min-height: 80vh;
  border: 1px solid #ccc;
}

.fsControlPdfViewer iframe {
  position: absolute;
  width: 100%;
  height: 100%;
  border: none;
}

.fsControlSubmit {
  margin: 0;
  padding: 0 8px;
  background-color: #eee;
  border-radius: 5px;
  border-width: 0;
  line-height: 28px;
  cursor: pointer;
}

@charset "UTF-8";
.fsControlMultiSelect {
  position: relative;
  display: inline-block;
  box-sizing: border-box;
}

.fsControlMultiSelect .edit {
  display: flex;
  position: relative;
  width: 100%;
  justify-content: space-between;
  flex-direction: row;
  flex-wrap: nowrap;
  align-content: center;
  align-items: center;
}

.fsControlMultiSelect .edit input {
  border: none;
  background-color: transparent;
  flex-grow: 1;
}

.fsControlMultiSelect .edit .button {
  flex-grow: 0;
  cursor: pointer;
  user-select: none;
}

.fsControlMultiSelect .edit .button:before {
  display: inline-block;
  content: "▼";
  line-height: 26px;
  text-align: center;
  width: 26px;
  height: 26px;
}

.fsControlMultiSelect .edit .button.clear {
  display: inline-block;
  visibility: hidden;
}

.fsControlMultiSelect .edit .button.clear.visible {
  visibility: visible;
}

.fsControlMultiSelect .edit .button.clear:before {
  content: "✖";
}

.fsControlMultiSelect .items {
  display: none;
  position: absolute;
  margin: 0;
  padding: 0;
  width: 100%;
  background-color: white;
  border: 1px solid black;
  overflow-x: hidden;
  overflow-y: auto;
  max-height: 40vh;
  flex-direction: column;
  align-items: stretch;
  flex-wrap: nowrap;
}

.fsControlMultiSelect .items label {
  padding-left: calc(4px + 20px * (var(--depth) - 1));
  padding-top: 3px;
  padding-bottom: 3px;
  user-select: none;
  display: grid;
  grid-template-columns: min-content min-content 1fr;
  cursor: pointer;
}

.fsControlMultiSelect .items label:before {
  content: "⤷";
  display: inline-block;
  padding: 0 4px;
}

.fsControlMultiSelect .items label.depth0:before {
  content: "";
  padding: 0 4px 0 0;
}

.fsControlMultiSelect .items label:nth-child(even) {
  background-color: #eee;
}

.fsControlMultiSelect .items label.hover {
  background-color: rgba(0, 0, 0, 0.2);
}

.fsControlMultiSelect .items label.hidden {
  display: none;
}

.fsControlMultiSelect .items label.hidden.disabled {
  display: grid;
  opacity: 0.5;
}

.fsControlMultiSelect .items label.headline {
  font-weight: bold;
}

.fsControlMultiSelect .items label.headline:first-child {
  margin-top: 0;
}

.fsControlMultiSelect .items label.headline {
  cursor: default;
}

.fsControlMultiSelect .items label input {
  margin-right: 5px;
}

.fsControlMultiSelect .overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.fsControlMultiSelect .overlay input {
  position: fixed;
  left: -1000px;
}

.fsControlMultiSelect.open .edit {
  z-index: 10001;
}

.fsControlMultiSelect.open .items {
  display: flex;
  z-index: 10001;
  gap: 0;
}

.fsControlMultiSelect.open .overlay {
  display: block;
  z-index: 10000;
}

@charset "UTF-8";
.fsControlTreeList {
  counter-reset: fsControlTreeList;
  border: 1px solid #ddd;
}

.fsControlTreeList ul,
.fsControlTreeList li {
  margin: 0px;
  padding: 0px;
  list-style: none;
  line-height: 22px;
  vertical-align: middle;
}

.fsControlTreeList ul.columns > li,
.fsControlTreeList ul.values > li {
  display: inline-block;
  vertical-align: top;
  padding: 2px 4px;
  box-sizing: border-box;
}

.fsControlTreeList ul.columns {
  background-color: #ddd;
}

.fsControlTreeList ul.values {
  border-top: 1px solid #ddd;
}

.fsControlTreeList ul.actions {
  position: absolute;
  right: 0;
  top: 1px;
  display: none;
}

.fsControlTreeList ul.actions li {
  display: inline-block;
  vertical-align: top;
  padding: 2px 2px 2px 0;
}

.fsControlTreeList .nodes > li {
  position: relative;
}

.fsControlTreeList .nodes li > ul.values:hover ~ ul.actions,
.fsControlTreeList .nodes li > ul.actions:hover {
  display: block;
}

.fsControlTreeList .nodes li > ul.values > li > label {
  display: inline-block;
  position: absolute;
}

.fsControlTreeList .nodes li > ul.values > li > label:after {
  content: "";
  display: inline-block;
  width: 16px;
  margin-right: 6px;
  text-align: center;
  vertical-align: top;
  color: #555;
}

.fsControlTreeList .nodes li.children > ul.values > li > label:after {
  content: "⯈";
}

.fsControlTreeList .nodes li.children > input:checked ~ ul.values > li > label:after {
  content: "⯆";
}

.fsControlTreeList .nodes li > ul.values > li {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.fsControlTreeList .nodes li > ul.values > li.allowWrap {
  white-space: normal;
  word-break: break-word;
}

.fsControlTreeList .nodes li > ul.values > li > span {
  display: inline-block;
}

.fsControlTreeList .nodes[data-depth="0"] li > span {
  margin-left: 22px;
}

.fsControlTreeList .nodes[data-depth="0"] li > label {
  margin-left: 0px;
}

.fsControlTreeList .nodes[data-depth="1"] li > span {
  margin-left: 38px;
}

.fsControlTreeList .nodes[data-depth="1"] li > label {
  margin-left: 16px;
}

.fsControlTreeList .nodes[data-depth="2"] li > span {
  margin-left: 54px;
}

.fsControlTreeList .nodes[data-depth="2"] li > label {
  margin-left: 32px;
}

.fsControlTreeList .nodes[data-depth="3"] li > span {
  margin-left: 70px;
}

.fsControlTreeList .nodes[data-depth="3"] li > label {
  margin-left: 48px;
}

.fsControlTreeList .nodes[data-depth="4"] li > span {
  margin-left: 86px;
}

.fsControlTreeList .nodes[data-depth="4"] li > label {
  margin-left: 64px;
}

.fsControlTreeList .nodes[data-depth="5"] li > span {
  margin-left: 102px;
}

.fsControlTreeList .nodes[data-depth="5"] li > label {
  margin-left: 80px;
}

.fsControlTreeList .nodes[data-depth="6"] li > span {
  margin-left: 118px;
}

.fsControlTreeList .nodes[data-depth="6"] li > label {
  margin-left: 96px;
}

.fsControlTreeList .nodes[data-depth="7"] li > span {
  margin-left: 134px;
}

.fsControlTreeList .nodes[data-depth="7"] li > label {
  margin-left: 112px;
}

.fsControlTreeList .nodes[data-depth="8"] li > span {
  margin-left: 150px;
}

.fsControlTreeList .nodes[data-depth="8"] li > label {
  margin-left: 128px;
}

.fsControlTreeList .nodes[data-depth="9"] li > span {
  margin-left: 166px;
}

.fsControlTreeList .nodes[data-depth="9"] li > label {
  margin-left: 144px;
}

.fsControlTreeList .nodes[data-depth="10"] li > span {
  margin-left: 182px;
}

.fsControlTreeList .nodes[data-depth="10"] li > label {
  margin-left: 160px;
}

.fsControlTreeList .nodes[data-depth="11"] li > span {
  margin-left: 198px;
}

.fsControlTreeList .nodes[data-depth="11"] li > label {
  margin-left: 176px;
}

.fsControlTreeList .nodes[data-depth="12"] li > span {
  margin-left: 214px;
}

.fsControlTreeList .nodes[data-depth="12"] li > label {
  margin-left: 192px;
}

.fsControlTreeList .nodes[data-depth="13"] li > span {
  margin-left: 230px;
}

.fsControlTreeList .nodes[data-depth="13"] li > label {
  margin-left: 208px;
}

.fsControlTreeList .nodes[data-depth="14"] li > span {
  margin-left: 246px;
}

.fsControlTreeList .nodes[data-depth="14"] li > label {
  margin-left: 224px;
}

.fsControlTreeList .nodes[data-depth="15"] li > span {
  margin-left: 262px;
}

.fsControlTreeList .nodes[data-depth="15"] li > label {
  margin-left: 240px;
}

.fsControlTreeList .nodes[data-depth="16"] li > span {
  margin-left: 278px;
}

.fsControlTreeList .nodes[data-depth="16"] li > label {
  margin-left: 256px;
}

.fsControlTreeList .nodes[data-depth="17"] li > span {
  margin-left: 294px;
}

.fsControlTreeList .nodes[data-depth="17"] li > label {
  margin-left: 272px;
}

.fsControlTreeList .nodes[data-depth="18"] li > span {
  margin-left: 310px;
}

.fsControlTreeList .nodes[data-depth="18"] li > label {
  margin-left: 288px;
}

.fsControlTreeList .nodes[data-depth="19"] li > span {
  margin-left: 326px;
}

.fsControlTreeList .nodes[data-depth="19"] li > label {
  margin-left: 304px;
}

.fsControlTreeList .nodes li > input {
  display: none;
}

.fsControlTreeList .nodes li > ul.nodes {
  display: none;
}

.fsControlTreeList .nodes li > input:checked ~ ul.nodes {
  display: block;
}

.fsControlReset {
  margin: 0;
  padding: 0 8px;
  background-color: #eee;
  border-radius: 5px;
  border-width: 0;
  line-height: 28px;
  cursor: pointer;
}

.fsControlReset:disabled {
  cursor: not-allowed;
}

.fsControlTable.border {
  border: 1px solid #eee;
}

.fsControlTable table {
  width: 100%;
  border-spacing: 0;
  border-collapse: collapse;
}

.fsControlTable th,
.fsControlTable td {
  margin: 0;
  padding: 6px;
  vertical-align: top;
  text-align: left;
  white-space: nowrap;
}

.fsControlTable thead {
  background-color: #eee;
}

.fsControlTable thead.hideColumns {
  display: none;
}

.fsControlTable tr:nth-child(even) {
  background-color: #f8f8f8;
}

.fsControlTable .dataList {
  display: none;
}

.fsControlTable .pair dl {
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: max-content 1fr;
  justify-content: start;
  gap: 3px 0;
}

.fsControlTable .pair.alignCenter dl {
  justify-content: center;
  grid-template-columns: max-content max-content;
}

.fsControlTable .pair.alignRight dl {
  justify-content: end;
  grid-template-columns: 1fr max-content;
}

.fsControlTable .pair dl > * {
  margin: 0;
  padding: 0;
  white-space: nowrap;
}

.fsControlTable .pair dl > dt {
  text-align: right;
  padding-right: 6px;
}

.fsControlTable .pair dl > dt.alignMiddle {
  align-self: center;
}

.fsControlTable .pair dl > dt.alignBottom {
  align-self: end;
}

.fsControlTable .pair dl > dt:after {
  content: ":";
}

.fsControlTable .pair dl > dd {
  text-align: left;
}

.fsControlTable .pair dl > dd.alignCenter {
  text-align: center;
}

.fsControlTable .pair dl > dd.alignRight {
  text-align: right;
}

.fsControlTable .pair dl dd.noCaption {
  grid-column: 1/3;
}

.fsControlTable .actions {
  width: 1px;
}

.fsControlTable .actions > div {
  display: grid;
  grid-template-columns: min-content;
  gap: 5px;
  align-items: stretch;
  justify-items: start;
}

.fsControlTable .actions.cols2 > div {
  grid-template-columns: repeat(2, min-content);
}

.fsControlTable .actions.cols3 > div {
  grid-template-columns: repeat(3, min-content);
}

.fsControlTable .actions.cols4 > div {
  grid-template-columns: repeat(4, min-content);
}

.fsControlTable .actions.cols5 > div {
  grid-template-columns: repeat(5, min-content);
}

.fsControlTable .actions.cols6 > div {
  grid-template-columns: repeat(6, min-content);
}

.fsControlTable .actions.cols7 > div {
  grid-template-columns: repeat(7, min-content);
}

.fsControlTable .actions.cols8 > div {
  grid-template-columns: repeat(8, min-content);
}

.fsControlTable .actions.cols9 > div {
  grid-template-columns: repeat(9, min-content);
}

.fsControlTable .alignLeft {
  text-align: left;
}

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

.fsControlTable .alignRight {
  text-align: right;
}

.fsControlTable .alignTop {
  vertical-align: top;
}

.fsControlTable .alignMiddle {
  vertical-align: middle;
}

.fsControlTable .alignBottom {
  vertical-align: bottom;
}

.fsControlTable tr > td.allowWrap,
.fsControlTable .pair dl > .allowWrap {
  white-space: normal;
}

.fsControlTable .emptyText.hidden {
  display: none;
}

.fsControlTable .emptyText td {
  text-align: center;
}

@media all and (max-width: 900px) {
  .fsControlTable {
    display: block;
  }

  .fsControlTable thead {
    display: none;
  }

  .fsControlTable tbody {
    display: flex;
    flex-direction: column;
  }

  .fsControlTable tr {
    display: flex;
    flex-direction: column;
    padding: 5px 0;
  }

  .fsControlTable td {
    padding-top: 2px;
    padding-bottom: 4px;
    white-space: normal;
  }

  .fsControlTable td[data-caption],
.fsControlTable td[data-caption].alignCenter {
    display: flex;
    justify-content: space-between;
  }

  .fsControlTable td[data-caption].alignMiddle {
    align-items: center;
  }

  .fsControlTable td[data-caption].alignBottom {
    align-items: flex-end;
  }

  .fsControlTable td[data-caption]::before {
    content: attr(data-caption) ":";
    word-wrap: break-word;
    font-weight: bold;
    padding-right: 6px;
  }

  .fsControlTable .pair {
    flex-direction: column;
    align-items: flex-start;
    gap: 5px;
  }

  .fsControlTable .pair dl {
    width: 100%;
  }

  .fsControlTable .pair.alignCenter dl {
    justify-content: space-between;
  }

  .fsControlTable .pair dl > dt {
    text-align: left;
    font-weight: bold;
  }

  .fsControlTable .pair dl > dd {
    text-align: right;
  }

  .fsControlTable .actions {
    display: block;
    margin: 0;
    padding: 6px 6px 0 6px;
    float: none;
    width: auto;
  }

  .fsControlTable .actions > div {
    display: flex;
    gap: 5px;
    justify-content: flex-end;
    flex-wrap: wrap;
  }
}

.fsControlTabbed {
  position: relative;
}

.fsControlTabbed .tabs {
  display: flex;
  flex-wrap: wrap;
}

.fsControlTabbed .tabs > label {
  cursor: pointer;
  user-select: none;
}

.fsControlTabbed .tabs > label,
.fsControlTabbed .pages {
  padding: 10px;
}

.fsControlTabbed .tabs > label,
.fsControlTabbed.border .pages {
  border: 1px solid #ddd;
  background-color: #eee;
}

.fsControlTabbed .pages > input {
  display: block;
  position: absolute;
  width: 0;
  height: 0;
  top: 0;
}

.fsControlTabbed .pages > .fsControlPanel {
  display: none;
}

.fsControlTabbed .pages > input:checked + .fsControlPanel {
  display: flex;
}

/*@import "../fsControl";*/
.fsControlCheckBox {
  display: flex;
}

/*
label.fsControlCheckBox {
  background-color: $myColor;
}
*/

@charset "UTF-8";
.fsControlValueEdit {
  position: relative;
  display: inline-block;
  box-sizing: border-box;
}

.fsControlValueEdit .types {
  display: none;
}

.fsControlValueEdit .edit {
  display: flex;
  position: relative;
  background-color: white;
  border: 1px solid black;
  width: 100%;
  justify-content: space-between;
  flex-direction: row;
  flex-wrap: nowrap;
  align-content: center;
  align-items: center;
}

.fsControlValueEdit .edit input {
  border: none;
  background-color: transparent;
  flex-grow: 1;
}

.fsControlValueEdit .edit .button {
  flex-grow: 0;
  cursor: pointer;
  user-select: none;
}

.fsControlValueEdit.disabled .edit .button {
  cursor: inherit;
}

.fsControlValueEdit .edit .button:before {
  display: inline-block;
  content: "▼";
  line-height: 26px;
  text-align: center;
  width: 26px;
  height: 26px;
}

.fsControlValueEdit .edit .button.clear {
  display: inline-block;
  visibility: hidden;
}

.fsControlValueEdit .edit .button.clear.visible {
  visibility: visible;
}

.fsControlValueEdit .edit .button.clear:before {
  content: "✖";
}

.fsControlValueEdit .edit .button.dropDown.hidden {
  display: none;
}

.fsControlValueEdit .items {
  display: none;
  position: absolute;
  width: 100%;
  background-color: white;
  border: 1px solid black;
  overflow-x: hidden;
  overflow-y: auto;
  max-height: 40vh;
  flex-direction: column;
  align-items: stretch;
  flex-wrap: nowrap;
}

.fsControlValueEdit .items li {
  padding-left: calc(4px + 20px * (var(--depth) - 1));
  padding-top: 3px;
  padding-bottom: 3px;
  cursor: pointer;
  user-select: none;
  display: grid;
  grid-template-columns: min-content 1fr;
}

.fsControlValueEdit .items li.hasIcon {
  grid-template-columns: min-content min-content 1fr;
  gap: 3px;
}

.fsControlValueEdit .items li.hasIcon span {
  line-height: 24px;
}

.fsControlValueEdit .items li:before {
  content: "⤷";
  display: inline-block;
  padding: 0 4px;
}

.fsControlValueEdit .items li.depth0:before {
  content: "";
  padding: 0 4px 0 0;
}

.fsControlValueEdit .items li.even {
  background-color: #eee;
}

.fsControlValueEdit .items li.hover {
  background-color: rgba(0, 0, 0, 0.2);
}

.fsControlValueEdit .items li.hidden {
  display: none;
}

.fsControlValueEdit .items li.disabled:not(.hidden),
.fsControlValueEdit .items li.hidden.grayed {
  display: grid;
  opacity: 0.5;
}

.fsControlValueEdit .items li.headline {
  font-weight: bold;
}

.fsControlValueEdit .items li.headline:first-child {
  margin-top: 0;
}

.fsControlValueEdit .items li.headline {
  cursor: default;
}

.fsControlValueEdit .overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.fsControlValueEdit .overlay input {
  position: fixed;
  left: -1000px;
}

.fsControlValueEdit.open .edit {
  z-index: 10001;
}

.fsControlValueEdit.open .items {
  display: flex;
  z-index: 10001;
  gap: 0;
}

.fsControlValueEdit.open .overlay {
  display: block;
  z-index: 10000;
}

.fsControlValueEdit .fsIcon {
  font-size: inherit;
}

@media all and (max-width: 800px) {
  .fsControlValueEdit {
    width: 100%;
    max-width: 100%;
  }
}

/*@import "../fsControl";*/
.fsControlRadioButton {
  display: flex;
}

/*
label.fsControlCheckBox {
  background-color: $myColor;
}
*/

.fsControlActionBar {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  justify-content: start;
  align-items: stretch;
  flex-wrap: wrap;
  grid-gap: 10px;
}

.fsControlActionBar > li {
  margin: 0;
  padding: 0;
  border-radius: 5px;
}

.fsControlActionBar > li a {
  display: inline-block;
  text-decoration: none;
  padding: 0 8px 0 5px;
  line-height: 28px;
}

.fsControlActionBar .fsIcon {
  background-color: transparent;
  margin-right: 4px;
}

@charset "UTF-8";
.fsControlCard.border {
  border: 1px solid #ddd;
}

.fsControlCard > input {
  position: absolute;
  left: -10000px;
}

.fsControlCard > .caption {
  display: block;
  padding: 10px;
  background-color: #ddd;
  font-weight: bold;
}

.fsControlCard.noWrap > .caption {
  white-space: nowrap;
}

.fsControlCard > input ~ .caption:before {
  content: "➕";
  float: right;
  margin: 0 0 10px 10px;
}

.fsControlCard > input:checked ~ .caption:before {
  content: "➖";
}

.fsControlCard > .content {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 10px;
}

.fsControlCard .image {
  min-width: fit-content;
  display: flex;
  justify-content: center;
  align-items: center;
}

.fsControlCard .fields {
  margin: 5px;
  flex-grow: 1;
  background-color: #eee;
  display: grid;
  grid-template-columns: min-content 1fr;
  gap: 10px;
}

.fsControlCard.oneLine .fields {
  display: flex;
  flex-wrap: wrap;
}

.fsControlCard .fields > dt {
  margin: 0;
  padding: 0;
  white-space: nowrap;
  font-weight: bold;
}

.fsControlCard .fields > dd {
  margin: 0;
  padding: 0;
}

.fsControlCard .fields > dd.noWrap {
  white-space: nowrap;
}

.fsControlCard .fields > dd.bold {
  font-weight: bold;
}

.fsControlCard.oneLine .fields dd {
  margin-right: 10px;
}

.fsControlCard.oneLine .fields dd:last-child {
  margin-right: 0;
}

.fsControlCard .fields > .noCaption {
  grid-column-start: 1;
  grid-column-end: 3;
}

.fsControlCard .fields > .optional {
  display: none;
}

.fsControlCard input:checked ~ .content > .fields > .optional {
  display: block;
}

@media all and (max-width: 800px) {
  .fsControlCard .content {
    flex-direction: column;
    align-items: stretch;
  }

  .fsControlCard .fields {
    font-size: 90%;
  }

  .fsControlCard .fields dd {
    text-align: right;
  }

  .fsControlCard .fields dd.noCaption {
    text-align: left;
  }
}

.fsControlProgressBar {
  position: relative;
  display: flex;
  padding: 3px;
  border: 1px solid #ddd;
  background-color: white;
  overflow: hidden;
  user-select: none;
}

.fsControlProgressBar > .back {
  display: flex;
  padding: 5px;
  justify-content: center;
  align-items: center;
  width: 100%;
}

.fsControlProgressBar > .front {
  position: absolute;
  display: flex;
  padding: 5px;
  justify-content: center;
  align-items: center;
  left: 3px;
  right: 3px;
  top: 3px;
  bottom: 3px;
  background-color: #999;
  color: white;
}

.fsControlProgressBar.increase > .front {
  transition: clip-path 0.5s linear;
}

.fsControlProgressBar .percent {
  margin-left: 4px;
}

.fsControlProgressBar .percent:before {
  content: "(";
}

.fsControlProgressBar .percent:after {
  content: "%)";
}

.fsControlHeadline {
  padding: 0;
  margin: 0;
}

.fsControlOptions {
  display: flex;
  flex-direction: column;
  gap: 10px;
}