@charset "UTF-8";
::-webkit-scrollbar {
  width: 12px;
}

::-webkit-scrollbar-track {
  background: darkslategray;
}

::-webkit-scrollbar-thumb {
  background: #558f8f;
}

::-webkit-scrollbar-thumb:hover {
  background: #cee2e2;
}

::-webkit-scrollbar-corner {
  background: darkslategray;
}

:root {
  --oneflow-background-color: white;
  --oneflow-panel-background-color: white;
  --oneflow-panel-title-color:whitesmoke;
  --oneflow-glass-color: rgba(0,0,0,0.3);
  --oneflow-button-background-color:white;
  --oneflow-button-border-color:lightgray;
  --oneflow-button-foreground-color:#101010;
  --oneflow-button-hover-background-color:whitesmoke;
  --oneflow-panel-padding: 1rem;
  --oneflow-panel-border-radius: 0.5rem;
  --oneflow-panel-drop-shadow: 2px 2px 4px rgba(0,0,0,0.4);
  --oneflow-button-padding:0.6rem;
  --oneflow-button-border-radius:0.5rem;
  --oneflow-button-minium-width:8rem;
  --oneflow-h1-font-size: 2rem;
  --oneflow-h2-font-size: 1.5rem;
  --oneflow-h3-font-size: 1.2rem;
}

:root {
  --oneflow-component-theme-color: darkslategray;
  --oneflow-component-theme-highlight-color: rgb(85.0476190476, 142.9523809524, 142.9523809524);
  --oneflow-component-theme-background-color: #558f8f;
  --oneflow-component-theme-background-color2: #cee2e2;
  --oneflow-component-theme-glass-color:rgba(47, 79, 79, 0.8);
  --oneflow-component-theme-glass-light-color:rgba(47, 79, 79, 0.4);
  --oneflow-component-theme-glass-white-color:rgba(255, 255, 255, 0.7);
  --oneflow-component-card-view-panel-label-color:#cee2e2;
  --oneflow-component-card-view-panel-text-background-color:rgba(47, 79, 79,0.8);
  --oneflow-component-card-view-panel-text-color:#cee2e2;
  --oneflow-component-card-view-panel-text-icon-color: #558f8f;
  --oneflow-component-card-view-panel-text-background-fade-start-color:rgba(47, 79, 79,0.1);
  --oneflow-component-font-family: -apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,"Helvetica Neue",sans-serif;
  --oneflow-component-font-size: 1rem;
  --oneflow-component-editor-size:2rem;
  --oneflow-component-large-font-size: 1.5rem;
  --oneflow-component-medium-font-size: 1.3rem;
  --oneflow-component-font-color: #404040;
  --oneflow-component-error-color: #ff0000;
  --oneflow-component-error-font-size: 0.6rem;
  --oneflow-component-border-color: #c9c9c9;
  --oneflow-component-label-color: #505050;
  --oneflow-component-background-color: #ffffff;
  --oneflow-component-background-solid-color:#E0E0E0;
  --oneflow-component-toolbar-background-color:rgba(240,240,240,0.8);
  --oneflow-component-background-color-hover:rgba(240,240,240,0.9);
  --oneflow-component-selection-color: #ffffff;
  --oneflow-component-selection-background-color: #404040;
  --oneflow-component-selection-background-color-hover: #202020;
  --oneflow-component-foreground-color:#000000;
  --oneflow-component-border-color-focus:#($theme-color);
  --oneflow-component-disabled-color: #c0c0c0;
  --oneflow-component-disabled-background-color: #f0f0f0;
}

:host(.oneflow-component[disabled]) {
  pointer-events: none;
}
:host(.oneflow-component[disabled]) input[type=text], :host(.oneflow-component[disabled]) input[type=number], :host(.oneflow-component[disabled]) input[type=password], :host(.oneflow-component[disabled]) input[type=color], :host(.oneflow-component[disabled]) input[type=file] {
  background-color: var(--oneflow-component-disabled-background-color);
  color: var(--oneflow-component-disabled-color);
}
:host(.oneflow-component[disabled]) textarea {
  background-color: var(--oneflow-component-disabled-background-color);
  color: var(--oneflow-component-disabled-color);
}

:host(.oneflow-component) {
  position: relative;
  width: 100%;
  margin: 0px;
  padding: 0px;
  display: block;
  color: var(--oneflow-component-font-color);
  font-family: var(--oneflow-component-font-family);
  margin-bottom: var(--oneflow-component-error-font-size);
  text-align: left;
}
:host(.oneflow-component) .inputArea {
  padding-right: 8px;
}
:host(.oneflow-component) input[type=text], :host(.oneflow-component) input[type=number], :host(.oneflow-component) input[type=password] {
  outline: none;
  font-size: var(--oneflow-component-font-size);
  background-color: var(--oneflow-component-bg-color);
  border: 0px none;
  border-bottom-width: 1px;
  border-bottom-style: solid;
  border-color: var(--oneflow-component-border-color);
  border-radius: 0px;
  padding: 0px;
  padding-left: 4px;
  padding-right: 4px;
  margin: 0px;
  height: var(--oneflow-component-editor-size);
  width: 100%;
  color: var(--oneflow-component-font-color);
}
:host(.oneflow-component) input[type=file] {
  width: 100%;
  max-width: 400px;
  border: 1px solid var(--oneflow-component-border-color);
}
:host(.oneflow-component) input[type=file]::-webkit-file-upload-button {
  visibility: hidden;
}
:host(.oneflow-component) input[type=file]::before {
  content: "Select file";
  display: inline-block;
  background: var(--oneflow-component-background-color);
  border: 1px solid #999;
  border-radius: 3px;
  padding: 5px 8px;
  outline: none;
  white-space: nowrap;
  cursor: pointer;
  text-shadow: 1px 1px #fff;
  font-weight: 700;
  font-size: 10pt;
}
:host(.oneflow-component) input[type=file]:hover::before {
  border-color: black;
}
:host(.oneflow-component) input[type=file]:active::before {
  background: var(--oneflow-component-background-color);
}
:host(.oneflow-component) input[type=file] button {
  margin-left: 12px;
}
:host(.oneflow-component) input:focus {
  border-bottom-width: 3px;
  border-bottom-color: var(--oneflow-component-theme-color);
  margin-bottom: -2px;
  transition: all linear 0.1s;
}
:host(.oneflow-component) input[type=file] {
  margin-top: 8px;
}
:host(.oneflow-component) input::-moz-placeholder {
  opacity: 0.5;
}
:host(.oneflow-component) input::placeholder {
  opacity: 0.5;
}
:host(.oneflow-component) input[type=color] {
  outline: none;
  background-color: var(--oneflow-component-background-color);
  border: 0px none;
  border-radius: 8px;
  padding: 0px;
  padding-left: 4px;
  padding-right: 4px;
  margin: 0px;
  margin-top: 8px;
  height: 42px;
  width: 100%;
}
:host(.oneflow-component) input[type=text]::-moz-selection, :host(.oneflow-component) input[type=password]::-moz-selection, :host(.oneflow-component) input[type=number]::-moz-selection {
  color: var(--oneflow-component-selection-color);
  background-color: var(--oneflow-component-selection-background-color);
}
:host(.oneflow-component) input[type=text]::selection, :host(.oneflow-component) input[type=password]::selection, :host(.oneflow-component) input[type=number]::selection {
  color: var(--oneflow-component-selection-color);
  background-color: var(--oneflow-component-selection-background-color);
}
:host(.oneflow-component) input[type=text]:focus {
  border-color: var(--oneflow-component-theme-color);
  border-bottom-color: var(--oneflow-component-theme-color);
  outline: none;
}
:host(.oneflow-component) > label {
  z-index: 1;
  color: var(--of-component-label-color);
  opacity: 1;
  transition: all ease-in 0.2s;
  pointer-events: none;
}
:host(.oneflow-component) > label.allow-drop {
  position: absolute;
  margin-top: -1.2rem;
}
:host(.oneflow-component) > label.drop {
  margin-top: 0.4rem;
  transition: all ease-in 0.2s;
  opacity: 0.5;
  padding-left: 0.25rem;
}
:host(.oneflow-component) .error-text {
  position: absolute;
  padding: 0;
  margin: 0;
  margin-top: 2px;
  line-height: var(--oneflow-component-error-font-size);
  display: block;
  bottom: -var(--oneflow-component-error-font-size);
  color: var(--oneflow-component-error-color);
  font-family: var(--oneflow-component-font-family);
  font-size: var(--oneflow-component-error-font-size);
}
:host(.oneflow-component) button {
  border-style: none;
  background-color: transparent;
  border-color: var(--oneflow-component-border-color);
  border-width: 0px;
  padding: 0px;
  font-size: var(--oneflow-component-font-size);
  color: var(--oneflow-component-font-color);
  opacity: 0.6;
  border-radius: 8px 8px 0 0;
  margin-right: 24px;
  margin-left: 0px;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}
:host(.oneflow-component) button.bordered {
  border-style: solid;
  border-width: 2px;
  opacity: 0.6;
  padding: 4px;
  padding-left: 8px;
  padding-right: 8px;
  margin-right: 1px;
  background-color: var(--oneflow-component-background-color);
}
:host(.oneflow-component) button:focus {
  outline: 0;
}
:host(.oneflow-component) button:hover {
  opacity: 1;
}

:host(oneflow-file-upload) .file-selection-area {
  display: flex;
  align-items: center;
  height: 48px;
  gap: 12px;
  flex-direction: row;
}
:host(oneflow-file-upload) .file-selection-area .button-group {
  height: 48px;
  display: flex;
  align-items: center;
  gap: 12px;
  flex-direction: row;
}
:host(oneflow-file-upload) .file-selection-area .button-group button.oneflow-button {
  margin: 0;
  padding: 4px;
  border-radius: 4px;
  background-color: var(--oneflow-component-background-color);
  border: 1px solid var(--oneflow-component-border-color);
  cursor: pointer;
}
:host(oneflow-file-upload) .file-selection-area .button-group button.oneflow-button[disabled] {
  opacity: 0.5;
  cursor: not-allowed;
  pointer-events: none;
  all: unset;
}
:host(oneflow-file-upload) .file-selection-area .button-group button.oneflow-button span {
  font-size: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
}
:host(oneflow-file-upload) .file-selection-area input[type=file] {
  background-color: var(--oneflow-component-background-color);
  color: var(--oneflow-component-font-color);
  font-size: var(--oneflow-component-font-size);
  border-radius: 4px;
  padding: 0px;
  margin: 0px;
  padding-left: 4px;
  padding-right: 4px;
  display: relative;
}
:host(oneflow-file-upload) .file-selection-area input[type=file]::before {
  content: "Select file";
  display: block;
  position: absolute;
  background: var(--oneflow-component-background-color);
  color: var(--oneflow-component-font-color);
  padding: 4px;
  border-radius: 4px;
  border: none;
  cursor: pointer;
}

:host(oneflow-progress-bar) .input-area {
  display: block;
  background-color: var(--oneflow-component-background-color);
  border: 1px solid var(--oneflow-component-border-color);
  padding: 0;
  width: 100%;
  border-radius: 4px;
  position: relative;
  height: 30px;
  margin: 0px auto;
  box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.2);
}
:host(oneflow-progress-bar) .input-area p.progress-status {
  color: var(--oneflow-component-font-color);
  font-size: var(--oneflow-component-font-size);
  margin: 0;
  padding: 0;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
  z-index: 1000;
}
:host(oneflow-progress-bar) .input-area .progress-bar {
  width: 0%;
  padding: 0;
  margin: 0;
  height: 100%;
  background-color: var(--oneflow-component-theme-background-color2);
  border-radius: 4px;
  position: relative;
  transition: width 0.3s ease;
}

:host(oneflow-checkbox) .checkbox {
  display: flex;
  flex-direction: column;
  gap: 0.5em;
  transform: scale(1);
  transform-origin: 50% 50%;
}
:host(oneflow-checkbox) .checkbox input {
  pointer-events: all;
}
:host(oneflow-checkbox) .checkbox input[type=checkbox] {
  -webkit-appearance: none;
  -moz-appearance: none;
       appearance: none;
  background-color: var(--oneflow-component-background-color);
  margin: 0;
  font: inherit;
  color: currentColor;
  width: 2.15em;
  height: 2.15em;
  border: 0.15em solid var(--oneflow-component-border-color);
  border-radius: 0.15em;
  transform: translateY(-0.075em);
  display: grid;
  place-content: center;
  cursor: pointer;
}
:host(oneflow-checkbox) .checkbox input[type=checkbox]::before {
  z-index: 100;
  content: "";
  width: 1.65em;
  height: 1.65em;
  clip-path: polygon(14% 44%, 0 65%, 55% 100%, 100% 16%, 80% 0%, 43% 62%);
  transform: scale(0);
  transform-origin: bottom left;
  box-shadow: inset 2em 2em var(--oneflow-component-theme-color);
}
:host(oneflow-checkbox) .checkbox input[type=checkbox]:checked::before {
  transform: scale(1);
  animation-name: bounce;
  animation-duration: 0.3s;
}
:host(oneflow-checkbox) .checkbox input[type=checkbox]:focus {
  border-color: var(--oneflow-component-theme-color);
}
:host(oneflow-checkbox) .checkbox input[type=checkbox]:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}
@keyframes bounce {
  0% {
    transform: scale(1);
  }
  40% {
    transform: scale(2);
  }
  100% {
    transform: scale(1);
  }
}
:host(oneflow-checkbox) .checkbox--disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

:host(oneflow-icon-selector) {
  position: relative;
}
:host(oneflow-icon-selector) label {
  font-size: 1rem;
  display: block;
  margin-bottom: 0.5rem;
}
:host(oneflow-icon-selector) .selected-icon {
  font-size: 4rem;
  padding: 4px;
  border: 1px solid var(--oneflow-component-border-color);
  cursor: pointer;
}
:host(oneflow-icon-selector) .selected-icon:hover {
  background-color: var(--oneflow-component-background-color-hover);
  border: 1px solid var(--oneflow-component-theme-color);
}
:host(oneflow-icon-selector) .icon-selection-area {
  display: none;
  gap: 0.5em;
  z-index: 1000;
  background-color: var(--oneflow-component-background-color);
  border: 0.15em solid var(--oneflow-component-border-color);
  border-radius: 0.15em;
  padding: 0.5em;
  width: 100%;
  position: absolute;
  top: calc(5.5rem + 18px);
  left: 0;
  max-height: 300px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}
:host(oneflow-icon-selector) .icon-selection-area .icons {
  margin-top: 8px;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 0.5em;
  width: 100%;
  max-height: 274px;
  overflow-y: auto;
}
:host(oneflow-icon-selector) .icon-selection-area .filter {
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: row;
  gap: 0px;
  margin: 0;
  padding: 0;
  background-color: var(--oneflow-component-background-color);
  width: 100%;
}
:host(oneflow-icon-selector) .icon-selection-area .filter button.clear-button {
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: var(--oneflow-component-background-color);
  border: 1px solid var(--oneflow-component-border-color);
  border-radius: 0.15em;
  padding: 0.5em;
  color: var(--oneflow-component-text-color);
  max-width: 32px;
  max-height: 32px;
  width: 32px;
  height: 32px;
}
:host(oneflow-icon-selector) .icon-selection-area .filter button.clear-button span {
  font-size: 32px;
  border: unset;
  background-color: unset;
  color: black;
}
:host(oneflow-icon-selector) .icon-selection-area span {
  font-size: 48px;
  padding: 4px;
  border: 1px solid var(--oneflow-component-border-color);
  cursor: pointer;
}
:host(oneflow-icon-selector) .icon-selection-area span:hover {
  background-color: var(--oneflow-component-background-color-hover);
  border: 1px solid var(--oneflow-component-theme-color);
}

:host(oneflow-dialog) {
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: var(--oneflow-component-background-color);
  opacity: 0.9;
  z-index: 10000;
  pointer-events: none;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}
:host(oneflow-dialog) .container {
  color: var(--control-font-color);
  background-color: var(--oneflow-component-background-color);
  border-radius: 8px;
  padding: 24px;
  border: solid 4px var(--oneflow-component-border-color);
  z-index: 10001;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -80%);
  pointer-events: all;
}
:host(oneflow-dialog) .container h1 {
  font-size: 32px;
  margin: 0;
  padding: 0;
}
:host(oneflow-dialog) .container p {
  font-size: 18px;
  margin-top: 12px;
  margin-bottom: 12px;
  padding: 0;
}
:host(oneflow-dialog) .buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
:host(oneflow-dialog) .spacer {
  width: 24px;
}
:host(oneflow-dialog) button {
  margin-top: 12px;
  min-width: 150px;
  background-color: var(--oneflow-component-background-color);
  border: 1px solid;
  border-color: var(--oneflow-component-border-color);
  border-radius: 8px;
  padding: 12px;
  outline: none;
  color: var(--control-fg-color);
  cursor: pointer;
}
:host(oneflow-dialog) button:hover:not([disabled]) {
  transition: all 0.5s;
  background-color: var(--oneflow-component-background-color-hover);
}
:host(oneflow-dialog) .loader {
  position: fixed;
  top: calc(50% - 60px);
  left: 50%;
  position: relative;
  border: 16px solid var(--oneflow-component-theme-color);
  border-top: 16px solid var(--oneflow-component-theme-highlight-color);
  border-radius: 50%;
  z-index: 10001;
  width: 120px;
  height: 120px;
  animation: spin 2s linear infinite;
}

:host(oneflow-dialog[waitscreen]) {
  top: 96px;
  bottom: 32px;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
@media only screen and (max-width: 980px) {
  :host(oneflow-dialog[waitscreen]) {
    top: 48px;
  }
}
:host(oneflow-drop-down-list.oneflow-component.card-view) {
  margin: 0;
  padding: 0;
}
:host(oneflow-drop-down-list.oneflow-component.card-view) .input-area {
  height: 36px;
  margin: 0;
  padding: 0;
  width: 200px;
}
:host(oneflow-drop-down-list.oneflow-component.card-view) .input-area:before {
  position: absolute;
  content: "sort by";
  font-size: 12px;
  background-color: white;
  color: var(--oneflow-component-font-color);
  padding: 2px;
  padding-left: 4px;
  padding-right: 4px;
  padding-top: 10px;
  padding-bottom: 12px;
  background-color: var(--oneflow-component-theme-background-color2);
  color: var(--oneflow-component-theme-color);
  text-shadow: none;
  left: 0px;
  top: 0px;
  border-right: 1px solid var(--oneflow-component-theme-background-color);
}
:host(oneflow-drop-down-list.oneflow-component.card-view) .input-area input {
  width: 134px;
  display: block;
  margin: 0;
  padding: 0px 4px 0px 4px;
  border: 0px solid var(--oneflow-component-border-color);
  border-bottom-width: 1px;
  height: inherit;
  padding-left: 60px;
  color: var(--oneflow-component-font-color);
  background-color: var(--oneflow-background-color);
  font-size: inherit;
  font-family: var(--oneflow-component-font-family);
  line-height: 1.15;
  outline-color: unset;
}
:host(oneflow-drop-down-list.oneflow-component.card-view) .selection-area {
  margin-top: -1px;
  min-height: 3rem;
  border: 1px solid var(--oneflow-component-border-color);
}
:host(oneflow-drop-down-list.oneflow-component.card-view) .selection-area input {
  display: none;
}
:host(oneflow-drop-down-list.oneflow-component.card-view) .selection-area .search-box {
  display: none;
}
:host(oneflow-drop-down-list.oneflow-component.card-view) .selection-area .search-box-icon {
  display: none;
}
:host(oneflow-drop-down-list.oneflow-component.card-view) .selection-area p {
  font-size: var(--oneflow-component-font-size);
  margin: 2px;
  padding: 4px;
  text-shadow: none;
}
:host(oneflow-drop-down-list.oneflow-component.card-view) .selection-area p.hidden {
  display: none;
}
:host(oneflow-drop-down-list.oneflow-component.card-view) .selection-area p.selected {
  background-color: var(--oneflow-component-selection-background-color);
  color: var(--oneflow-component-selection-color);
}
:host(oneflow-drop-down-list.oneflow-component.card-view) .selection-area p.selected:hover {
  color: var(--oneflow-component-selection-color);
  background-color: var(--oneflow-component-selection-background-color);
}
:host(oneflow-drop-down-list.oneflow-component.card-view) .selection-area p:hover {
  cursor: pointer;
  background-color: var(--oneflow-component-background-color-hover);
  /*color: var(--oneflow-component-color);*/
}
:host(oneflow-drop-down-list.oneflow-component.card-view) button {
  background-color: var(--oneflow-component-background-color);
  opacity: 1;
  position: absolute;
  top: 0px;
  width: 38px;
  height: 36px;
  border: none;
}
:host(oneflow-drop-down-list.oneflow-component.card-view) button.drop-down-arrow {
  right: -26px;
  border-radius: 0;
}

:host(oneflow-drop-down-list.oneflow-component[disabled]) .input-area input {
  background-color: unset;
  pointer-events: none;
  color: var(--oneflow-component-font-color);
}
:host(oneflow-drop-down-list.oneflow-component[disabled]) button.drop-down-arrow {
  display: none;
}
:host(oneflow-drop-down-list.oneflow-component[disabled]) button.drop-down-clear {
  display: none;
}

:host(oneflow-drop-down-list.oneflow-component) > .tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.25rem;
  margin-top: 0.5rem;
}
:host(oneflow-drop-down-list.oneflow-component) > label {
  z-index: 1;
  color: var(--of-component-label-color);
  opacity: 1;
  transition: all ease-in 0.2s;
  pointer-events: none;
}
:host(oneflow-drop-down-list.oneflow-component) > label.allow-drop {
  position: absolute;
  margin-top: -3.2rem;
}
:host(oneflow-drop-down-list.oneflow-component) > label.drop {
  margin-top: -1.6rem;
  transition: all ease-in 0.2s;
  opacity: 0.5;
  padding-left: 0.25rem;
}
:host(oneflow-drop-down-list.oneflow-component) .input-area {
  position: relative;
}
:host(oneflow-drop-down-list.oneflow-component) input.error {
  border-color: var(--oneflow-component-error-color);
}
:host(oneflow-drop-down-list.oneflow-component).card-view div > input {
  background-color: white;
  border: none;
}
:host(oneflow-drop-down-list.oneflow-component) .selection-area {
  position: absolute;
  right: 0px;
  left: 0px;
  left: 0px;
  background-color: var(--oneflow-component-background-color);
  border-color: var(--oneflow-component-border-color);
  max-height: 300px;
  overflow-x: hidden;
  overflow-y: auto;
  display: none;
  z-index: 100;
  padding: 0px;
  margin: 0px;
  margin-top: -1px;
  min-height: 3rem;
  border: 1px solid var(--oneflow-component-border-color);
}
:host(oneflow-drop-down-list.oneflow-component) .selection-area input {
  height: 2rem;
  border-style: none;
  padding-left: 28px;
}
:host(oneflow-drop-down-list.oneflow-component) .selection-area .search-box {
  border-bottom: solid 1px var(--oneflow-component-border-color);
  position: sticky;
}
:host(oneflow-drop-down-list.oneflow-component) .selection-area .search-box-icon {
  position: absolute;
  left: 4px;
  top: 4px;
}
:host(oneflow-drop-down-list.oneflow-component) .selection-area p {
  font-size: var(--oneflow-component-font-size);
  margin: 2px;
  padding: 2px;
}
:host(oneflow-drop-down-list.oneflow-component) .selection-area p.hidden {
  display: none;
}
:host(oneflow-drop-down-list.oneflow-component) .selection-area p.selected {
  background-color: var(--oneflow-component-selection-background-color);
  color: var(--oneflow-component-selection-color);
}
:host(oneflow-drop-down-list.oneflow-component) .selection-area p.selected:hover {
  color: var(--oneflow-component-selection-color);
  background-color: var(--oneflow-component-selection-background-color);
}
:host(oneflow-drop-down-list.oneflow-component) .selection-area p:hover {
  cursor: pointer;
  background-color: var(--oneflow-component-background-color-hover);
  /*color: var(--oneflow-component-color);*/
}
:host(oneflow-drop-down-list.oneflow-component) button {
  background-color: var(--oneflow-component-background-color);
  opacity: 1;
  position: absolute;
  top: 4px;
  width: 2rem;
  height: 2rem;
  border-radius: 0;
}
:host(oneflow-drop-down-list.oneflow-component) button:hover {
  background-color: var(--oneflow-component-selection-background-color-hover);
  color: var(--oneflow-component-selection-color);
  cursor: pointer;
}
:host(oneflow-drop-down-list.oneflow-component) button.drop-down-arrow {
  right: -2rem;
}
:host(oneflow-drop-down-list.oneflow-component) button.drop-down-clear {
  right: -0.25rem;
}

:host(oneflow-tag) {
  margin: 0px;
  padding: 0px;
}
:host(oneflow-tag) div {
  background-color: var(--oneflow-component-background-color);
  border: 1px solid var(--oneflow-component-border-color);
  padding: 0.25rem;
  padding-top: 0.125rem;
  border-radius: 0.25rem;
  display: inline-block;
  font-family: var(--oneflow-component-font-family);
  font-size: 0.875rem;
}
:host(oneflow-tag) button {
  float: right;
  margin: 0px 4px;
  width: 1rem;
  height: 1rem;
  padding: 0px;
  border-radius: 0.25rem;
  border: 1px solid var(--oneflow-component-border-color);
  background-color: var(--oneflow-component-background-color);
  outline: none;
  color: var(--oneflow-component-font-color);
  cursor: pointer;
  font-size: 0.625rem;
}
:host(oneflow-tag) button:hover:not([disabled]) {
  transition: all 0.5s;
  background-color: var(--oneflow-component-background-color-hover);
}

oneflow-textarea {
  position: relative;
}

:host(oneflow-textarea.oneflow-component.validation-failed) textarea, :host(oneflow-textarea.oneflow-component.validation-failed) textarea:focus {
  border-color: var(--oneflow-component-error-color);
}

:host(oneflow-textarea.oneflow-component.docked) {
  margin: 0;
  margin-bottom: -24px;
  padding: 0;
  height: 100%;
  width: 100%;
  overflow: clip;
}
:host(oneflow-textarea.oneflow-component.docked) .html-editor {
  height: 100%;
  width: 100%;
  /* Token colors (use !important in case of aggressive resets) */
}
:host(oneflow-textarea.oneflow-component.docked) .html-editor .html-editor-wrap, :host(oneflow-textarea.oneflow-component.docked) .html-editor .html-editor-wrap textarea, :host(oneflow-textarea.oneflow-component.docked) .html-editor .html-editor-hl {
  box-sizing: border-box;
}
:host(oneflow-textarea.oneflow-component.docked) .html-editor .html-editor-hl {
  -ms-overflow-style: none;
}
:host(oneflow-textarea.oneflow-component.docked) .html-editor .html-editor-hl::-webkit-scrollbar {
  display: none;
}
:host(oneflow-textarea.oneflow-component.docked) .html-editor .html-editor-hl .t-punc {
  color: #b77728 !important;
}
:host(oneflow-textarea.oneflow-component.docked) .html-editor .html-editor-hl .t-attr {
  color: #1d5a7c !important;
}
:host(oneflow-textarea.oneflow-component.docked) .html-editor .html-editor-h1 .t-tag {
  color: rgb(120, 121, 121) !important;
}
:host(oneflow-textarea.oneflow-component.docked) .html-editor .html-editor-h1 .t-tag-open {
  color: brown !important;
}
:host(oneflow-textarea.oneflow-component.docked) .html-editor .html-editor-h1 .t-tag-close {
  color: brown !important;
}
:host(oneflow-textarea.oneflow-component.docked) .html-editor .html-editor-hl .t-str {
  color: #045d45 !important;
}
:host(oneflow-textarea.oneflow-component.docked) .html-editor .html-editor-hl .t-comm {
  color: green !important;
}
:host(oneflow-textarea.oneflow-component.docked) .html-editor .html-editor-h1 .t-text {
  color: #27292c !important;
}
:host(oneflow-textarea.oneflow-component.docked) .html-editor .html-editor-hl .t-err {
  -webkit-text-decoration: underline wavy #bc0505;
          text-decoration: underline wavy #bc0505;
  text-underline-offset: 2px;
}
:host(oneflow-textarea.oneflow-component.docked) .html-editor .html-editor-hl .t-err-pos {
  background: rgba(248, 113, 113, 0.18);
  box-shadow: inset 0 -2px 0 #cd0505;
}
:host(oneflow-textarea.oneflow-component.docked) .html-editor .html-editor-wrap {
  height: 100%;
  width: 100%;
}
:host(oneflow-textarea.oneflow-component.docked) .html-editor .html-editor-h1 {
  height: 100%;
  width: 100%;
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, "Liberation Mono", monospace;
  font-size: 13px;
  line-height: 1.6;
}
:host(oneflow-textarea.oneflow-component.docked) .html-editor text-area {
  height: 100%;
  width: 100%;
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, "Liberation Mono", monospace;
  font-size: 13px;
  line-height: 1.6;
}
:host(oneflow-textarea.oneflow-component.docked) .css-editor {
  height: 100%;
  width: 100%;
  /* Token colors (use !important in case of aggressive resets) */
}
:host(oneflow-textarea.oneflow-component.docked) .css-editor .css-editor-wrap, :host(oneflow-textarea.oneflow-component.docked) .css-editor .css-editor-wrap textarea, :host(oneflow-textarea.oneflow-component.docked) .css-editor .css-editor-hl {
  box-sizing: border-box;
}
:host(oneflow-textarea.oneflow-component.docked) .css-editor .css-editor-hl {
  -ms-overflow-style: none;
}
:host(oneflow-textarea.oneflow-component.docked) .css-editor .css-editor-hl::-webkit-scrollbar {
  display: none;
}
:host(oneflow-textarea.oneflow-component.docked) .css-editor .css-editor-hl .t-punc {
  color: #6b7280 !important;
}
:host(oneflow-textarea.oneflow-component.docked) .css-editor .css-editor-hl .t-key {
  color: #014c75 !important;
}
:host(oneflow-textarea.oneflow-component.docked) .css-editor .css-editor-hl .t-str {
  color: #024b37 !important;
}
:host(oneflow-textarea.oneflow-component.docked) .css-editor .css-editor-hl .t-num {
  color: #6d28d9 !important;
}
:host(oneflow-textarea.oneflow-component.docked) .css-editor .css-editor-hl .t-bool {
  color: #4338ca !important;
}
:host(oneflow-textarea.oneflow-component.docked) .css-editor .css-editor-hl .t-comment {
  color: green !important;
}
:host(oneflow-textarea.oneflow-component.docked) .css-editor .css-editor-hl .t-err {
  -webkit-text-decoration: underline wavy #f87171;
          text-decoration: underline wavy #f87171;
  text-underline-offset: 2px;
}
:host(oneflow-textarea.oneflow-component.docked) .css-editor .css-editor-hl .t-err-pos {
  background: rgba(248, 113, 113, 0.18);
  box-shadow: inset 0 -2px 0 #fca5a5;
}
:host(oneflow-textarea.oneflow-component.docked) .css-editor .css-editor-wrap {
  height: 100%;
  width: 100%;
}
:host(oneflow-textarea.oneflow-component.docked) .css-editor .css-editor-h1 {
  height: 100%;
  width: 100%;
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, "Liberation Mono", monospace;
  font-size: 13px;
  line-height: 1.6;
}
:host(oneflow-textarea.oneflow-component.docked) .css-editor text-area {
  height: 100%;
  width: 100%;
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, "Liberation Mono", monospace;
  font-size: 13px;
  line-height: 1.6;
}
:host(oneflow-textarea.oneflow-component.docked) .json-editor {
  height: 100%;
  width: 100%;
  /* Token colors (use !important in case of aggressive resets) */
}
:host(oneflow-textarea.oneflow-component.docked) .json-editor .json-editor-wrap, :host(oneflow-textarea.oneflow-component.docked) .json-editor .json-editor-wrap textarea, :host(oneflow-textarea.oneflow-component.docked) .json-editor .json-editor-hl {
  box-sizing: border-box;
}
:host(oneflow-textarea.oneflow-component.docked) .json-editor .json-editor-hl {
  -ms-overflow-style: none;
}
:host(oneflow-textarea.oneflow-component.docked) .json-editor .json-editor-hl::-webkit-scrollbar {
  display: none;
}
:host(oneflow-textarea.oneflow-component.docked) .json-editor .json-editor-hl .t-punc {
  color: #6b7280 !important;
}
:host(oneflow-textarea.oneflow-component.docked) .json-editor .json-editor-hl .t-key {
  color: #014c75 !important;
}
:host(oneflow-textarea.oneflow-component.docked) .json-editor .json-editor-hl .t-str {
  color: #024b37 !important;
}
:host(oneflow-textarea.oneflow-component.docked) .json-editor .json-editor-hl .t-num {
  color: #6d28d9 !important;
}
:host(oneflow-textarea.oneflow-component.docked) .json-editor .json-editor-hl .t-bool {
  color: #4338ca !important;
}
:host(oneflow-textarea.oneflow-component.docked) .json-editor .json-editor-hl .t-nil {
  color: #be123c !important;
}
:host(oneflow-textarea.oneflow-component.docked) .json-editor .json-editor-hl .t-err {
  -webkit-text-decoration: underline wavy #f87171;
          text-decoration: underline wavy #f87171;
  text-underline-offset: 2px;
}
:host(oneflow-textarea.oneflow-component.docked) .json-editor .json-editor-hl .t-err-pos {
  background: rgba(248, 113, 113, 0.18);
  box-shadow: inset 0 -2px 0 #fca5a5;
}
:host(oneflow-textarea.oneflow-component.docked) .json-editor .json-editor-wrap {
  height: 100%;
  width: 100%;
}
:host(oneflow-textarea.oneflow-component.docked) .json-editor .json-editor-h1 {
  height: 100%;
  width: 100%;
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, "Liberation Mono", monospace;
  font-size: 13px;
  line-height: 1.6;
}
:host(oneflow-textarea.oneflow-component.docked) .json-editor textarea {
  height: 100%;
  width: 100%;
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, "Liberation Mono", monospace;
  font-size: 13px;
  line-height: 1.6;
}
:host(oneflow-textarea.oneflow-component.docked) .markdown-editor {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  height: 100%;
}
:host(oneflow-textarea.oneflow-component.docked) .markdown-editor textarea {
  flex: 1;
  height: calc(100% - 34px);
  border: none;
  padding: 1rem;
  resize: none;
}
:host(oneflow-textarea.oneflow-component.docked) .markdown-editor .markdown-preview {
  display: none;
  flex: 1;
  padding-left: 1rem;
  padding-right: 1rem;
  border-left: 2px solid var(--oneflow-component-theme-color);
  overflow-y: auto;
  height: calc(100% - 34px);
}
:host(oneflow-textarea.oneflow-component.docked) .markdown-editor .markdown-preview.active {
  display: block;
}
:host(oneflow-textarea.oneflow-component.docked) .markdown-toolbar {
  width: 100%;
  height: 24px;
  font-size: 16px;
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-items: center;
  gap: 12px;
  background-color: white;
  padding: 4px;
  padding-left: 24px;
  border: solid 1px var(--oneflow-component-border-color);
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}
:host(oneflow-textarea.oneflow-component.docked) .markdown-toolbar button {
  padding: 0;
  margin: 0;
}
:host(oneflow-textarea.oneflow-component.docked) textarea {
  height: 100%;
  width: 100%;
  border-width: 0px;
  margin: 0px;
  padding: 1rem;
  resize: none;
}
:host(oneflow-textarea.oneflow-component.docked) label.allow-drop {
  display: none;
}
:host(oneflow-textarea.oneflow-component.docked) label.drop {
  display: inline-block;
  margin-top: 1rem;
  margin-left: 1rem;
}
:host(oneflow-textarea.oneflow-component.docked) [enable-markdown] label {
  display: none;
}

:host(oneflow-textarea.oneflow-component) label {
  margin-top: 0.5rem;
  margin-left: 0.25rem;
}
:host(oneflow-textarea.oneflow-component) label.allow-drop {
  margin-top: -1.4rem;
}
:host(oneflow-textarea.oneflow-component) label.drop {
  margin-top: 0.4rem;
}
:host(oneflow-textarea.oneflow-component) textarea {
  font-size: var(--oneflow-component-font-size);
  font-family: var(--oneflow-component-font-family);
  background-color: var(--oneflow-component-background-color);
  border: 0px solid;
  border-color: var(--oneflow-component-border-color);
  margin: 0px;
  width: 100%;
  height: 100%;
  box-sizing: border-box;
  padding: 0.5rem;
  border-width: 1px;
}
:host(oneflow-textarea.oneflow-component) textarea.error {
  color: var(--oneflow-component-error-color);
}
:host(oneflow-textarea.oneflow-component) textarea::-moz-selection {
  color: var(--oneflow-component-selection-color);
  background: var(--oneflow-component-selection-background-color);
}
:host(oneflow-textarea.oneflow-component) textarea::selection {
  color: var(--oneflow-component-selection-color);
  background: var(--oneflow-component-selection-background-color);
}
:host(oneflow-textarea.oneflow-component) textarea:focus {
  border-color: var(--oneflow-component-border-color-focus);
  outline: none;
}

:host(oneflow-date-selection.oneflow-component) .input-area {
  position: relative;
}
:host(oneflow-date-selection.oneflow-component) .selection-area {
  position: absolute;
  right: -42px;
  left: 0px;
  top: 41px;
  background-color: var(--oneflow-component-background-color);
  overflow-x: hidden;
  overflow-y: auto;
  display: none;
  z-index: 100;
  padding: 0px;
  margin: 0px;
  margin-top: -1px;
  border: 2px solid var(--oneflow-component-border-color);
  width: 254px;
}
:host(oneflow-date-selection.oneflow-component) .selection-area .header {
  width: 100%;
  padding: 4px;
}
:host(oneflow-date-selection.oneflow-component) .selection-area .header .year {
  margin-left: 8px;
  cursor: pointer;
}
:host(oneflow-date-selection.oneflow-component) .selection-area .header .month {
  margin-left: 4px;
  cursor: pointer;
}
:host(oneflow-date-selection.oneflow-component) .selection-area .header .month-selection {
  margin-right: 12px;
  float: right;
  width: 24px;
  height: 24px;
  vertical-align: middle;
  cursor: pointer;
}
:host(oneflow-date-selection.oneflow-component) .selection-area .header .month-selection:hover {
  background-color: var(--oneflow-component-selection-background-color-hover);
  color: var(--oneflow-component-selection-color);
  cursor: pointer;
}
:host(oneflow-date-selection.oneflow-component) .selection-area table {
  float: none;
  table-layout: fixed;
  width: 100%;
}
:host(oneflow-date-selection.oneflow-component) .selection-area input {
  border-color: var(--oneflow-component-border-color);
  height: 32px;
  border-style: none;
  padding-left: 28px;
}
:host(oneflow-date-selection.oneflow-component) .selection-area thead {
  font-weight: bold;
  background-color: var(--oneflow-component-background-solid-color);
}
:host(oneflow-date-selection.oneflow-component) .selection-area tbody {
  background-color: var(--oneflow-component-border-color);
}
:host(oneflow-date-selection.oneflow-component) .selection-area td {
  text-align: center;
  min-width: 32px;
  height: 32px;
  box-sizing: border-box;
}
:host(oneflow-date-selection.oneflow-component) .selection-area td.current {
  background-color: var(--oneflow-component-theme-color);
  color: var(--oneflow-component-selection-color);
}
:host(oneflow-date-selection.oneflow-component) .selection-area td.selected {
  border: 2px solid var(--oneflow-component-theme-color);
}
:host(oneflow-date-selection.oneflow-component) .selection-area td.outside {
  opacity: 0.3;
}
:host(oneflow-date-selection.oneflow-component) .selection-area td:hover {
  cursor: pointer;
  background-color: var(--oneflow-component-selection-background-color-hover);
  opacity: 1;
  color: var(--oneflow-component-selection-color);
}
:host(oneflow-date-selection.oneflow-component) button {
  background-color: var(--oneflow-component-background-color);
  opacity: 1;
  position: absolute;
  top: 0px;
  width: 38px;
  height: 36px;
  border: none;
  border-radius: 0;
}
:host(oneflow-date-selection.oneflow-component) button:hover {
  background-color: var(--oneflow-component-selection-background-color-hover);
  color: var(--oneflow-component-selection-color);
  cursor: pointer;
}
:host(oneflow-date-selection.oneflow-component) button.drop-down-arrow {
  right: -2rem;
}
:host(oneflow-date-selection.oneflow-component) button.drop-down-clear {
  right: -0.25rem;
}

:host(oneflow-time-selection.oneflow-component) .input-area {
  position: relative;
}
:host(oneflow-time-selection.oneflow-component) .selection-area {
  position: absolute;
  left: 0px;
  top: 40px;
  z-index: 100;
  padding: 0px;
  margin: 0px;
  border: 2px solid var(--oneflow-component-border-color);
  width: 100%;
  background-color: var(--oneflow-component-background-color);
  padding: 4px;
  display: none;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  max-width: 510px;
}
:host(oneflow-time-selection.oneflow-component) .selection-area h1 {
  font-size: 14px;
  padding: 0px;
  margin: 0px;
  border: none;
  margin-top: 4px;
  font-weight: 400;
}
:host(oneflow-time-selection.oneflow-component) .selection-area p {
  box-sizing: border-box;
  padding: 2px;
  margin: 0px;
  line-height: 28px;
  border: 1px solid var(--oneflow-component-border-color);
  flex: 0 1 6.6666%;
}
:host(oneflow-time-selection.oneflow-component) .selection-area p.current {
  background-color: var(--oneflow-component-theme-color);
  color: var(--oneflow-component-selection-color);
}
:host(oneflow-time-selection.oneflow-component) .selection-area p.selected {
  border: 2px solid var(--oneflow-component-theme-color);
}
:host(oneflow-time-selection.oneflow-component) .selection-area p:hover {
  cursor: pointer;
  background-color: var(--oneflow-component-selection-background-color-hover);
  opacity: 1;
  color: var(--oneflow-component-selection-color);
}
:host(oneflow-time-selection.oneflow-component) .selection-area .hours {
  display: flex;
  flex-flow: row wrap;
  text-align: center;
}
:host(oneflow-time-selection.oneflow-component) .selection-area .minutes {
  display: flex;
  flex-flow: row wrap;
  text-align: center;
}
:host(oneflow-time-selection.oneflow-component) .selection-area .seconds {
  display: flex;
  flex-flow: row wrap;
  text-align: center;
}
:host(oneflow-time-selection.oneflow-component) .selection-area .am-pm {
  margin-top: 4px;
  display: flex;
  flex-flow: row wrap;
  text-align: center;
}
:host(oneflow-time-selection.oneflow-component) .selection-area .am-pm p {
  width: 32px;
}
:host(oneflow-time-selection.oneflow-component) button {
  background-color: var(--oneflow-component-background-color);
  opacity: 1;
  position: absolute;
  top: 0px;
  width: 38px;
  height: 36px;
  border: none;
  border-radius: 0;
}
:host(oneflow-time-selection.oneflow-component) button:hover {
  background-color: var(--oneflow-component-selection-background-color-hover);
  color: var(--oneflow-component-selection-color);
  cursor: pointer;
}
:host(oneflow-time-selection.oneflow-component) button.drop-down-arrow {
  right: -2rem;
}
:host(oneflow-time-selection.oneflow-component) button.drop-down-clear {
  right: -0.25rem;
}

:host(.label) {
  padding-top: 1rem;
}

:host(.oneflow-component.placeholder) {
  height: auto;
  padding-top: 0;
  line-height: var(--oneflow-component-editor-size);
}
:host(.oneflow-component.placeholder) label {
  visibility: hidden;
  transition: none;
  opacity: 0;
  left: 4px;
  position: absolute;
  transition: none;
  visibility: unset;
  opacity: 0.5;
}
:host(.oneflow-component.placeholder) label.hide {
  visibility: hidden;
  opacity: 0;
}

:host(.oneflow-component.validation-failed) input[type=password], :host(.oneflow-component.validation-failed) input[type=text], :host(.oneflow-component.validation-failed) input[type=number] {
  border-color: var(--oneflow-component-error-color);
}

:host(oneflow-spinner.white) div {
  background: white;
}

:host(oneflow-spinner) {
  position: relative;
  font-family: var(--oneflow-component-font-family);
}
:host(oneflow-spinner) div {
  width: 0.7rem;
  height: 0.7rem;
  background: var(--oneflow-component-theme-color);
  border-radius: 50%;
  display: inline-block;
  animation: slideDotLoader 1s infinite;
}
:host(oneflow-spinner) div:nth-child(1) {
  animation-delay: 0.25s;
}
:host(oneflow-spinner) div:nth-child(2) {
  animation-delay: 0.5s;
}
:host(oneflow-spinner) div:nth-child(3) {
  animation-delay: 0.75s;
}
@keyframes slideDotLoader {
  0% {
    transform: scale(1);
  }
  50% {
    opacity: 0.3;
    transform: scale(1.5);
  }
  100% {
    transform: scale(1);
  }
}

/* Variables
    ========================================================================== */
/* Layout
    ========================================================================== */
:host(oneflow-grid) {
  display: block;
  height: 100%;
  /* normalize
  ========================================================================== */
  /**
  * 1. Change the font styles in all browsers.
  * 2. Remove the margin in Firefox and Safari.
  */
  /**
  * Show the overflow in IE.
  * 1. Show the overflow in Edge.
  */
  /**
  * Remove the inheritance of text transform in Edge, Firefox, and IE.
  * 1. Remove the inheritance of text transform in Firefox.
  */
  /**
  * Correct the inability to style clickable types in iOS and Safari.
  */
  /**
  * Remove the inner border and padding in Firefox.
  */
  /**
  * Restore the focus styles unset by the previous rule.
  */
  /* end normalize
  ========================================================================== */
  /* Header
     ========================================================================== */
  /* Footer
     ========================================================================== */
  /* Body
     ========================================================================== */
  /* Table View
     ========================================================================== */
  /* Card View
     ========================================================================== */
}
:host(oneflow-grid) h1 {
  margin: 0px;
  font-size: 1.8rem;
  color: var(--oneflow-component-font-color);
}
:host(oneflow-grid) [hidden] {
  display: none !important;
}
:host(oneflow-grid) button,
:host(oneflow-grid) input,
:host(oneflow-grid) optgroup,
:host(oneflow-grid) select,
:host(oneflow-grid) textarea {
  font-family: inherit; /* 1 */
  font-size: 100%; /* 1 */
  line-height: 1.15; /* 1 */
  margin: 0; /* 2 */
}
:host(oneflow-grid) button,
:host(oneflow-grid) input {
  /* 1 */
  overflow: visible;
}
:host(oneflow-grid) button,
:host(oneflow-grid) select {
  /* 1 */
  text-transform: none;
}
:host(oneflow-grid) button,
:host(oneflow-grid) [type=button],
:host(oneflow-grid) [type=reset],
:host(oneflow-grid) [type=submit] {
  -webkit-appearance: button;
}
:host(oneflow-grid) button::-moz-focus-inner,
:host(oneflow-grid) [type=button]::-moz-focus-inner,
:host(oneflow-grid) [type=reset]::-moz-focus-inner,
:host(oneflow-grid) [type=submit]::-moz-focus-inner {
  border-style: none;
  padding: 0;
}
:host(oneflow-grid) button:-moz-focusring,
:host(oneflow-grid) [type=button]:-moz-focusring,
:host(oneflow-grid) [type=reset]:-moz-focusring,
:host(oneflow-grid) [type=submit]:-moz-focusring {
  outline: 1px dotted ButtonText;
}
:host(oneflow-grid) .oneflow-grid-layout {
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: auto 1fr auto;
  grid-template-areas: "grid-header" "grid-body" "grid-footer";
  position: relative;
  height: 100%;
  color: var(--oneflow-component-font-color);
  background-color: var(--oneflow-component-background-color);
  font-size: var(--oneflow-component-font-size);
  font-family: var(--oneflow-component-font-family);
}
:host(oneflow-grid) .oneflow-grid-no-entries .oneflow-grid-table {
  pointer-events: all;
}
:host(oneflow-grid) .oneflow-grid-loading,
:host(oneflow-grid) .oneflow-grid-resizing {
  pointer-events: none;
}
:host(oneflow-grid) .oneflow-grid-loading-delay > .oneflow-grid-footer > *:not(.oneflow-grid-footer-text),
:host(oneflow-grid) .oneflow-grid-loading-delay > .oneflow-grid-table-holder,
:host(oneflow-grid) .oneflow-grid-loading-delay > .oneflow-grid-cardholder,
:host(oneflow-grid) .oneflow-grid-loading-delay > .oneflow-grid-header > *:not(.oneflow-grid-title) {
  opacity: 0.5;
}
:host(oneflow-grid) .oneflow-grid-loading-delay > .oneflow-grid-table-holder > .oneflow-grid-table > tbody {
  visibility: hidden;
}
:host(oneflow-grid) .oneflow-grid-header {
  grid-area: grid-header;
  display: flex;
  flex-flow: row wrap;
  justify-content: space-between;
  align-items: center;
  padding: 12px 24px;
  background-color: var(--oneflow-component-theme-color);
  color: var(--oneflow-component-theme-background-color2);
  border-top: 1px solid var(--oneflow-component-background-color);
  text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.3);
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}
:host(oneflow-grid) .oneflow-grid-header h1 {
  color: var(--oneflow-component-theme-background-color2);
}
:host(oneflow-grid) .oneflow-grid-header .oneflow-grid-filter button {
  height: 38px;
  margin-top: -1px;
  background-color: var(--oneflow-component-theme-background-color);
  border: none;
  color: var(--oneflow-component-theme-color);
}
:host(oneflow-grid) .oneflow-grid-header .oneflow-grid-filter button:hover {
  color: var(--oneflow-component-theme-background-color2);
  cursor: pointer;
}
:host(oneflow-grid) .oneflow-grid-title {
  margin: 12px 0px;
}
:host(oneflow-grid) .oneflow-grid-filter {
  display: flex;
  height: 36px;
  padding-bottom: 3px;
  font-size: var(--oneflow-component-font-size);
}
:host(oneflow-grid) .oneflow-grid-filter.oneflow-grid-filter-docked {
  position: absolute;
  top: 0px;
  right: 0px;
  z-index: 1;
  background-color: #ffffff;
  border: calc(1px * 2) solid var(--oneflow-component-theme-color);
  padding: 4px 50px 5px 5px;
}
:host(oneflow-grid) .oneflow-grid-filter > input {
  display: block;
  padding: 0px 4px 0px 4px;
  border: 0px solid var(--oneflow-component-border-color);
  border-bottom-width: 1px;
  margin-bottom: 0px;
  height: inherit;
  color: var(--oneflow-component-font-color);
  background-color: var(--oneflow-component-background-color);
  font-size: inherit;
}
:host(oneflow-grid) .oneflow-grid-filter > input:focus, :host(oneflow-grid) .oneflow-grid-filter > input:hover {
  border-color: var(--oneflow-component-theme-color);
}
:host(oneflow-grid) .oneflow-grid-filter > input:focus {
  outline: none;
  border-bottom-width: 3px;
  margin-bottom: 1px-3px;
  transition: all linear 0.1s;
}
:host(oneflow-grid) .oneflow-grid-filter > button {
  padding: 0px;
  height: 32px;
  width: 32px;
}
:host(oneflow-grid) .oneflow-grid-search-icon {
  display: block;
}
:host(oneflow-grid) .oneflow-grid-filter-show-button {
  position: absolute;
  top: 12px;
  right: 14px;
  z-index: 2;
  background: transparent;
  padding: 2px;
  border: none;
  height: 24px;
  width: 24px;
}
:host(oneflow-grid) .oneflow-grid-filter-show-button:focus {
  outline: none;
}
:host(oneflow-grid) .oneflow-grid-filter-icon {
  display: block;
  position: absolute;
  top: 0px;
  left: 0px;
  bottom: 0px;
  right: 0px;
}
:host(oneflow-grid) .oneflow-grid-filter-icon > svg {
  width: 100%;
  height: 100%;
}
:host(oneflow-grid) .oneflow-grid-filter-icon > svg > path {
  fill: var(--oneflow-component-font-color);
}
:host(oneflow-grid) .oneflow-grid-layout:not([filtered]) .oneflow-grid-filter-show-button:not(:focus):not(:hover) > .oneflow-grid-filter-icon.oneflow-grid-filter-fill-icon {
  display: none;
}
:host(oneflow-grid) .oneflow-grid-layout:not([filtered]) .oneflow-grid-filter-show-button:focus > .oneflow-grid-filter-icon.oneflow-grid-filter-fill-icon, :host(oneflow-grid) .oneflow-grid-layout:not([filtered]) .oneflow-grid-filter-show-button:hover > .oneflow-grid-filter-icon.oneflow-grid-filter-fill-icon {
  z-index: -1;
}
:host(oneflow-grid) .oneflow-grid-layout:not([filtered]) .oneflow-grid-filter-show-button:focus > .oneflow-grid-filter-icon.oneflow-grid-filter-fill-icon > svg > path, :host(oneflow-grid) .oneflow-grid-layout:not([filtered]) .oneflow-grid-filter-show-button:hover > .oneflow-grid-filter-icon.oneflow-grid-filter-fill-icon > svg > path {
  fill: #e0e0e0;
}
:host(oneflow-grid) .oneflow-grid-layout[filtered] .oneflow-grid-filter-show-button > .oneflow-grid-filter-icon:not(.oneflow-grid-filter-fill-icon) {
  display: none;
}
:host(oneflow-grid) .oneflow-grid-footer {
  grid-area: grid-footer;
  display: flex;
  flex-flow: row wrap;
  justify-content: space-between;
  align-items: center;
  padding: 12px 24px;
  min-height: 48px;
}
:host(oneflow-grid) .oneflow-grid-footer-text {
  display: block;
}
:host(oneflow-grid) .oneflow-grid-footer-text > * {
  display: inline;
}
:host(oneflow-grid) .oneflow-grid-page-selector {
  margin: 0px;
  padding: 0px;
  list-style-type: none;
  white-space: nowrap;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}
:host(oneflow-grid) .oneflow-grid-page-selector > li {
  display: inline-block;
}
:host(oneflow-grid) .oneflow-grid-page-selector > li > button {
  height: 46px;
  min-width: 46px;
  color: var(--oneflow-component-font-color);
  background-color: var(--oneflow-component-background-color);
  border: 1px solid var(--oneflow-component-border-color);
}
:host(oneflow-grid) .oneflow-grid-page-selector > li > button:focus {
  outline: none;
}
:host(oneflow-grid) .oneflow-grid-page-selector > li:not(.current):not(.disabled) > button {
  cursor: pointer;
}
:host(oneflow-grid) .oneflow-grid-page-selector > li:not(.current):not(.disabled) > button:hover, :host(oneflow-grid) .oneflow-grid-page-selector > li:not(.current):not(.disabled) > button:focus {
  background-color: var(--oneflow-component-background-color-hover);
}
:host(oneflow-grid) .oneflow-grid-page-selector > li:not(.current):not(:last-child) > button {
  border-right-width: 0px;
}
:host(oneflow-grid) .oneflow-grid-page-selector > li.current > button {
  color: var(--oneflow-component-selection-color);
  background-color: var(--oneflow-component-theme-color);
  border-color: var(--oneflow-component-theme-color);
  pointer-events: none;
}
:host(oneflow-grid) .oneflow-grid-page-selector > li.current + li > button {
  border-left-width: 0px;
}
:host(oneflow-grid) .oneflow-grid-page-selector > li.disabled {
  pointer-events: none;
}
:host(oneflow-grid) .oneflow-grid-page-selector > li.disabled > button {
  color: rgba(176, 176, 176, 0.7);
  background-color: rgba(208, 208, 208, 0.7);
}
:host(oneflow-grid) .oneflow-grid-body {
  grid-area: grid-body;
}
:host(oneflow-grid) .oneflow-grid-table-holder {
  overflow-y: auto;
}
:host(oneflow-grid) .oneflow-grid-table {
  table-layout: fixed;
  width: 100%;
  padding: 0px;
  border-collapse: separate;
  border-spacing: 0px;
  overflow-y: auto;
}
:host(oneflow-grid) .oneflow-grid-table,
:host(oneflow-grid) .oneflow-grid-table > thead > tr > th,
:host(oneflow-grid) .oneflow-grid-table > tbody > tr > td {
  border: 0px solid #e0e0e0;
}
:host(oneflow-grid) .oneflow-grid-table > tbody > tr,
:host(oneflow-grid) .oneflow-grid-table > thead > tr {
  height: 48px;
}
:host(oneflow-grid) .oneflow-grid-table > thead > tr > th,
:host(oneflow-grid) .oneflow-grid-table > tbody > tr > td {
  padding: 4px 12px;
  text-align: left;
}
:host(oneflow-grid) .oneflow-grid-table > thead > tr > th {
  position: sticky;
  top: 0px;
  background-color: #ffffff;
  box-shadow: 0px 2px 2px -1px rgba(0, 0, 0, 0.4);
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  font-weight: bold;
  transition: all linear 0.2s;
}
:host(oneflow-grid) .oneflow-grid-table > thead > tr > th .oneflow-grid-no-orderby {
  pointer-events: none;
}
:host(oneflow-grid) .oneflow-grid-table > thead > tr > th:not(.oneflow-grid-no-orderby) {
  cursor: pointer;
}
:host(oneflow-grid) .oneflow-grid-table > thead > tr > th:not(.oneflow-grid-no-orderby):focus {
  outline: none;
}
:host(oneflow-grid) .oneflow-grid-table > thead > tr > th:not(.oneflow-grid-no-orderby):hover, :host(oneflow-grid) .oneflow-grid-table > thead > tr > th:not(.oneflow-grid-no-orderby):focus {
  background-color: #e0e0e0;
}
:host(oneflow-grid) .oneflow-grid-table > thead > tr > th > div {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  line-height: 1.5;
}
:host(oneflow-grid) .oneflow-grid-table > thead > tr > th.orderby > div, :host(oneflow-grid) .oneflow-grid-table > thead > tr > th.orderby-descending > div {
  position: relative;
  padding-right: var(--oneflow-component-font-size);
}
:host(oneflow-grid) .oneflow-grid-table > thead > tr > th.orderby > div > span:last-child::after, :host(oneflow-grid) .oneflow-grid-table > thead > tr > th.orderby-descending > div > span:last-child::after {
  position: absolute;
  right: 0px;
}
:host(oneflow-grid) .oneflow-grid-table > thead > tr > th.orderby > div > span:last-child::after {
  content: "▲";
}
:host(oneflow-grid) .oneflow-grid-table > thead > tr > th.orderby-descending > div > span:last-child::after {
  content: "▼";
}
:host(oneflow-grid) .oneflow-grid-table > tbody > tr {
  transition: all linear 0.2s;
  background-color: #ffffff;
  cursor: default;
}
:host(oneflow-grid) .oneflow-grid-table > tbody > tr.selected {
  color: var(--oneflow-component-selection-color);
  background-color: var(--oneflow-component-selection-background-color);
}
:host(oneflow-grid) .oneflow-grid-table > tbody > tr.selected > td {
  border-color: var(--oneflow-component-selection-background-color);
}
:host(oneflow-grid) .oneflow-grid-table > tbody > tr.selected > td .oneflow-grid-button {
  color: var(--oneflow-component-selection-background-color);
  background-color: var(--oneflow-component-selection-color);
}
:host(oneflow-grid) .oneflow-grid-table > tbody > tr:focus {
  outline: none;
}
:host(oneflow-grid) .oneflow-grid-table > tbody > tr:hover:not(.selected), :host(oneflow-grid) .oneflow-grid-table > tbody > tr:focus:not(.selected) {
  background-color: #e0e0e0;
}
:host(oneflow-grid) .oneflow-grid-table > tbody > tr:hover:not(.selected) > td, :host(oneflow-grid) .oneflow-grid-table > tbody > tr:focus:not(.selected) > td {
  border-color: #e0e0e0;
}
:host(oneflow-grid) .oneflow-grid-table > tbody > tr:not(:last-child) > td {
  border-bottom-width: 1px;
}
:host(oneflow-grid) .oneflow-grid-table > tbody > tr > td {
  word-wrap: break-word;
}
:host(oneflow-grid) .oneflow-grid-table.table-bordered {
  border-width: 1px;
  border-top-width: 0px;
}
:host(oneflow-grid) .oneflow-grid-table.table-bordered > thead > tr > th {
  border-width: 1px;
  border-top-width: calc(1px * 2);
}
:host(oneflow-grid) .oneflow-grid-table.table-bordered > tbody > tr > td {
  border-width: 1px;
}
:host(oneflow-grid) .oneflow-grid-table.table-striped > tbody > tr:nth-child(odd):not(.selected):not(:hover):not(:focus) {
  background-color: #f4f4f4;
}
:host(oneflow-grid) .oneflow-grid-view-button {
  color: var(--oneflow-component-selection-color);
  background-color: var(--oneflow-component-theme-color);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 6px;
  width: 24px;
  height: 24px;
  padding: 0px 6px;
  box-sizing: border-box;
  vertical-align: middle;
  border: 1px solid var(--oneflow-component-border-color);
}
:host(oneflow-grid) .oneflow-grid-view-button:link, :host(oneflow-grid) .oneflow-grid-view-button:visited {
  text-decoration: none;
}
:host(oneflow-grid) .oneflow-grid-view-button::before {
  content: "ℹ";
}
:host(oneflow-grid) .oneflow-grid-cardholder {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  grid-template-rows: min-content;
  grid-column-gap: 24px;
  grid-row-gap: 24px;
  align-items: start;
  overflow-y: auto;
}
:host(oneflow-grid) .oneflow-grid-card {
  color: var(--oneflow-component-font-color);
  background-color: #f4f4f4;
  cursor: default;
}
:host(oneflow-grid) .oneflow-grid-card.selected {
  color: var(--oneflow-component-selection-color);
  background-color: var(--oneflow-component-selection-background-color);
}
:host(oneflow-grid) .oneflow-grid-card.selected .oneflow-grid-button {
  color: var(--oneflow-component-selection-background-color);
  background-color: var(--oneflow-component-selection-color);
}
:host(oneflow-grid) .oneflow-grid-card:hover, :host(oneflow-grid) .oneflow-grid-card:focus-within {
  outline: none;
}
:host(oneflow-grid) .oneflow-grid-card:hover:not(.selected), :host(oneflow-grid) .oneflow-grid-card:focus-within:not(.selected) {
  background-color: #e0e0e0;
}
:host(oneflow-grid) .oneflow-grid-card > a {
  color: inherit;
  background-color: transparent;
}
:host(oneflow-grid) .oneflow-grid-card > a:focus, :host(oneflow-grid) .oneflow-grid-card > a:hover, :host(oneflow-grid) .oneflow-grid-card > a:link, :host(oneflow-grid) .oneflow-grid-card > a:visited {
  text-decoration: none;
  outline: none;
}
:host(oneflow-grid) .oneflow-grid-card-default {
  margin: 0px;
  padding: 12px;
  list-style-type: none;
}
:host(oneflow-grid) .oneflow-grid-card-default > li {
  overflow-wrap: break-word;
}

:host(oneflow-grid[disabled]) > * {
  pointer-events: all;
}

:host(oneflow-card-view) {
  display: block;
  height: 100%;
  /* normalize
    ========================================================================== */
  /**
  * 1. Change the font styles in all browsers.
  * 2. Remove the margin in Firefox and Safari.
  */
  /**
   * Show the overflow in IE.
   * 1. Show the overflow in Edge.
   */
  /**
   * Remove the inheritance of text transform in Edge, Firefox, and IE.
   * 1. Remove the inheritance of text transform in Firefox.
   */
  /**
   * Correct the inability to style clickable types in iOS and Safari.
   */
  /**
   * Remove the inner border and padding in Firefox.
   */
  /**
   * Restore the focus styles unset by the previous rule.
   */
  /* end normalize
     ========================================================================== */
  /* Header
        ========================================================================== */
  /* Footer
        ========================================================================== */
  /* Body
        ========================================================================== */
}
:host(oneflow-card-view) h1 {
  margin: 0px;
  font-size: 1.8rem;
  color: var(--oneflow-component-font-color);
}
:host(oneflow-card-view) [hidden] {
  display: none !important;
}
:host(oneflow-card-view) button,
:host(oneflow-card-view) input,
:host(oneflow-card-view) optgroup,
:host(oneflow-card-view) select,
:host(oneflow-card-view) textarea {
  font-family: inherit; /* 1 */
  font-size: 100%; /* 1 */
  line-height: 1.15; /* 1 */
  margin: 0; /* 2 */
}
:host(oneflow-card-view) button,
:host(oneflow-card-view) input {
  /* 1 */
  overflow: visible;
}
:host(oneflow-card-view) button,
:host(oneflow-card-view) select {
  /* 1 */
  text-transform: none;
}
:host(oneflow-card-view) button,
:host(oneflow-card-view) [type=button],
:host(oneflow-card-view) [type=reset],
:host(oneflow-card-view) [type=submit] {
  -webkit-appearance: button;
}
:host(oneflow-card-view) button::-moz-focus-inner,
:host(oneflow-card-view) [type=button]::-moz-focus-inner,
:host(oneflow-card-view) [type=reset]::-moz-focus-inner,
:host(oneflow-card-view) [type=submit]::-moz-focus-inner {
  border-style: none;
  padding: 0;
}
:host(oneflow-card-view) button:-moz-focusring,
:host(oneflow-card-view) [type=button]:-moz-focusring,
:host(oneflow-card-view) [type=reset]:-moz-focusring,
:host(oneflow-card-view) [type=submit]:-moz-focusring {
  outline: 1px dotted ButtonText;
}
:host(oneflow-card-view) .oneflow-card-view-preview {
  font-size: 1rem;
  position: fixed;
  z-index: 20;
  opacity: 1;
  top: 12px;
  left: 12px;
  bottom: 12px;
  right: 12px;
  background-color: var(--oneflow-component-theme-glass-light-color);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  border-radius: 8px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
  transition: all 0.5s ease-in-out;
  white-space: no-wrap;
  display: grid;
  grid-template-rows: auto 1fr auto;
  grid-template-columns: 1fr;
  padding: 1.5rem;
}
:host(oneflow-card-view) .oneflow-card-view-preview .btnPreview-close {
  position: fixed;
  z-index: 1001;
  top: 0;
  right: 0;
  background-color: var(--oneflow-component-theme-color);
  color: var(--oneflow-component-theme-background-color2);
  border: none;
  border-radius: 0 8px 0 0;
  padding: 0.5rem;
  font-size: 1.5rem;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
  opacity: 0.8;
}
:host(oneflow-card-view) .oneflow-card-view-preview .btnPreview-close:hover {
  background-color: var(--oneflow-component-theme-background-color2);
  color: var(--oneflow-component-theme-color);
}
:host(oneflow-card-view) .oneflow-card-view-preview .flex-columns {
  display: flex;
  gap: 24px;
  flex-direction: row;
  flex-wrap: wrap;
}
:host(oneflow-card-view) .oneflow-card-view-preview .flex-column {
  display: flex;
  gap: 1rem;
  flex-direction: column;
  justify-content: space-evenly;
  flex-wrap: wrap;
}
:host(oneflow-card-view) .oneflow-card-view-preview .preview-image-container img {
  height: auto;
  width: 400px;
  border-radius: 8px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
}
:host(oneflow-card-view) .oneflow-card-view-preview .preview-header {
  grid-row: 1;
}
:host(oneflow-card-view) .oneflow-card-view-preview .preview-body {
  grid-row: 2;
  overflow-y: auto;
  padding-bottom: 100px;
}
:host(oneflow-card-view) .oneflow-card-view-preview .preview-footer {
  grid-row: 3;
}
:host(oneflow-card-view) .oneflow-card-view-preview .preview-title {
  font-size: 3rem;
  font-weight: 800;
  color: var(--oneflow-component-theme-background-color2);
  text-shadow: 1px 1px 7px rgba(0, 0, 0, 0.7);
  margin-bottom: 24px;
}
:host(oneflow-card-view) .oneflow-card-view-preview .preview-block-text {
  margin: 0;
  margin-top: 1rem;
  background-color: var(--oneflow-component-theme-glass-color);
  padding: 24px;
  border-radius: 8px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
}
:host(oneflow-card-view) .oneflow-card-view-preview .preview-block-text label {
  display: block;
  font-size: 2rem;
  border-radius: 8px;
  padding: 4px;
  padding-left: 1rem;
  margin-bottom: 1rem;
  font-weight: 600;
  background-color: var(--oneflow-component-theme-glass-light-color);
  box-shadow: 0 3px 4px rgba(0, 0, 0, 0.2);
  color: var(--oneflow-component-theme-background-color2);
  text-shadow: 1px 1px 5px var(--oneflow-component-theme-color);
}
:host(oneflow-card-view) .oneflow-card-view-preview .preview-block-text span {
  font-size: 1.5rem;
  color: var(--oneflow-component-card-view-panel-text-color);
  font-weight: 400;
}
:host(oneflow-card-view) .oneflow-card-view-preview .preview-panel {
  margin: 0;
  margin-top: 1rem;
  background-color: var(--oneflow-component-theme-glass-color);
  padding: 24px;
  border-radius: 8px;
}
:host(oneflow-card-view) .oneflow-card-view-preview .preview-panel .preview-heading {
  position: relative;
  font-size: 2rem;
  background-color: var(--oneflow-component-theme-glass-light-color);
  box-shadow: 0 3px 4px rgba(0, 0, 0, 0.2);
  border-radius: 8px;
  padding: 4px;
  padding-left: 1rem;
  color: var(--oneflow-component-theme-background-color2);
  text-shadow: 1px 1px 5px var(--oneflow-component-theme-color);
  margin-bottom: 1rem;
  font-weight: 600;
}
:host(oneflow-card-view) .oneflow-card-view-preview .preview-panel ul {
  list-style-type: none;
  padding: 0;
  margin: 0;
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--oneflow-component-card-view-panel-text-color);
}
:host(oneflow-card-view) .oneflow-card-view-preview .preview-panel .preview-text {
  position: relative;
  font-size: 1.5rem;
  color: var(--oneflow-component-theme-color);
  margin-bottom: 0.5rem;
}
:host(oneflow-card-view) .oneflow-card-view-preview .preview-panel .preview-text label {
  display: block;
  font-size: 1rem;
  font-weight: 600;
  color: var(--oneflow-component-card-view-panel-label-color);
  margin-bottom: 0.25rem;
}
:host(oneflow-card-view) .oneflow-card-view-preview .preview-panel .preview-text span {
  margin-bottom: 1rem;
  display: inline-block;
  font-weight: 400;
  background-color: var(--oneflow-component-card-view-panel-text-background-color);
  color: var(--oneflow-component-card-view-panel-text-color);
  box-shadow: inset 0 3px 3px rgba(0, 0, 0, 0.1);
  border-radius: 8px;
  padding: 1rem;
  padding-top: 0.75rem;
  padding-bottom: 0.75rem;
}
:host(oneflow-card-view) .oneflow-card-view-preview .preview-panel .preview-text span:empty {
  background-color: unset;
  box-shadow: unset;
  border-radius: none;
  padding: 0;
  position: relative;
}
:host(oneflow-card-view) .oneflow-card-view-preview .preview-panel .preview-text span:empty:after {
  content: "--> not-set";
  width: 10ch;
  position: absolute;
  font-size: 1rem;
  color: var(--oneflow-component-card-view-panel-text-color);
  top: -0.75rem;
  left: 1rem;
}
:host(oneflow-card-view) .oneflow-card-view-preview .preview-panel .preview-text span.has-icon {
  position: relative;
  padding-left: 4.5rem;
}
:host(oneflow-card-view) .oneflow-card-view-preview .preview-panel .preview-text span i {
  position: absolute;
  top: 0;
  left: 0;
  padding-right: 0.5rem;
  color: var(--oneflow-component-card-view-panel-text-icon-color);
  background-color: var(--oneflow-component-theme-color);
  padding: 1rem;
  box-shadow: inset 0 3px 3px rgba(0, 0, 0, 0.1), 0px 0px 2px rgba(0, 0, 0, 0.1);
  border-top-left-radius: 8px;
  border-bottom-left-radius: 8px;
}
:host(oneflow-card-view) .oneflow-card-view-layout {
  display: block;
  position: relative;
  color: var(--oneflow-component-font-color);
  font-size: var(--oneflow-component-font-size);
  font-family: var(--oneflow-component-font-family);
}
:host(oneflow-card-view) .oneflow-card-view-no-entries .oneflow-card-view-table {
  pointer-events: all;
}
:host(oneflow-card-view) .oneflow-card-view-loading {
  pointer-events: none;
}
:host(oneflow-card-view) .oneflow-card-view-loading-delay > .oneflow-card-view-footer > *:not(.oneflow-card-view-footer-text),
:host(oneflow-card-view) .oneflow-card-view-loading-delay > .oneflow-card-view-table-holder,
:host(oneflow-card-view) .oneflow-card-view-loading-delay > .oneflow-card-view-cardholder,
:host(oneflow-card-view) .oneflow-card-view-loading-delay > .oneflow-card-view-header > *:not(.oneflow-card-view-title) {
  opacity: 0.5;
}
:host(oneflow-card-view) .oneflow-card-view-header {
  position: fixed;
  z-index: 10;
  gap: 1rem;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 24px;
  background-color: var(--oneflow-component-theme-glass-color);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  color: var(--oneflow-component-theme-background-color2);
  border-top: 1px solid var(--oneflow-component-background-color);
  text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.3);
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
}
:host(oneflow-card-view) .oneflow-card-view-header .oneflow-card-view-is-active-button {
  color: var(--oneflow-component-theme-color);
  background-color: transparent;
  border: none;
  cursor: pointer;
}
:host(oneflow-card-view) .oneflow-card-view-header .oneflow-card-view-is-active-button > span.material-symbols-outlined {
  font-size: 42px;
}
:host(oneflow-card-view) .oneflow-card-view-header .order-by-section {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  gap: 0;
  align-items: center;
  justify-content: center;
}
:host(oneflow-card-view) .oneflow-card-view-header .order-by-section .order-by-descending-button {
  height: 38px;
  width: 38px;
  background-color: var(--oneflow-component-theme-background-color);
  border: none;
  color: var(--oneflow-component-theme-color);
}
:host(oneflow-card-view) .oneflow-card-view-header h1 {
  color: var(--oneflow-component-theme-background-color2);
}
:host(oneflow-card-view) .oneflow-card-view-header .oneflow-card-view-filter button {
  height: 38px;
  width: 38px;
  margin-top: -1px;
  background-color: var(--oneflow-component-theme-background-color);
  border: none;
  color: var(--oneflow-component-theme-color);
}
:host(oneflow-card-view) .oneflow-card-view-header .oneflow-card-view-filter button:hover {
  color: var(--oneflow-component-theme-background-color2);
  cursor: pointer;
}
:host(oneflow-card-view) .oneflow-card-view-title {
  margin: 12px 0px;
}
:host(oneflow-card-view) .oneflow-card-view-filter {
  margin-left: auto;
  display: flex;
  height: 36px;
  padding-bottom: 0px;
  font-size: var(--oneflow-component-font-size);
}
:host(oneflow-card-view) .oneflow-card-view-filter.oneflow-card-view-filter-docked {
  position: absolute;
  top: 0px;
  right: 0px;
  z-index: 1;
  border: 2 solid var(--oneflow-component-theme-color);
  padding: 4px 50px 5px 5px;
}
:host(oneflow-card-view) .oneflow-card-view-filter > input {
  display: block;
  padding: 0px 4px 0px 4px;
  border: 0px solid var(--oneflow-component-border-color);
  border-bottom-width: 1px;
  margin-bottom: 0px;
  height: inherit;
  color: var(--oneflow-component-font-color);
  background-color: var(--oneflow-background-color);
  font-size: inherit;
}
:host(oneflow-card-view) .oneflow-card-view-filter > input:focus, :host(oneflow-card-view) .oneflow-card-view-filter > input:hover {
  border-color: var(--oneflow-component-theme-color);
}
:host(oneflow-card-view) .oneflow-card-view-filter > input:focus {
  outline: none;
  border-bottom-width: 0px;
  margin-bottom: 1px-0px;
  transition: all linear 0.1s;
}
:host(oneflow-card-view) .oneflow-card-view-filter > button {
  padding: 0px;
  height: 32px;
  width: 32px;
}
:host(oneflow-card-view) .oneflow-card-view-search-icon {
  display: block;
}
:host(oneflow-card-view) .oneflow-card-view-filter-show-button {
  position: absolute;
  top: 12px;
  right: 14px;
  z-index: 2;
  background: transparent;
  padding: 2px;
  border: none;
  height: 24px;
  width: 24px;
}
:host(oneflow-card-view) .oneflow-card-view-filter-show-button:focus {
  outline: none;
}
:host(oneflow-card-view) .oneflow-card-view-filter-icon {
  display: block;
  position: absolute;
  top: 0px;
  left: 0px;
  bottom: 0px;
  right: 0px;
}
:host(oneflow-card-view) .oneflow-card-view-filter-icon > svg {
  width: 100%;
  height: 100%;
}
:host(oneflow-card-view) .oneflow-card-view-filter-icon > svg > path {
  fill: var(--oneflow-component-font-color);
}
:host(oneflow-card-view) .oneflow-card-view-layout:not([filtered]) .oneflow-card-view-filter-show-button:not(:focus):not(:hover) > .oneflow-card-view-filter-icon.oneflow-card-view-filter-fill-icon {
  display: none;
}
:host(oneflow-card-view) .oneflow-card-view-layout:not([filtered]) .oneflow-card-view-filter-show-button:focus > .oneflow-card-view-filter-icon.oneflow-card-view-filter-fill-icon, :host(oneflow-card-view) .oneflow-card-view-layout:not([filtered]) .oneflow-card-view-filter-show-button:hover > .oneflow-card-view-filter-icon.oneflow-card-view-filter-fill-icon {
  z-index: -1;
}
:host(oneflow-card-view) .oneflow-card-view-layout:not([filtered]) .oneflow-card-view-filter-show-button:focus > .oneflow-card-view-filter-icon.oneflow-card-view-filter-fill-icon > svg > path, :host(oneflow-card-view) .oneflow-card-view-layout:not([filtered]) .oneflow-card-view-filter-show-button:hover > .oneflow-card-view-filter-icon.oneflow-card-view-filter-fill-icon > svg > path {
  fill: var(--oneflow-background-color);
}
:host(oneflow-card-view) .oneflow-card-view-layout[filtered] .oneflow-card-view-filter-show-button > .oneflow-card-view-filter-icon:not(.oneflow-card-view-filter-fill-icon) {
  display: none;
}
:host(oneflow-card-view) .oneflow-card-view-footer {
  position: fixed;
  gap: 24px;
  z-index: 1;
  background-color: var(--oneflow-component-theme-glass-color);
  left: 24px;
  bottom: 24px;
  display: flex;
  flex-flow: row wrap;
  justify-content: space-between;
  align-items: center;
  padding: 8px 24px;
  color: var(--oneflow-component-theme-background-color2);
  border-radius: 8px;
  height: 48px;
  max-height: 48px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}
:host(oneflow-card-view) .oneflow-card-view-footer-text {
  display: block;
  font-size: 18px;
  text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.3);
}
:host(oneflow-card-view) .oneflow-card-view-footer-text > * {
  display: inline;
}
:host(oneflow-card-view) .oneflow-card-view-page-selector {
  margin: 0px;
  padding: 0px;
  list-style-type: none;
  white-space: nowrap;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}
:host(oneflow-card-view) .oneflow-card-view-page-selector > li {
  display: inline-block;
}
:host(oneflow-card-view) .oneflow-card-view-page-selector > li > button {
  height: 38px;
  min-width: 38px;
  color: var(--oneflow-component-font-color);
  background-color: var(--oneflow-component-theme-background-color2);
  border: 1px solid var(--oneflow-component-theme-color);
}
:host(oneflow-card-view) .oneflow-card-view-page-selector > li > button:focus {
  outline: none;
}
:host(oneflow-card-view) .oneflow-card-view-page-selector > li:first-child > button {
  border-top-left-radius: 6px;
  border-bottom-left-radius: 6px;
}
:host(oneflow-card-view) .oneflow-card-view-page-selector > li:last-child > button {
  border-top-right-radius: 6px;
  border-bottom-right-radius: 6px;
}
:host(oneflow-card-view) .oneflow-card-view-page-selector > li:not(.current):not(.disabled) > button {
  cursor: pointer;
}
:host(oneflow-card-view) .oneflow-card-view-page-selector > li:not(.current):not(.disabled) > button:hover, :host(oneflow-card-view) .oneflow-card-view-page-selector > li:not(.current):not(.disabled) > button:focus {
  background-color: var(--oneflow-component-background-color-hover);
}
:host(oneflow-card-view) .oneflow-card-view-page-selector > li:not(.current):not(:last-child) > button {
  border-right-width: 0px;
}
:host(oneflow-card-view) .oneflow-card-view-page-selector > li.current > button {
  color: var(--oneflow-component-selection-color);
  background-color: var(--oneflow-component-theme-color);
  border-color: var(--oneflow-component-theme-color);
  pointer-events: none;
}
:host(oneflow-card-view) .oneflow-card-view-page-selector > li.current + li > button {
  border-left-width: 0px;
}
:host(oneflow-card-view) .oneflow-card-view-page-selector > li.disabled {
  pointer-events: none;
}
:host(oneflow-card-view) .oneflow-card-view-page-selector > li.disabled > button {
  color: var(--oneflow-component-theme-background-color);
  background-color: transparent;
}
:host(oneflow-card-view) .oneflow-card-view-body {
  margin: 0;
  grid-area: 1;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  overflow-y: auto;
  gap: 24px;
  padding: 24px;
  padding-top: 110px;
  padding-bottom: 120px;
}
:host(oneflow-card-view) .oneflow-card-view-view-button {
  color: var(--oneflow-component-selection-color);
  background-color: var(--oneflow-component-theme-color);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 6px;
  width: 24px;
  height: 24px;
  padding: 0px 6px;
  box-sizing: border-box;
  vertical-align: middle;
  border: 1px solid var(--oneflow-component-border-color);
}
:host(oneflow-card-view) .oneflow-card-view-view-button:link, :host(oneflow-card-view) .oneflow-card-view-view-button:visited {
  text-decoration: none;
}
:host(oneflow-card-view) .oneflow-card-view-view-button::before {
  content: "ℹ";
}
:host(oneflow-card-view) .oneflow-card-view-card.show {
  opacity: 1;
  transform: scale(1);
  margin: 0;
}
:host(oneflow-card-view) a.oneflow-card-view-card {
  color: inherit;
  background-color: transparent;
}
:host(oneflow-card-view) a.oneflow-card-view-card:focus, :host(oneflow-card-view) a.oneflow-card-view-card:hover, :host(oneflow-card-view) a.oneflow-card-view-card:link, :host(oneflow-card-view) a.oneflow-card-view-card:visited {
  text-decoration: none;
  outline: none;
}
:host(oneflow-card-view) .oneflow-card-view-card {
  margin-left: -100%;
  opacity: 0;
  position: relative;
  padding: 1rem;
  border-radius: 0.5rem;
  border: 2px solid var(--oneflow-component-theme-color);
  background-color: var(--oneflow-background-color);
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
  background-color: var(--oneflow-background-color);
  transition: all 0.2s ease-in-out, opacity 0.5s ease-in;
  cursor: default;
}
:host(oneflow-card-view) .oneflow-card-view-card.is-active::after {
  content: "\e8f4";
  width: 22px;
  height: 22px;
  font-family: "Material Symbols Outlined";
  color: var(oneflow-component-theme-color);
  font-size: 20px;
  position: absolute;
  bottom: -10px;
  right: -10px;
  text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.3);
  background-color: var(--oneflow-component-background-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  border: 1px solid var(--oneflow-component-theme-color);
}
:host(oneflow-card-view) .oneflow-card-view-card.is-active.selected::after {
  background-color: var(--oneflow-component-selection-background-color);
  border-color: var(--oneflow-component-background-color);
}
:host(oneflow-card-view) .oneflow-card-view-card.is-inactive.selected::after {
  background-color: var(--oneflow-component-theme-color);
  border-color: var(--oneflow-component-background-color);
}
:host(oneflow-card-view) .oneflow-card-view-card.is-inactive::after {
  width: 22px;
  height: 22px;
  font-family: "Material Symbols Outlined";
  color: var(oneflow-component-theme-color);
  font-size: 20px;
  position: absolute;
  bottom: -10px;
  right: -10px;
  text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.3);
  background-color: var(--oneflow-component-background-color);
  border-radius: 50%;
  border: 1px solid var(--oneflow-component-theme-color);
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  content: "\e8f5";
}
:host(oneflow-card-view) .oneflow-card-view-card.selected {
  color: var(--oneflow-component-selection-color);
  background-color: var(--oneflow-component-selection-background-color);
}
:host(oneflow-card-view) .oneflow-card-view-card.selected .card-title {
  color: var(--oneflow-component-theme-highlight-color);
}
:host(oneflow-card-view) .oneflow-card-view-card.selected .card-text > span.material-symbols-outlined {
  color: var(--oneflow-component-theme-highlight-color);
}
:host(oneflow-card-view) .oneflow-card-view-card.selected .oneflow-card-view-button {
  color: var(--oneflow-component-selection-background-color);
  background-color: var(--oneflow-component-selection-color);
}
:host(oneflow-card-view) .oneflow-card-view-card:hover {
  transform: scale(1.1);
}
:host(oneflow-card-view) .oneflow-card-view-card:hover, :host(oneflow-card-view) .oneflow-card-view-card:focus-within {
  outline: none;
  cursor: pointer;
}
:host(oneflow-card-view) .oneflow-card-view-card > a {
  color: inherit;
  background-color: transparent;
}
:host(oneflow-card-view) .oneflow-card-view-card > a:focus, :host(oneflow-card-view) .oneflow-card-view-card > a:hover, :host(oneflow-card-view) .oneflow-card-view-card > a:link, :host(oneflow-card-view) .oneflow-card-view-card > a:visited {
  text-decoration: none;
  outline: none;
}
:host(oneflow-card-view) .oneflow-card-view-card .card-title {
  display: block;
  font-size: 1.2rem;
  font-weight: bold;
  margin-bottom: 0.75rem;
  text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.3);
  color: var(--oneflow-component-theme-color);
}
:host(oneflow-card-view) .oneflow-card-view-card .card-text {
  opacity: 0.9;
  display: flex;
  flex-wrap: nowrap;
  flex-direction: row;
  align-items: center;
  font-size: 1rem;
  margin: 0;
  padding: 0;
}
:host(oneflow-card-view) .oneflow-card-view-card .card-text > span.material-symbols-outlined {
  margin-right: 0.5rem;
  color: var(--oneflow-component-theme-color);
}
:host(oneflow-card-view) .oneflow-card-view-card-default {
  margin: 0px;
  padding: 12px;
  list-style-type: none;
}
:host(oneflow-card-view) .oneflow-card-view-card-default > li {
  overflow-wrap: break-word;
}

:host(oneflow-card-view[disabled]) > * {
  pointer-events: all;
}

/* Variables
    ========================================================================== */
:host(oneflow-selection-list[disabled]) > * {
  pointer-events: none;
}

:host(oneflow-selection-list[is-striped]) > .oneflow-selection-list-layout .oneflow-selection-list-table > .tbody > .tr:nth-child(odd):not(.deleted) {
  background-color: #f4f4f4;
}

:host(oneflow-selection-list) {
  /* normalize
  ========================================================================== */
  /**
  * 1. Change the font styles in all browsers.
  * 2. Remove the margin in Firefox and Safari.
  */
  /**
  * Show the overflow in IE.
  * 1. Show the overflow in Edge.
  */
  /**
  * Remove the inheritance of text transform in Edge, Firefox, and IE.
  * 1. Remove the inheritance of text transform in Firefox.
  */
  /**
  * Correct the inability to style clickable types in iOS and Safari.
  */
  /**
  * Restore the focus styles unset by the previous rule.
  */
  /* end normalize
  ========================================================================== */
  /* Shared
  ========================================================================== */
  /* Layout
  ========================================================================== */
  display: block;
  height: 100%;
  /* Combo
  ========================================================================== */
  /* Table
  ========================================================================== */
}
:host(oneflow-selection-list) button,
:host(oneflow-selection-list) input,
:host(oneflow-selection-list) optgroup,
:host(oneflow-selection-list) select,
:host(oneflow-selection-list) textarea {
  font-family: inherit; /* 1 */
  font-size: 100%; /* 1 */
  line-height: 1.15; /* 1 */
  margin: 0; /* 2 */
}
:host(oneflow-selection-list) button,
:host(oneflow-selection-list) input {
  /* 1 */
  overflow: visible;
}
:host(oneflow-selection-list) button,
:host(oneflow-selection-list) select {
  /* 1 */
  text-transform: none;
}
:host(oneflow-selection-list) button,
:host(oneflow-selection-list) [type=button],
:host(oneflow-selection-list) [type=reset] button::-moz-focus-inner,
:host(oneflow-selection-list) [type=button]::-moz-focus-inner,
:host(oneflow-selection-list) [type=reset]::-moz-focus-inner,
:host(oneflow-selection-list) [type=submit]::-moz-focus-inner {
  border-style: none;
  padding: 0;
}
:host(oneflow-selection-list) button:-moz-focusring,
:host(oneflow-selection-list) [type=button]:-moz-focusring,
:host(oneflow-selection-list) [type=reset]:-moz-focusring,
:host(oneflow-selection-list) [type=submit]:-moz-focusring {
  outline: 1px dotted ButtonText;
}
:host(oneflow-selection-list) .oneflow-selection-list-layout {
  height: 100%;
  position: relative;
  display: grid;
  grid-template-rows: auto 1fr;
  grid-template-areas: "combo" "table";
  color: var(--control-font-color);
  background-color: var(--control-bg-color);
  font-size: var(--control-font-size);
  font-family: var(--control-font-family);
}
:host(oneflow-selection-list) .oneflow-selection-list-dropdownlist-area {
  grid-area: combo;
  display: flex;
  padding: 16px;
}
:host(oneflow-selection-list) .oneflow-selection-list-dropdownlist-area > button {
  margin-left: 16px;
  cursor: pointer;
  margin-top: 4px;
  margin-bottom: 4px;
}
:host(oneflow-selection-list) .oneflow-selection-list-table {
  grid-area: table;
  overflow-y: auto;
}
:host(oneflow-selection-list) .oneflow-selection-list-table .tr,
:host(oneflow-selection-list) .oneflow-selection-list-table .th,
:host(oneflow-selection-list) .oneflow-selection-list-table .td {
  border: 0px solid #e0e0e0;
}
:host(oneflow-selection-list) .oneflow-selection-list-table > .thead,
:host(oneflow-selection-list) .oneflow-selection-list-table > .tbody {
  width: 100%;
}
:host(oneflow-selection-list) .oneflow-selection-list-table > .thead {
  position: sticky;
  top: 0px;
  z-index: 10;
  display: none;
}
:host(oneflow-selection-list) .oneflow-selection-list-table > .tbody {
  display: grid;
  grid-template-rows: min-content;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  grid-column-gap: 16px;
  grid-row-gap: 16px;
}
:host(oneflow-selection-list) .oneflow-selection-list-table > .tbody > .tr,
:host(oneflow-selection-list) .oneflow-selection-list-table > .thead > .tr {
  height: 48px;
  display: flex;
  flex-flow: row nowrap;
}
:host(oneflow-selection-list) .oneflow-selection-list-table > .thead > .tr > .th,
:host(oneflow-selection-list) .oneflow-selection-list-table > .tbody > .tr > .td {
  align-items: center;
  padding: 4px 12px;
  box-sizing: border-box;
  min-width: 48px;
}
:host(oneflow-selection-list) .oneflow-selection-list-table > .thead > .tr > .th.hidden,
:host(oneflow-selection-list) .oneflow-selection-list-table > .tbody > .tr > .td.hidden {
  display: none;
}
:host(oneflow-selection-list) .oneflow-selection-list-table > .thead > .tr {
  background-color: #ffffff;
}
:host(oneflow-selection-list) .oneflow-selection-list-table > .thead > .tr > .th {
  box-shadow: 0px 2px 2px -1px rgba(0, 0, 0, 0.4);
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  white-space: nowrap;
  font-weight: bold;
}
:host(oneflow-selection-list) .oneflow-selection-list-table > .thead > .tr > .th > span {
  display: block;
  width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
}
:host(oneflow-selection-list) .oneflow-selection-list-table > .tbody > .tr {
  background-color: #ffffff;
  cursor: default;
  flex-direction: column;
  height: auto;
}
:host(oneflow-selection-list) .oneflow-selection-list-table > .tbody > .tr.deleted {
  background-color: red;
}
:host(oneflow-selection-list) .oneflow-selection-list-table > .tbody > .tr.deleted > .td {
  border-color: red;
}
:host(oneflow-selection-list) .oneflow-selection-list-table > .tbody > .tr > .td {
  word-wrap: break-word;
}
:host(oneflow-selection-list) .oneflow-selection-list-table > .tbody > .tr > .td > input {
  width: 100%;
}
:host(oneflow-selection-list) .oneflow-selection-list-table > .tbody > .tr > .td > label {
  display: block;
  font-size: 14px;
  color: var(--oneflow-component-label-color);
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}
:host(oneflow-selection-list) input:focus {
  outline: none;
}
:host(oneflow-selection-list) input[type=text], :host(oneflow-selection-list) input[type=number], :host(oneflow-selection-list) input[type=password] {
  background-color: var(--oneflow-component-background-color);
  border: 2px solid var(--oneflow-component-border-color);
  box-sizing: border-box;
  height: 32px;
}
:host(oneflow-selection-list) .td button {
  cursor: pointer;
  border: none;
  color: var(--oneflow-component-font-color);
  background-color: transparent;
}
:host(oneflow-selection-list) .td button:focus {
  outline: 0;
  border: none;
}
:host(oneflow-selection-list) .button-delete {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  box-sizing: border-box;
  vertical-align: middle;
  outline: none;
  padding: 0;
  border: none;
  cursor: pointer;
}
:host(oneflow-selection-list) .checkbox {
  width: 32px;
  min-width: 32px;
  height: 32px;
  min-height: 32px;
  position: relative;
  box-sizing: border-box;
  border: solid 2px;
  background-color: var(--oneflow-component-background-color);
  border-color: var(--oneflow-component-border-color);
}
:host(oneflow-selection-list) .checkbox > input {
  position: absolute;
  top: -2px;
  left: -2px;
  height: inherit;
  width: inherit;
  opacity: 0;
  cursor: pointer;
  z-index: 1;
}
:host(oneflow-selection-list) .checkbox > .checkmark {
  display: none;
  content: "";
  position: absolute;
  left: 27%;
  top: 2%;
  width: 32%;
  height: 64%;
  border: solid var(--oneflow-component-theme-color);
  border-width: 0 3px 3px 0;
  transform: rotate(45deg);
}
:host(oneflow-selection-list) .checkbox > input:checked + .checkmark {
  display: block;
}
@media only screen and (max-width: 768px) {
  :host(oneflow-selection-list) .oneflow-selection-list-table > .tbody > .tr {
    padding-top: 12px;
    padding-bottom: 12px;
  }
}
@media only screen and (min-width: 768px) {
  :host(oneflow-selection-list) .oneflow-selection-list-table > .thead {
    display: block;
  }
  :host(oneflow-selection-list) .oneflow-selection-list-table > .tbody {
    grid-template-columns: 1fr;
    grid-column-gap: 0px;
    grid-row-gap: 0px;
  }
  :host(oneflow-selection-list) .oneflow-selection-list-table > .tbody > .tr {
    min-height: 48px;
    flex-direction: row;
    border-width: 0px;
  }
  :host(oneflow-selection-list) .oneflow-selection-list-table > .thead > .tr > .th,
  :host(oneflow-selection-list) .oneflow-selection-list-table > .tbody > .tr > .td {
    display: flex;
    flex-flow: row nowrap;
    flex-grow: 1;
    flex-basis: 0px;
    align-items: center;
    padding: 4px 12px;
    box-sizing: border-box;
    min-width: 48px;
  }
  :host(oneflow-selection-list) .oneflow-selection-list-table > .thead > .tr > .th.delete-column,
  :host(oneflow-selection-list) .oneflow-selection-list-table > .tbody > .tr > .td.delete-column {
    flex-basis: 48px;
    flex-grow: 0;
    justify-content: center;
    padding: 0;
  }
  :host(oneflow-selection-list) .oneflow-selection-list-table > .tbody > .tr > .td {
    text-overflow: clip;
    overflow: hidden;
  }
  :host(oneflow-selection-list) .oneflow-selection-list-table > .tbody > .tr > .td > label {
    display: none;
  }
}

@media only screen and (min-width: 768px) {
  :host(oneflow-selection-list[is-bordered]) > .oneflow-selection-list-layout .oneflow-selection-list-table > .thead > .tr,
  :host(oneflow-selection-list[is-bordered]) > .oneflow-selection-list-layout .oneflow-selection-list-table .tbody > .tr {
    border-width: calc(1px * 2);
    border-bottom-width: 0;
  }
  :host(oneflow-selection-list[is-bordered]) > .oneflow-selection-list-layout .oneflow-selection-list-table > .tbody > .tr:last-of-type {
    border-bottom-width: calc(1px * 2);
  }
  :host(oneflow-selection-list[is-bordered]) > .oneflow-selection-list-layout .oneflow-selection-list-table > .thead > .tr > .th:not(.hidden):not(:last-of-type),
  :host(oneflow-selection-list[is-bordered]) > .oneflow-selection-list-layout .oneflow-selection-list-table > .tbody > .tr > .td:not(.hidden):not(:last-of-type) {
    border-right-width: calc(1px * 2);
  }
}
:host(oneflow-toolbar) > .toolbar {
  position: fixed;
  z-index: 99999;
  right: 24px;
  bottom: 24px;
  height: 48px;
  padding: 8px;
  border-radius: 4px;
  background-color: var(--oneflow-glass-color);
  background-color: var(--oneflow-component-theme-glass-light-color);
  display: flex;
  gap: 1rem;
  align-items: center;
  font: 1em sans-serif;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
  transition: opacity 0.4s ease-in-out, background-color 0.4s ease-in-out;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  opacity: 0.7;
}
:host(oneflow-toolbar) > .toolbar:first-child {
  border-top-left-radius: 8px;
  border-bottom-left-radius: 8px;
}
:host(oneflow-toolbar) > .toolbar:last-child {
  border-top-right-radius: 8px;
  border-bottom-right-radius: 8px;
}
:host(oneflow-toolbar) > .toolbar.disabled {
  opacity: 0.4;
  pointer-events: none;
}
:host(oneflow-toolbar) > .toolbar:hover {
  opacity: 1;
  background-color: var(--oneflow-component-theme-background-color2);
}

@media only screen and (max-width: 980px) {
  :host(oneflow-toolbar) {
    height: 48px;
  }
  :host(oneflow-toolbar) > .toolbar {
    height: 48px;
  }
}
@keyframes dropIn {
  from {
    margin-top: -100vh;
    margin-bottom: 100vh;
  }
  to {
    margin-top: 0px;
    margin-bottom: 0px;
  }
}
:host(oneflow-toolbar-button) {
  /* > .toolbar-button {
      border-right: 2px solid var(--oneflow-component-theme-color);
       display: block;
       width: 96px;
       height: 96px;
       margin-left: 0px;
       margin-right: 0px;
       margin-top: 0px;
       transition: all 0.2s ease-in 0s;
       background-position: center center;
       background-color: var(--oneflow-component-toolbar-background-color);
       position: relative;


       .text {
           position: absolute;
           bottom: 4px;
           left: 4px;
           color: var(--oneflow-component-font-color);
           font-family: var(--oneflow-component-font-family);
           font-size: 12px;
           font-weight: normal;
           line-height: 1em;
       }

       .sub-icon {
           position: absolute;
           width: 32px;
           left: 50px;
           top: 42px;
           display: inline-block;
           text-align: center;
           transition: all 0.2s ease-in 0s;

           img {
               width: 26px;
               height: 26px;
           }

           svg path {
               fill: var(--oneflow-component-theme-highlight-color);
           }
       }

       &:hover {
           background-color: var(--oneflow-component-theme-background-color2);
           text-decoration: none;
           transition: background-color ease-out 0.3s;
       }

       &:focus {
           text-decoration: none;
       }

       &.disabled {
           opacity: 0.4;
           pointer-events: none;
           transition: opacity ease-out 0.3s;
       }
   }
   @media only screen and (max-width: 980px) {
       > .toolbar-button {
           zoom: 0.5;
       }
   }
       */
}
:host(oneflow-toolbar-button) > .toolbar-button:not(.anchor) {
  animation: dropIn 0.3s;
}
:host(oneflow-toolbar-button) .toolbar-button {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 62px;
  height: 48px;
  gap: 4px;
  transition: all 0.2s ease-in 0s;
  padding: 4x;
  background-color: transparent;
}
:host(oneflow-toolbar-button) .toolbar-button .svg-icon svg path {
  fill: var(--oneflow-component-theme-color);
  stroke: var(--oneflow-component-theme-color);
}
:host(oneflow-toolbar-button) .toolbar-button .svg-icon svg circle {
  stroke: var(--oneflow-component-theme-color);
  fill: transparent;
}
:host(oneflow-toolbar-button) .toolbar-button .svg-icon svg rect {
  stroke: var(--oneflow-component-theme-color);
}
:host(oneflow-toolbar-button) .toolbar-button .sub-icon {
  position: absolute;
  width: 24px;
  right: 4px;
  top: 28px;
  display: inline-block;
  text-align: center;
  transition: all 0.2s ease-in 0s;
}
:host(oneflow-toolbar-button) .toolbar-button .sub-icon img {
  width: 26px;
  height: 26px;
}
:host(oneflow-toolbar-button) .toolbar-button .sub-icon svg path {
  fill: var(--oneflow-component-theme-highlight-color);
}
:host(oneflow-toolbar-button) .toolbar-button .text {
  opacity: 0;
  font-size: 8px;
  bottom: 4px;
  left: 4px;
  position: absolute;
  color: var(--oneflow-component-font-color);
  font-family: var(--oneflow-component-font-family);
}
:host(oneflow-toolbar-button) .toolbar-button:hover {
  scale: 1.5;
  box-shadow: -4px 4px 12px -8px rgba(0, 0, 0, 0.3), 4px 4px 12px -8px rgba(0, 0, 0, 0.3);
  background-color: var(--oneflow-component-background-color);
  z-index: 999999;
  top: -8px;
  padding-bottom: 18px;
}
:host(oneflow-toolbar-button) .toolbar-button:hover .text {
  opacity: 1;
}
:host(oneflow-toolbar-button) .toolbar-button:hover .sub-icon {
  opacity: 1;
}
:host(oneflow-toolbar-button) .toolbar-button.disabled {
  pointer-events: none;
  opacity: 0.4;
}

:host(oneflow-statusbar) > .statusbar {
  pointer-events: none;
  position: fixed;
  bottom: 24px;
  left: 24px;
  background-color: var(--oneflow-glass-color);
  color: var(--oneflow-component-font-color);
  display: flex;
  flex-direction: row;
  align-items: center;
  height: 46px;
  overflow: hidden;
  transition: all linear 0.5s;
  font-size: 16px;
  opacity: 1;
  z-index: 99999;
  box-shadow: 4px 4px 4px -5px rgba(0, 0, 0, 0.3);
  border-radius: 4px;
  opacity: 0;
  transition: opacity linear 0.5s;
}
:host(oneflow-statusbar) > .statusbar.show {
  opacity: 1;
}
:host(oneflow-statusbar) > .statusbar > .text {
  display: flex;
  align-items: center;
  margin: 0;
  padding: 0;
  padding-left: 24px;
  padding-right: 24px;
}
:host(oneflow-statusbar) > .statusbar div {
  margin-right: 32px;
  position: relative;
}
:host(oneflow-statusbar) > .statusbar div input {
  position: relative;
  outline: none;
  font-size: 16px;
  font-family: var(--oneflow-component-font-family);
  background-color: var(--oneflow-component-background-color);
  border: 0px none;
  border-bottom-width: 1px;
  border-bottom-style: solid;
  border-color: var(--oneflow-component-border-color);
  padding: 0px;
  padding-left: 4px;
  padding-right: 4px;
  margin: 0px;
  margin-top: 4px;
  height: 22px;
  width: 180px;
  border: 1px solid var(--oneflow-component-border-color);
  color: var(--control-font-color);
}
:host(oneflow-statusbar) > .statusbar div img {
  width: 22px;
  height: 22px;
  background-color: var(--oneflow-component-background-color);
  border-color: var(--oneflow-component-border-color);
  border: 1px solid var(--oneflow-component-color);
  position: absolute;
  top: 4px;
}
:host(oneflow-statusbar) .clear-text {
  color: var(--oneflow-component-background-color);
  transition: all linear 0.5s;
}
:host(oneflow-statusbar) .success {
  background-color: rgba(0, 100, 0, 0.8);
  color: whitesmoke;
  transition: all ease-in 0.5s;
}
:host(oneflow-statusbar) .failed {
  background-color: rgba(128, 0, 0, 0.8);
  transition: all ease-in 0.5s;
  color: whitesmoke;
}
:host(oneflow-statusbar) .working {
  background-color: var(--oneflow-component-theme-glass-color);
  transition: all ease-in 0.5s;
  color: whitesmoke;
}

.side-menu {
  background-color: #130f41;
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  width: 64px;
  z-index: 1000;
  padding-top: 12px;
  padding-bottom: 12px;
  transition: width 0.5s ease;
  box-shadow: 4px 0 4px rgba(0, 0, 0, 0.3);
}
.side-menu.preview {
  width: 360px;
}
.side-menu.preview .menu-options .menu-option {
  width: 340px;
  display: flex;
  transition: background-color 0.5s ease, width 0.5s ease;
}
.side-menu.preview .menu-options .menu-option span {
  color: white;
  opacity: 0.7;
  position: absolute;
  left: 46px;
  color: #fff;
  font-size: 24px;
}
.side-menu.preview .menu-options .menu-option:hover {
  background-color: #47c0c2;
  color: #fff;
  opacity: unset;
}
.side-menu.preview .menu-options .menu-option:hover span {
  display: inline-block;
  opacity: 1;
  transform: translateX(0px);
  background-color: unset;
}
.side-menu .menu-options {
  display: flex;
  flex-direction: column;
  align-items: left;
  margin-left: 12px;
  justify-content: center;
  gap: 12px;
}
.side-menu .menu-options .menu-option {
  margin: 0;
  padding: 0;
  width: 42px;
  height: 42px;
  position: relative;
  transition: width 0.5s ease;
}
.side-menu .menu-options .menu-option.help {
  position: absolute;
  bottom: 12px;
}
.side-menu .menu-options .menu-option.active {
  background-color: #47c0c2;
}
.side-menu .menu-options .menu-option .menu-icon {
  position: relative;
  display: inline-block;
  overflow: hidden;
}
.side-menu .menu-options .menu-option .menu-icon::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #47c0c2;
  mix-blend-mode: multiply;
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}
.side-menu .menu-options .menu-option .menu-icon:hover::after {
  opacity: 1;
}
.side-menu .menu-options .menu-option .menu-icon i {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 42px;
  height: 42px;
  color: white;
  font-size: 42px;
  transition: transform 0.3s ease;
  z-index: 5000;
}
.side-menu .menu-options .menu-option .menu-icon i:hover {
  cursor: pointer;
  transform: scale(1.1);
}
.side-menu .menu-options .menu-option .menu-icon img {
  display: block;
  width: 42px;
  height: 42px;
  transition: transform 0.3s ease;
}
.side-menu .menu-options .menu-option .menu-icon img:hover {
  cursor: pointer;
  transform: scale(1.1);
}
.side-menu .menu-options .menu-option span {
  display: block;
  position: absolute;
  opacity: 0;
  left: 0;
  top: 0px;
  padding: 7px 10px;
  padding-left: 12px;
  color: #fff;
  font-size: 24px;
  white-space: nowrap;
  pointer-events: none;
  transition: left 0.3s ease, opacity 0.3s ease, background-color 0.3s ease, transform 0.3s ease;
  z-index: 999;
}
.side-menu .menu-options .menu-option:hover span {
  display: block;
  opacity: 1;
  transform: translateX(46px);
  background-color: #47c0c2;
}

.menu-section {
  margin-left: 84px;
  margin-top: 24px;
  margin-bottom: 24px;
}
.menu-section .menu-buttons {
  display: none;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 24px;
}
.menu-section .menu-buttons oneflow-menu-button {
  transition: opacity 1s ease, transform 1s ease;
  transform: scale(1.05);
  opacity: 0;
}
.menu-section .menu-buttons oneflow-menu-button.show {
  opacity: 1;
  transform: scale(1);
}
.menu-section .menu-buttons.active {
  display: flex;
}

:host(oneflow-menu-button) > .menu-button {
  position: relative;
  transition: all 0.2s ease-in 0s;
  display: flex;
  gap: 1rem;
  font-style: normal;
  text-decoration: none;
  padding: 1rem;
  border-radius: 0.5rem;
  width: 460px;
  border: 2px solid var(--oneflow-component-theme-color);
  background-color: var(--oneflow-background-color);
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
}
:host(oneflow-menu-button) > .menu-button:hover {
  opacity: 1;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.6);
  transform: scale(1.05);
}
:host(oneflow-menu-button) > .menu-button:hover svg path {
  stroke: #47c0c2;
  fill: transparent;
}
:host(oneflow-menu-button) > .menu-button:hover svg circle {
  stroke: #47c0c2;
  fill: transparent;
}
:host(oneflow-menu-button) > .menu-button:hover svg rect {
  stroke: #47c0c2;
  fill: transparent;
}
:host(oneflow-menu-button) > .menu-button:hover .icon {
  transform: scale(1.1);
}
:host(oneflow-menu-button) > .menu-button .icon {
  width: 72px;
  height: 72px;
  min-width: 72px;
  min-height: 72px;
  opacity: 0.9;
  transition: transform 1s ease;
}
:host(oneflow-menu-button) > .menu-button .icon .icon-symbol {
  width: 100%;
  height: 100%;
}
:host(oneflow-menu-button) > .menu-button .icon .icon-symbol svg {
  width: 100%;
  height: 100%;
}
:host(oneflow-menu-button) > .menu-button .text-container {
  text-decoration: none;
  color: var(--oneflow-component-theme-color);
  font-family: Arial;
}
:host(oneflow-menu-button) > .menu-button .text {
  font-size: 1.2rem;
  font-weight: normal;
  line-height: 1em;
}
:host(oneflow-menu-button) > .menu-button .menu-button-info {
  font-size: 0.9rem;
  margin-top: 0.3rem;
}
:host(oneflow-menu-button) > .menu-button img {
  width: 48px;
  height: 48px;
}
:host(oneflow-menu-button) > .menu-button svg path {
  fill: var(--oneflow-component-theme-color);
  stroke: var(--oneflow-component-theme-color);
}
:host(oneflow-menu-button) > .menu-button svg circle {
  stroke: var(--oneflow-component-theme-color);
  fill: transparent;
}
:host(oneflow-menu-button) > .menu-button svg rect {
  stroke: var(--oneflow-component-theme-color);
  fill: transparent;
}
:host(oneflow-menu-button) > .menu-button svg path {
  transition: stroke 1.5s ease, fill 1.5s ease, filter 0.5s ease-in-out;
}
:host(oneflow-menu-button) > .menu-button:focus {
  opacity: 0.8;
  text-decoration: none;
}
@keyframes pulse {
  0% {
    stroke: #47c0c2; /* New stroke color */
    fill: #47c0c2; /* New fill color */
    transform: scale(1);
  }
  50% {
    transform: scale(1.03);
  }
  100% {
    stroke: var(--oneflow-component-theme-color); /* New stroke color */
    fill: var(--oneflow-component-theme-color);
    transform: scale(1);
  }
}

.dashboard-section-buttons {
  position: fixed;
  display: flex;
  gap: 8px;
  top: 0;
  right: 0;
  left: 0;
  height: 2rem;
  margin: 0;
  padding: 0;
  padding-left: 1rem;
  margin: 16px;
  border-radius: 0;
  background-color: var(--oneflow-component-theme-glass-color);
  box-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
  transform: skew(20deg);
  z-index: 1050;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.oneflow button.dashboard-section-button {
  background-color: var(--oneflow-component-theme-color);
  color: var(--oneflow-component-theme-background-color);
  border: none;
  font-size: 1.2rem;
  border-left: 4px solid var(--oneflow-component-theme-color);
  border-right: 4px solid var(--oneflow-component-theme-color);
  height: 2rem;
  border-radius: 0px;
  margin: 0px;
  padding: 8px 24px;
  transition: all 0.2s;
  max-width: 400px;
}

.oneflow button.dashboard-section-button:hover {
  background-color: var(--oneflow-component-theme-highlight-color);
  color: white;
}

.oneflow button.dashboard-section-button.active {
  background-color: var(--oneflow-component-theme-background-color2);
  color: var(--oneflow-component-theme-color);
}

.oneflow button.dashboard-section-button.active:hover {
  cursor: default;
}

.oneflow button.dashboard-section-button span {
  display: inline-block;
  transform: skew(-20deg);
}

.oneflow button.dashboard-sparks-button {
  position: fixed;
  border-radius: 0px;
  height: 2rem;
  top: 16px;
  right: 76px;
  z-index: 1100;
  display: flex;
  flex-direction: row;
  align-items: center;
  min-width: 1.5rem;
  background-color: var(--oneflow-component-theme-glass-color);
  border: none;
  transform: skew(20deg);
  color: whitesmoke;
}

.oneflow button.dashboard-sparks-button:hover {
  background-color: var(--oneflow-component-theme-color);
  color: white;
}

.dashboard-sparks-button i {
  display: inline-block;
  transform: skew(-20deg);
  font-size: 1.5rem;
}

.oneflow button.dashboard-admin-button {
  position: fixed;
  border-radius: 0px;
  height: 2rem;
  top: 16px;
  right: 32px;
  z-index: 1100;
  display: flex;
  flex-direction: row;
  align-items: center;
  min-width: 1.5rem;
  background-color: var(--oneflow-component-theme-glass-color);
  border: none;
  transform: skew(20deg);
  color: whitesmoke;
}

.oneflow button.workspace-button {
  position: fixed;
  top: 0px;
  right: 112px;
  height: 32px;
  box-shadow: unset;
  border-radius: 0px;
  border: none;
  border-left: 4px solid var(--oneflow-component-theme-color);
  border-right: 4px solid var(--oneflow-component-theme-color);
}
.oneflow button.workspace-button span {
  display: inline-block;
  transform: skew(-20deg);
}

.oneflow button.dashboard-admin-button:hover {
  background-color: var(--oneflow-component-theme-color);
  color: white;
}

.dashboard-admin-button i {
  display: inline-block;
  transform: skew(-20deg);
  font-size: 1.5rem;
}

.dashboard-options {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  flex-direction: row;
  padding: 1rem;
  z-index: 1000;
  background-color: var(--oneflow-component-theme-glass-light-color);
  margin: 2rem;
  margin-top: 5rem;
  border-radius: 8px;
  box-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
  padding: 2rem;
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  overflow-y: auto;
}

.dashboard-option {
  position: relative;
  display: flex;
  flex-direction: column;
  flex: 1 1 510px;
  margin: 1rem;
  padding: 1.5rem;
  background: linear-gradient(135deg, #f3f3f3 0%, #ffffff 100%);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  border-radius: 8px;
  transition: box-shadow 0.3s ease;
}
.dashboard-option .buttons {
  display: flex;
  gap: 1rem;
  align-self: flex-end;
  align-items: center;
  justify-content: flex-end;
  margin-top: auto;
}

.dashboard-option:hover {
  box-shadow: 6px 6px 12px rgba(0, 0, 0, 0.15);
}

.dashboard-option-title {
  font-size: 1.5rem;
  margin: 0;
  color: var(--oneflow-component-theme-color);
}

.dashboard-option-description {
  font-size: 1rem;
  margin: 1rem 0 0;
  color: var(--oneflow-component-font-color);
  margin-bottom: 1rem;
}

.oneflow button.dashboard-option-button {
  align-self: flex-end;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  margin-top: auto;
  font-size: 1rem;
  padding: 0.5rem 1rem;
  background-color: var(--oneflow-component-theme-color);
  color: #fff;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  transition: background-color 0.3s ease, transform 0.2s ease;
}

.oneflow button.dashboard-option-button:hover {
  background-color: var(--oneflow-component-theme-highlight-color);
  transform: translateY(-2px);
}

.oneflow button.dashboard-option-button i {
  margin-left: 0.5rem;
}

.dashboard-option-completed {
  padding: 0;
  margin: 0;
  margin-bottom: 1rem;
}

.dashboard-button {
  position: fixed;
  top: 12px;
  right: 12px;
  background-color: var(--oneflow-component-theme-color);
  border-radius: 4px;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem;
  transition: all 0.3s;
  border: 1px solid var(--oneflow-component-theme-background-color);
}

a.dashboard-button {
  text-decoration: none;
  color: var(--oneflow-component-theme-background-color);
}

a.dashboard-button:hover {
  background-color: var(--oneflow-component-theme-highlight-color);
  color: var(--oneflow-component-theme-background-color2);
}

.oneflow-help-text {
  background-color: var(--oneflow-component-theme-color-light);
  border: 1px solid var(--oneflow-component-theme-color);
  border-radius: 0.5rem;
  margin: 1rem;
  margin-top: -1rem;
  margin-left: 0.5rem;
}
.oneflow-help-text.no-margin {
  margin-top: 1rem;
}
.oneflow-help-text p {
  font-size: 0.8rem;
  color: var(--oneflow-component-theme-color);
  margin: 0;
  padding: 1rem;
}

.oneflow-alert {
  position: fixed;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin: 2rem;
  overflow-y: auto;
  border-radius: 8px;
  z-index: 999999;
  box-shadow: 4px 4px 6px rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  padding: 2rem;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  max-height: 80%;
}
.oneflow-alert button {
  background-color: transparent;
  border: none;
  color: white;
  font-size: 1.5rem;
  cursor: pointer;
  position: absolute;
  top: 0;
  right: 0;
  padding: 1rem;
}
.oneflow-alert.success {
  background-color: rgba(76, 175, 80, 0.3);
}
.oneflow-alert.info {
  background-color: rgba(33, 150, 243, 0.3);
}
.oneflow-alert.warning {
  background-color: rgba(255, 152, 0, 0.3);
}
.oneflow-alert.error {
  background-color: rgba(244, 67, 54, 0.3);
}
.oneflow-alert p {
  color: var(--oneflow-component-font-color);
  font-size: 1rem;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  vertical-align: middle;
  line-height: 1.7rem;
  margin: 0;
  padding: 0;
}
.oneflow-alert p.Success span {
  color: green;
}
.oneflow-alert p.Info span {
  color: blue;
}
.oneflow-alert p.Warning span {
  color: orange;
}
.oneflow-alert p.Error span {
  color: red;
}
.oneflow-alert p span {
  vertical-align: middle;
  font-size: 1.5rem;
  padding: 4px;
  border-radius: 50%;
}
.oneflow-alert h1 {
  font-size: 1.5rem;
  text-wrap: none;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  margin: 0;
}

.oneflow-popup-chat {
  position: fixed;
  bottom: 24px;
  right: 32px;
  max-width: calc(100vw - 70%);
  max-height: 300px;
  z-index: 1000;
  background-color: var(--oneflow-component-theme-color);
  color: white;
  font-size: 1.2rem;
  border-radius: 12px;
  box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.5);
  min-width: calc(100vw - 90%);
  scroll-behavior: smooth;
  overflow: visible;
  padding: 32px;
}
.oneflow-popup-chat button {
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 1.5rem;
  height: 1.5rem;
  padding: 0.5rem;
  cursor: pointer;
  border-radius: 50%;
  border: 1px solid white;
  background-color: var(--oneflow-component-theme-color);
  color: white;
  top: -0.5rem;
  right: -0.5rem;
}
.oneflow-popup-chat button i {
  font-size: 1.2rem;
}
.oneflow-popup-chat button:hover {
  background-color: white;
  color: var(--oneflow-component-theme-color);
}
.oneflow-popup-chat img {
  position: absolute;
  width: 50px;
  height: auto;
  border-radius: 50%;
  margin: 0 0 0 0;
  border: 1px solid var(--oneflow-component-theme-color);
  top: -25px;
  left: -25px;
  z-index: 1001;
  box-shadow: inset 0 0 10px 0 rgba(0, 0, 0, 0.5);
}
.oneflow-popup-chat blockquote {
  font-size: 1.2rem;
  font-weight: bold;
  margin: 0 0 1rem 0;
  border-left: 1px solid white;
}
.oneflow-popup-chat blockquote p {
  padding: 1rem;
  padding-left: 1.5rem;
}
.oneflow-popup-chat p {
  height: 100%;
  margin: 0 0 1rem 0;
  overflow-y: auto;
  max-height: 236px;
}

.prompt-helper:hover {
  left: 2px;
}

.prompt-helper {
  transition: all 0.5s;
  position: absolute;
  z-index: 99999;
  top: 12px;
  left: -96px;
}
.prompt-helper p {
  display: none;
}
.prompt-helper ul {
  list-style-type: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: row;
  gap: 2px;
  background-color: var(--oneflow-component-theme-glass-color);
  padding: 4px;
  border-radius: 4px;
}
.prompt-helper ul li {
  position: relative;
  width: 24px;
  height: 24px;
  background-color: var(--oneflow-component-theme-color);
  color: var(--oneflow-component-theme-background-color2);
}
.prompt-helper ul li.disabled {
  opacity: 0.5;
  pointer-events: none;
}
.prompt-helper ul li:hover {
  cursor: pointer;
  color: var(--oneflow-component-theme-color);
  background-color: var(--oneflow-component-theme-background-color2);
}
.prompt-helper ul li:hover.disabled {
  cursor: not-allowed;
}
.prompt-helper ul li span.tooltip {
  display: none;
  position: absolute;
  cursor: default;
  background-color: var(--oneflow-component-theme-color);
  color: var(--oneflow-component-theme-background-color2);
  padding: 4px;
  border-radius: 4px;
  z-index: 99999;
  bottom: -2rem;
  left: 4px;
  white-space: nowrap;
}
.prompt-helper ul li:hover span.tooltip {
  display: block;
}

.prompt-helper.processing {
  left: 4px;
}
.prompt-helper.processing p {
  display: block;
  color: var(--oneflow-component-theme-color);
  background-color: var(--oneflow-component-theme-background-color2);
  font-size: 1rem;
  padding: 8px;
  border-radius: 4px;
  box-shadow: 0 0 4px 0 var(--oneflow-component-theme-color);
}
.prompt-helper.processing ul {
  display: none;
}
.prompt-helper.processing ul li {
  cursor: not-allowed;
}

:host(oneflow-concierge) {
  display: block;
  padding: 1rem;
  margin-right: 24px;
  position: relative;
  max-height: 26rem;
  overflow-y: auto;
  --easing: cubic-bezier(.22,.61,.36,1);
}
:host(oneflow-concierge) * {
  box-sizing: border-box;
}
:host(oneflow-concierge) .concierge {
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  background-color: rgba(255, 255, 255, 0.2);
  border-color: var(--oneflow-component-border-color);
  border-radius: 12px;
  padding: 1rem;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  transition: transform 0.35s var(--easing), box-shadow 0.35s var(--easing);
  animation: cardIn 0.5s var(--easing) both;
}
:host(oneflow-concierge) .concierge:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.12);
}
:host(oneflow-concierge) .concierge::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 12px;
  padding: 1px;
  pointer-events: none;
  background: linear-gradient(130deg, rgba(255, 255, 255, 0.35), rgba(255, 255, 255, 0) 30%, var(--oneflow-component-theme-color) 70%, rgba(255, 255, 255, 0.35));
  mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0;
  transform: scale(0.99);
  transition: opacity 0.35s var(--easing), transform 0.35s var(--easing);
}
:host(oneflow-concierge) .concierge:focus-within::after {
  opacity: 1;
  transform: scale(1);
}
:host(oneflow-concierge) .concierge .display-text > p, :host(oneflow-concierge) .concierge .display-text > blockquote p {
  animation: bubbleIn 0.4s var(--easing) both;
}
:host(oneflow-concierge) .concierge .display-text p {
  margin: 0;
  color: var(--oneflow-component-text-color);
  border: none;
  background-color: rgba(255, 255, 255, 0.2);
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  border-radius: 12px;
  font-size: var(--oneflow-component-font-size);
  padding: 1rem;
  margin-bottom: 12px;
  color: var(--oneflow-component-theme-color);
}
:host(oneflow-concierge) .concierge .display-text blockquote {
  margin: 0;
  padding: 0;
}
:host(oneflow-concierge) .concierge .display-text blockquote p {
  border: none;
  border-left: 4px solid var(--oneflow-component-theme-color);
  border-radius: 0;
  background-color: rgba(255, 255, 255, 0.2);
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}
:host(oneflow-concierge) .concierge .chat-area {
  display: flex;
  align-items: center;
  padding: 0;
  margin: 0;
}
:host(oneflow-concierge) .concierge .chat-area img, :host(oneflow-concierge) .concierge .chat-area .persona-image {
  border-radius: 12px 0 0 12px;
  margin-right: 12px;
  height: 66px;
  width: 66px;
  padding: 0;
  margin: 0;
}
:host(oneflow-concierge) .concierge .chat-area .persona-image video {
  height: 66px;
  width: 66px;
  border: none;
  border-radius: 12px 0 0 12px;
  overflow: hidden;
  display: block;
}
:host(oneflow-concierge) .concierge .chat-area textarea {
  transition: background-color 0.2s var(--easing), border-color 0.2s var(--easing), box-shadow 0.2s var(--easing);
  width: 100%;
  height: 66px;
  max-height: 66px;
  border: 1px solid var(--oneflow-component-theme-color);
  background-color: rgba(255, 255, 255, 0.2);
  outline: none;
  resize: none;
  color: var(--oneflow-component-text-color);
  font-size: var(--oneflow-component-font-size);
  padding: 0.5rem;
  border-radius: 0 12px 12px 0;
}
:host(oneflow-concierge) .concierge .chat-area textarea:focus {
  background-color: var(--oneflow-component-background-color);
}
:host(oneflow-concierge) .concierge .chat-area textarea[disabled] {
  background-color: rgba(0, 0, 0, 0.05);
  cursor: not-allowed;
}
@keyframes cardIn {
  from {
    opacity: 0;
    transform: translateY(6px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
@keyframes bubbleIn {
  from {
    opacity: 0;
    transform: translateY(4px) scale(0.98);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

.oneflow form.space-components .oneflow-component {
  margin-bottom: 1.5rem;
}
.oneflow form.space-components .docked {
  margin-bottom: 0px;
}
.oneflow p.oneflow-label-value {
  margin: 0;
  padding: 0;
  margin-bottom: 1rem;
}
.oneflow p.oneflow-label-value label {
  margin: 0;
  padding: 0;
  font-weight: bold;
  display: block;
  margin-right: 1rem;
  margin-bottom: 0.5rem;
}
.oneflow p.oneflow-label-value span {
  display: block;
  margin: 0;
  padding: 0;
}
.oneflow .panel {
  background-color: var(--oneflow-panel-background-color);
  padding: var(--oneflow-panel-padding);
  border-radius: var(--oneflow-panel-border-radius);
}
.oneflow .panel.top-margin {
  margin-top: 48px;
}
.oneflow .panel.bottom-margin {
  margin-bottom: 24px;
}
.oneflow .panel.full-width {
  width: 100%;
}
.oneflow .panel.center-vertical {
  margin-top: auto;
  margin-bottom: auto;
}
.oneflow .panel.center-horizontal {
  margin-left: auto;
  margin-right: auto;
}
.oneflow .panel.text-center {
  text-align: center;
}
.oneflow .panel.drop-shadow {
  box-shadow: var(--oneflow-panel-drop-shadow);
}
.oneflow .panel.border {
  border: 1px solid darkslategray;
}
.oneflow .panel .title {
  font-size: var(--oneflow-h3-font-size);
  font-weight: bold;
  display: block;
  background-color: darkslategray;
  color: var(--oneflow-panel-title-color);
  margin: calc(var(--oneflow-panel-padding) * -1);
  margin-bottom: calc(var(--oneflow-panel-padding));
  padding: var(--oneflow-panel-padding);
  border-radius: var(--oneflow-panel-border-radius) var(--oneflow-panel-border-radius) 0 0;
}
.oneflow .panel .title.text-center {
  text-align: center;
}
.oneflow .panel .label-value {
  display: flex;
  flex-direction: column;
  margin-bottom: 1rem;
}
.oneflow .panel .label-value label {
  display: block;
  font-size: 1rem;
}
.oneflow .panel .label-value span {
  display: block;
  font-size: 1.5rem;
  font-weight: 400;
}
.oneflow .panel h3 {
  font-size: 2rem;
  color: var(--oneflow-component-theme-color);
  font-weight: bold;
  margin-bottom: 1rem;
}
.oneflow .panel p {
  font-size: 1rem;
  margin-bottom: 1rem;
}
.oneflow h1 {
  font-size: var(--oneflow-h1-font-size);
}
.oneflow h2 {
  font-size: var(--oneflow-h2-font-size);
}
.oneflow h3 {
  font-size: var(--oneflow-h3-font-size);
}
.oneflow button {
  background-color: var(--oneflow-button-background-color);
  border: 1px solid var(--oneflow-button-border-color);
  color: var(--oneflow-button-foreground-color);
  padding: var(--oneflow-button-padding);
  border-radius: var(--oneflow-button-border-radius);
  min-width: var(--oneflow-button-minium-width);
  cursor: pointer;
}
.oneflow button:hover {
  background-color: var(--oneflow-button-hover-background-color);
}
.oneflow button:disabled {
  pointer-events: none;
  opacity: 0.5;
}
.oneflow .spacer-half-line {
  height: 0.5rem;
}
.oneflow .spacer-single-line {
  height: 1rem;
}
.oneflow .spacer-double-line {
  height: 2rem;
}
.oneflow .flex {
  display: flex;
}
.oneflow .flex.inline-flex {
  display: inline-flex;
}
.oneflow .flex.full-height {
  height: 100%;
}
.oneflow .flex.justify-content-start {
  justify-content: start;
}
.oneflow .flex.justify-content-center {
  justify-content: center;
}
.oneflow .flex.justify-content-end {
  justify-content: end;
}
.oneflow .flex.justify-content-between {
  justify-content: space-between;
}
.oneflow .flex.justify-content-around {
  justify-content: space-around;
}
.oneflow .flex.justify-content-evenly {
  justify-content: space-evenly;
}
.oneflow .flex.align-items-center {
  align-items: center;
}
.oneflow .flex.align-items-end {
  align-items: end;
}
.oneflow .flex.align-items-start {
  align-items: start;
}
.oneflow .flex.align-items-stretch {
  align-items: stretch;
}
.oneflow .flex.align-content-center {
  align-content: center;
}
.oneflow .flex.align-content-end {
  align-content: end;
}
.oneflow .flex.align-content-start {
  align-content: start;
}
.oneflow .flex.align-content-stretch {
  align-content: stretch;
}
.oneflow .flex.align-content-between {
  align-content: space-between;
}
.oneflow .flex.align-content-around {
  align-content: space-around;
}
.oneflow .flex.align-content-evenly {
  align-content: space-evenly;
}
.oneflow .flex.gap-single {
  gap: 1rem;
}
.oneflow .flex.gap-half {
  gap: 0.5rem;
}
.oneflow .flex.gap-double {
  gap: 2rem;
}
.oneflow .flex.gap-none {
  gap: 0;
}
.oneflow .flex.flex-wrap {
  flex-wrap: wrap;
}
.oneflow .flex.flex-nowrap {
  flex-wrap: nowrap;
}
.oneflow .flex.flex-wrap-reverse {
  flex-wrap: wrap-reverse;
}
.oneflow .flex.flex-direction-row {
  flex-direction: row;
}
.oneflow .flex.flex-direction-column {
  flex-direction: column;
}
.oneflow .flex.flex-direction-row-reverse {
  flex-direction: row-reverse;
}
.oneflow .flex.flex-direction-column-reverse {
  flex-direction: column-reverse;
}
.oneflow blockquote {
  padding: 1rem;
  margin-left: 1rem;
  border: none;
  border-left: 4px solid var(--oneflow-component-theme-color);
  background-color: var(--oneflow-component-theme-glass-white-color);
}
.oneflow blockquote p {
  padding: 0;
  margin: 0;
}
.oneflow oneflow-pivot {
  display: block;
  margin-left: -1rem;
  margin-right: -1rem;
  margin-bottom: -1rem;
  position: relative;
}
.oneflow oneflow-pivot .tab {
  display: block;
  position: absolute;
  opacity: 0;
  top: 36px;
  left: 0;
  right: 0;
  bottom: 0;
  line-height: normal;
  background-color: var(--oneflow-background-color);
  transition: opacity 1s ease;
  overflow-y: auto;
}
.oneflow oneflow-pivot .tab.pad {
  padding: 1rem;
}
.oneflow oneflow-pivot .tab.bordered {
  border: 1px solid var(--oneflow-component-border-color);
}
.oneflow oneflow-pivot .tab.docked {
  overflow-y: auto;
}
.oneflow oneflow-pivot .tab.no-padding {
  padding: 0px;
}
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.oneflow oneflow-pivot .tab.active {
  z-index: 100;
}
.oneflow oneflow-pivot .tab.active > * {
  opacity: 1;
  animation: fadeIn 0.5s;
}
.oneflow oneflow-pivot .buttons-bar {
  display: flex;
  height: 36px;
  flex-wrap: wrap;
  z-index: 5;
}
.oneflow oneflow-pivot .pivot-button {
  opacity: 1;
  flex: 1 1 auto;
  border-style: none;
  background-color: transparent;
  border-width: 0px;
  font-size: var(--oneflow-component-font-size);
  font-family: var(--oneflow-component-font-family);
  color: var(--oneflow-component-font-color);
  opacity: 0.4;
  border-radius: 0px 0px 0 0;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  cursor: pointer;
  margin-bottom: -2px;
  padding: 4px;
  padding-top: 4px;
  padding-left: 8px;
  padding-right: 8px;
  padding-bottom: 8px;
  background-color: var(--oneflow-component-theme-background-color2);
}
.oneflow oneflow-pivot .pivot-button.error {
  background-color: var(--oneflow-component-error-color);
}
.oneflow oneflow-pivot .pivot-button.error::after {
  content: "(required)";
  background-color: var(--oneflow-component-error-color);
  color: white;
  font-size: 0.8rem;
  margin-left: 8px;
}
.oneflow oneflow-pivot .pivot-button.bordered {
  padding: 4px;
  padding-top: 4px;
  padding-left: 8px;
  padding-right: 8px;
  padding-bottom: 8px;
}
.oneflow oneflow-pivot .pivot-button:focus {
  outline: 0;
}
.oneflow oneflow-pivot .selected {
  background-color: var(--oneflow-component-theme-color);
  color: white;
}
.oneflow oneflow-pivot .selected.bordered {
  opacity: 0.8;
  cursor: default;
}
.oneflow oneflow-pivot .pivot-button:hover {
  opacity: 1;
}/*# sourceMappingURL=oneflow.css.map */