@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Titillium+Web:ital,wght@0,300;0,400;0,600;0,700;0,900;1,300;1,400;1,600;1,700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Titillium+Web:ital,wght@0,300;0,400;0,600;0,700;0,900;1,300;1,400;1,600;1,700&display=swap");
[data-component=Alignment] {
  flex: 0 0 auto;
  display: grid;
  gap: 0.35em;
  grid-template-columns: repeat(3, 15px);
  padding: 0.25em 0;
  border: 0;
}
[data-component=Alignment] button {
  display: block;
  width: 15px;
  height: 15px;
  cursor: pointer;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  border: 2px solid #999;
}
[data-component=Alignment] button:hover {
  border: 2px solid #555;
  background-color: #eee;
}
[data-component=Alignment] button.selected {
  border: 3px solid hsl(182, 58%, 42%);
  background-color: hsl(182, 58%, 42%);
}

.audio-player {
  display: flex;
  flex-direction: column;
  width: 100%;
  height: 100%;
}

.audio-player .thumb {
  width: 100%;
  height: calc(100% - 50px);
  flex-grow: 1;
}

.audio-player .thumb img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

.audio-player audio {
  width: 100%;
}

.autocomplete {
  position: relative;
  white-space: nowrap;
}

.autocomplete input {
  width: 100%;
  padding-left: 10px;
  outline: none;
}

.autocomplete .results {
  position: absolute;
  z-index: 99;
  display: none;
  background: var(--shiro-color-gray1);
  border: 1px solid var(--shiro-color-gray6);
  width: 100%;
  max-height: 300px;
  overflow-y: auto;
  overflow-x: none;
  gap: 0.5em;
  margin-top: 0.25em;
}

.autocomplete .results.open {
  display: block;
}

.autocomplete .results li {
  padding: 0.5em 0.75em;
  display: flex;
  gap: 1em;
  justify-content: space-between;
  align-items: baseline;
}

.autocomplete .results li:not(:first-child) {
  border-top: 1px solid var(--shiro-color-gray5);
}

.autocomplete .results li.selected {
  background-color: var(--shiro-color-gray2);
}

.autocomplete .results li:hover {
  background-color: var(--shiro-color-gray3);
  cursor: pointer;
}

.autocomplete .results li button {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  width: 100%;
  background: none;
  border: none;
}

.autocomplete .results li button .label {
  /* flex: 1; */
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  line-height: 1.2;
}

.autocomplete .results li button .extra {
  text-transform: uppercase;
  font-size: 0.6em;
  letter-spacing: 0.5px;
  font-weight: 700;
  color: var(--shiro-color-theme);
}

[data-component=Boolean] {
  display: flex;
  align-items: center;
  border: 0;
  padding: 0.25em 0;
}
[data-component=Boolean] button {
  content: " ";
  display: inline-block;
  position: relative;
  width: 2.3em;
  height: 1.2em;
  border-radius: 1em;
  background: #e0e0e0;
  cursor: pointer;
}
[data-component=Boolean] button::after {
  background: #ffffff;
  content: " ";
  display: inline-block;
  width: 0.8em;
  height: 0.8em;
  border-radius: 1em;
  position: absolute;
  left: 0.2em;
  top: 0.2em;
  transition: all 0.3s ease;
}
[data-component=Boolean] button.selected {
  background: hsl(182, 58%, 42%);
  border-color: hsl(182, 58%, 42%);
  transition: all 0.3s ease;
}
[data-component=Boolean] button.selected::after {
  left: 1.3em;
}

[data-component=Button] {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.25em;
  margin: 0 !important;
  padding: 0.5em 1em;
  background: hsl(182, 58%, 42%);
  border-radius: 5px;
  color: #FFF;
  white-space: nowrap;
}
[data-component=Button].outline {
  background: none;
  border: solid 1px hsl(182, 58%, 42%);
  color: hsl(182, 58%, 42%);
}
[data-component=Button].outline:hover {
  background: hsl(182, 58%, 42%);
  color: #fff;
}
[data-component=Button].text {
  color: #a8a8a8;
  background: none;
  transition: color 0.5s;
}
[data-component=Button].text:hover {
  color: #4B4F55;
}
[data-component=Button].disabled {
  opacity: 0.5;
}

[data-component=DataPair] {
  display: flex;
  align-items: center;
  gap: 1em;
  box-sizing: border-box;
  transition: background 0.5s;
}
[data-component=DataPair] .label {
  width: 25%;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  color: #444;
  font-size: 0.85em;
  font-weight: 600;
  transition: color 0.5s;
}
[data-component=DataPair] .value {
  width: 75%;
  outline: none;
  border: none;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  background: none;
  color: #999;
  font-size: 0.85em;
  transition: color 0.5s;
}
[data-component=DataPair] .value.warning {
  color: orange;
  font-weight: bold;
}
[data-component=DataPair] .value.error {
  color: red;
  font-weight: bold;
}
[data-component=DataPair] .buttons {
  opacity: 0;
  transition: opacity 0.5s;
}
[data-component=DataPair] .buttons button i {
  color: #BBB;
  transition: color 0.5s;
}
[data-component=DataPair] .buttons button:hover i {
  color: #888;
}
[data-component=DataPair]:hover {
  background: #eee;
}
[data-component=DataPair]:hover .label {
  color: #000;
}
[data-component=DataPair]:hover .value {
  color: #222;
}
[data-component=DataPair]:hover .buttons {
  opacity: 1;
}

div[data-component=DateIntervalPicker] {
  display: flex;
  align-items: center;
  width: 100%;
  height: 100%;
}

div[data-component=DateIntervalPicker] .from-label {
  margin-right: 0.5em;
}

div[data-component=DateIntervalPicker] .to-label {
  margin: 0 0.5em;
}

.datePicker {
  width: 100%;
  height: 100%;
}

.datePicker .label {
  display: inline-flex;
  align-items: center;
  width: 100%;
  height: 100%;
  min-height: 1.5em;
  padding: 0.25em 0.75em;
  background: #FFF;
  color: #333333;
  font-weight: 700;
  cursor: pointer;
  box-sizing: border-box;
}

.datePicker .label .entry::-moz-placeholder {
  color: #ccc;
  font-weight: 400;
}

.datePicker .label .entry::placeholder {
  color: #ccc;
  font-weight: 400;
}

.datePicker .label .entry {
  width: 1.8em;
  text-align: center;
  border: 0;
  outline: 0;
  font-weight: 700;
  margin: 0 0.1em;
}

.datePicker .label .entry.year {
  width: 2.75em;
}

.datePicker input.date-input {
  position: absolute;
  opacity: 0;
  width: 1px;
}

.datePicker button.calendar-button {
  color: #888;
}

.dropdown {
  display: flex;
  flex-direction: row-reverse;
  width: 100%;
  height: 100%;
  background: #FFF;
  box-sizing: content-box;
  position: relative;
}
.dropdown::after {
  font-family: "shiro-icon";
  content: "\e800";
  padding: 0 0.5em;
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
}
.dropdown.open::after {
  content: "\e803";
}
.textSearch .dropdown::after {
  display: none;
}
.dropdown button {
  width: 100%;
  padding: 0.25em 1em 0.25em 0.5em;
  background: none;
  text-align: left;
}
.dropdown button.placeholder span {
  color: #666;
  font-style: italic;
}
.dropdown button.summary {
  display: flex;
  align-items: center;
  gap: 0.5em;
}
.dropdown button.summary span {
  display: block;
  color: #666;
  overflow: hidden;
  text-overflow: ellipsis;
  padding-right: 1em;
  white-space: nowrap;
}
.dropdown button.summary span.total {
  overflow: visible;
  text-overflow: unset;
  padding: 0em 0.3em;
  background: #AAA;
  border-radius: 4px;
  color: #FFF;
}
.dropdown .search {
  width: 100%;
  height: 100%;
}
.dropdown .search input {
  width: 100%;
  height: 100%;
  padding: 0 1em;
  background: none;
  border: none;
  outline: none;
  cursor: text;
}
.dropdown .loading {
  position: absolute;
  align-self: center;
  margin-right: 1em;
  color: #AAA;
}
.dropdown.disabled button.dropdown-card span.label {
  color: #CCC;
}

#dropdown-items {
  position: fixed;
  top: 0;
  left: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: 100%;
  margin: 0;
  padding: 0;
  background: #FFF;
  border: solid 1px #999;
  z-index: 9999999;
  overflow-y: auto;
  gap: 0.15em;
}

.dropdown-card {
  display: flex;
  align-items: center;
  width: 100%;
  padding: 0 0.5em;
  gap: 0.75em;
}
.dropdown-card .label:empty::after {
  content: " ";
}
.dropdown-card:not(.divider):hover {
  background: #CCC;
}
.dropdown-card.static {
  padding-right: 2em !important;
}
.dropdown-card.static:hover {
  background: #FFF;
}
.dropdown-card.highlight {
  background: #EEE;
}
.dropdown-card.selected {
  background: #BBB;
}
.dropdown-card.multiple {
  gap: 0.75em;
}
.dropdown-card.multiple span.label {
  margin: 0;
}
.dropdown-card.multiple.selected {
  background: #FFF;
}
.dropdown-card.multiple.selected.highlight {
  background: #EEE;
}
.dropdown-card.multiple.selected:hover {
  background: #CCC;
}
.dropdown-card.multiple.selected .checkbox .check {
  background: var(--shiro-color-theme);
}
.dropdown-card.multiple .checkbox {
  width: 16px;
  height: 16px;
  padding: 3px;
  border: solid 1px #AAA;
  border-radius: 3px;
}
.dropdown-card.multiple .checkbox .check {
  width: 100%;
  height: 100%;
  border-radius: 2px;
}
.dropdown-card span.image {
  display: block;
  width: 1.8em;
  height: 1.8em;
  background-color: #e0e0e0;
  position: relative;
  padding: 0;
  margin: 0 0 0 -0.5em;
  box-sizing: border-box;
}
.dropdown-card span.image img {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.dropdown-card span.label {
  flex: 1 1;
  padding: 0;
  text-align: left;
  color: #111111;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  padding: 0.3em 0;
}
.dropdown-card span.label .description {
  margin-left: 1em;
  color: #666;
  font-size: 0.75em;
  font-style: italic;
}
.dropdown-card span.label.divider {
  font-weight: bold;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}
.dropdown-card span.extra {
  font-style: italic;
  font-size: 0.6em;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-weight: 700;
  color: hsl(182, 58%, 42%);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  padding: 0.3em 0;
}
.dropdown-card span.icon {
  margin-left: 1em;
  color: #a8a8a8;
}

[data-component=DropdownButton] {
  display: flex;
  align-items: center;
  gap: 0.25em;
}
[data-component=DropdownButton] button {
  height: 100%;
  background: hsl(182, 58%, 42%);
  margin: 0 !important;
  padding: 0 1em;
  border-radius: 5px;
  white-space: nowrap;
  color: #FFF;
}
[data-component=DropdownButton] button.selection {
  padding: 0 0.5em;
}

[data-component=DropdownList] {
  position: absolute;
  z-index: 9999999;
  display: flex;
  flex-direction: column;
  gap: 0.15em;
  overflow-y: auto;
  background: #FFF;
  border: solid 1px #999;
}
[data-component=DropdownList] button.list-item {
  display: flex;
  align-items: center;
  width: 100%;
  padding: 0 0.5em;
  gap: 0.75em;
}
[data-component=DropdownList] button.list-item.selected {
  background: #BBB;
}
[data-component=DropdownList] button.list-item:hover {
  background: #CCC;
}
[data-component=DropdownList] button.list-item .label {
  flex: 1 1;
  padding: 0;
  text-align: left;
  color: #111111;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  padding: 0.3em 0;
}

.embed-viewer {
  width: 100%;
  height: 100%;
}

.embed-viewer iframe {
  width: 100%;
  height: 100%;
  border: none;
}

.fileImport {
  min-width: 1px;
  width: 100%;
}

.fileImport label {
  display: flex;
  gap: 1em;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  height: 100%;
  padding: 0.25em 0.75em;
  font-weight: 700;
  color: #333333;
  cursor: pointer;
}

.fileImport label span.name {
  flex-grow: 1;
  display: inline-block;
  height: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  direction: rtl;
  text-align: left;
}

.fileImport.no-file label span.name {
  color: #999;
  font-style: italic;
  font-weight: normal;
}

.fileImport label span.mime-type, .fileImport label span.size {
  font-size: 0.8em;
  opacity: 0.6;
  white-space: nowrap;
}

.fileImport input {
  position: absolute;
  opacity: 0;
  width: 1px;
}

[data-component=FileSelect] {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  width: 100%;
}
[data-component=FileSelect] .image-preview {
  position: relative;
  width: auto;
  background: #fff;
  max-height: 150px;
}
[data-component=FileSelect] .image-preview .zoom {
  cursor: pointer;
  position: absolute;
  top: calc(50% - 15px);
  left: calc(50% - 15px);
  opacity: 0;
  width: 30px;
  height: 30px;
  transition: opacity 0.5s;
  font-size: 20px;
  font-weight: normal;
  color: #ffffff;
  text-shadow: 0px 0px 8px rgba(0, 0, 0, 0.75);
  z-index: 99;
}
[data-component=FileSelect] .image-preview img {
  cursor: pointer;
  height: 100%;
  transition: opacity 0.5s;
  z-index: 9;
}
[data-component=FileSelect] .image-preview:hover .zoom {
  opacity: 1;
}
[data-component=FileSelect] .image-preview:hover img {
  opacity: 0.85;
}
[data-component=FileSelect] .file-select-button {
  width: 100%;
  border: dashed 1px #ccc;
  padding: 5px 10px;
  border-radius: 4px;
  color: #999;
  text-align: left;
  transition: color 0.5s;
}
[data-component=FileSelect] .file-select-button:hover {
  color: #333;
}
[data-component=FileSelect] .binary-data {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  width: 100%;
  border: solid 1px #ccc;
  padding: 4px 10px;
  border-radius: 4px;
}
[data-component=FileSelect] .binary-data .url {
  width: 75%;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
[data-component=FileSelect] .binary-data .mimeType, [data-component=FileSelect] .binary-data .size {
  width: 10%;
  white-space: nowrap;
  padding: 1px 0;
  color: #AAA;
  overflow: hidden;
  text-overflow: ellipsis;
}
[data-component=FileSelect] .binary-data.local {
  color: #777;
  font-style: italic;
}
[data-component=FileSelect] .binary-data .tools {
  display: flex;
}
[data-component=FileSelect] .binary-data .tools button {
  color: #AAA;
  transition: color 0.5s;
}
[data-component=FileSelect] .binary-data .tools button:hover {
  color: #222;
}
[data-component=FileSelect] .binary-data .tools button.disabled {
  color: #ddd;
}
[data-component=FileSelect] .binary-data .tools button.disabled:hover {
  color: #ddd;
}

[data-component=FileUpload] {
  position: relative;
  display: flex;
  flex: 1 1;
  flex-direction: column;
  justify-content: space-between;
  align-items: stretch;
  gap: 1em;
  overflow-y: auto;
  padding: 0;
  text-align: center;
}
[data-component=FileUpload] button.file-select {
  flex: 1 1;
  border: 2px dotted #c8c9ca;
  border-radius: 12px;
}
[data-component=FileUpload] button.file-select:hover h2 {
  color: #888888;
}
[data-component=FileUpload] button.file-select h2 {
  font-weight: 700;
  font-size: 2em;
  color: #c8c9ca;
  line-height: 1;
  margin-bottom: 0.2em;
  transition: color 0.3s ease;
}
[data-component=FileUpload] input[type=file] {
  display: none;
}

.filter-panel {
  display: none;
  padding-bottom: 1em;
}

.filter-panel .plain-text {
  height: 100%;
}

.filter-panel .plain-text input.main-input {
  line-height: normal !important;
  padding: 0 0.5em;
  border: 0;
  outline: 0;
  height: 100%;
}

.filter-panel.active {
  display: block;
}

.filter-panel .add-filter-form {
  display: flex;
  gap: 0.35em;
  align-items: stretch;
}

.filter-panel .add-filter-form .filter-column {
  flex-grow: 1;
}

.filter-panel .add-filter-form .filter-column .plain-text {
  background: #fff;
}

.filter-panel .add-filter-form .filter-column:last-of-type {
  flex-grow: 6;
  overflow: hidden;
}

.filter-panel .add-filter-form .filter-column.label {
  flex-grow: 0;
  align-self: center;
}

.filter-panel .add-filter-form .add-button {
  padding: 0.1em 1em;
  color: var(--shiro-color-theme);
  border: 1px solid var(--shiro-color-theme);
  border-radius: 1em;
  font-size: 0.85em;
  font-weight: bold;
  margin-left: 0.25em;
}

.filter-panel .dropdown .search input {
  padding: 0.15em 1em;
}

.filters .filter-button.marked-in {
  border: dashed 1px;
}

.filters .filter-button.marked-out {
  border: dashed 1px;
}

.filters .filter-button.marked-out .label, .filters .filter-button.marked-out .value {
  text-decoration: line-through;
}

.filters .filter-button.restore::after {
  content: "\e812";
  font-family: "shiro-icon";
  font-style: normal;
  font-weight: normal;
  margin: 0 -0.25em 0 0.5em;
  color: #c8c9ca;
  font-size: 1.25em;
  line-height: 0.5em;
  text-decoration: none !important;
}

.filters .filter-apply {
  background-color: var(--shiro-color-theme);
  color: #fff;
  font-weight: 700;
  padding: 0.25em 1em;
  border-radius: 1em;
}

.search-result--filter {
  display: flex;
  gap: 1em;
  flex-wrap: wrap;
  align-items: center;
  margin-bottom: 1em;
}

div[data-component=FormattedText] {
  width: 100%;
  height: 200px;
  font-family: monospace;
}

div[data-component=FormattedText] .formatted-text {
  position: relative;
  width: 100%;
  height: 100%;
  border: 1px solid var(--shiro-color-gray5);
}

.geolocation-display {
  width: 100%;
  padding: 0 1em;
  text-align: left;
}

.dialog.geolocation {
  padding: 1.5em;
  gap: 1em;
}

.geolocation .map {
  width: 100%;
  height: 100%;
  min-height: 500px;
  background: #DDD;
  position: relative;
}

.geolocation .pac-target-input {
  padding: 0.25em 0.5em;
}

.geolocation .map-tools {
  display: grid;
  grid-template-columns: 8fr 1fr;
  gap: 1em;
}

.geolocation .map-tools button {
  border: 2px solid #2da5a9;
  font-weight: 600;
  background-color: #fff;
  text-transform: uppercase;
  font-size: 0.9em;
  color: #2da5a9;
  border-radius: 3px;
  padding: 0.3em 1.5em;
}

.geolocation .map-tools button:hover {
  background-color: #2da5a9;
  color: #fff;
}

.pac-container {
  z-index: 999999;
}

.graph-component {
  width: 100%;
  position: relative;
}

.graph-component .container {
  max-height: 350px;
}

.graph-component .container canvas {
  width: 100%;
  /* height: 100%; */
  max-height: 350px;
}

[data-component=HorizontalBarChart] {
  display: flex;
  flex-direction: column;
  width: 100%;
}
[data-component=HorizontalBarChart] .row {
  display: grid;
  grid-template-columns: 30% 70%;
  align-items: center;
  gap: 1em;
  padding: 0.3em 0;
  text-decoration: none;
}
[data-component=HorizontalBarChart] .row.loading {
  cursor: default;
}
[data-component=HorizontalBarChart] .row .info {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0.5em;
}
[data-component=HorizontalBarChart] .row .info .title {
  font-weight: bold;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
[data-component=HorizontalBarChart] .row .info .title.mock {
  width: 50%;
}
[data-component=HorizontalBarChart] .row .info .extra {
  display: inherit;
  flex-grow: 1;
  font-style: italic;
  font-weight: 300;
  white-space: nowrap;
}
[data-component=HorizontalBarChart] .row .info .value {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5em;
}
[data-component=HorizontalBarChart] .row .info .value .primary {
  font-weight: bold;
}
[data-component=HorizontalBarChart] .row .info .value .secondary {
  color: #BBB;
  font-size: 0.85em;
  font-weight: normal;
  transition: color 0.5s;
}
[data-component=HorizontalBarChart] .row .info .value.mock {
  width: 25px;
}
[data-component=HorizontalBarChart] .row .info .title, [data-component=HorizontalBarChart] .row .info .extra {
  opacity: 0.6;
  transition: opacity 0.5s;
}
[data-component=HorizontalBarChart] .row .bars {
  position: relative;
  display: flex;
  flex-direction: column-reverse;
  gap: 4px;
  height: 100%;
  opacity: 0.5;
  transition: opacity 0.5s;
}
[data-component=HorizontalBarChart] .row .bar {
  position: absolute;
  display: flex;
  align-items: center;
  height: 20px;
  padding: 0 0.5em;
  transition: filter 0.5s, width 0.5s, border-color 0.5s;
  background: #ccc;
  border: solid 1px rgba(102, 102, 102, 0);
  filter: saturate(0);
}
[data-component=HorizontalBarChart] .row .bar:nth-child(1n) {
  background: hsl(182, 28%, 72%);
}
[data-component=HorizontalBarChart] .row .bar:nth-child(2n) {
  background: hsl(182, 58%, 42%);
  height: 75%;
}
[data-component=HorizontalBarChart] .row .bar:nth-child(3n) {
  background: hsl(182, 58%, 32%);
  height: 75%;
}
[data-component=HorizontalBarChart] .row .bar span.label {
  opacity: 0;
  color: #333;
  font-size: 0.75em;
  white-space: nowrap;
  transition: opacity 0.5s;
}
[data-component=HorizontalBarChart] .row .bar:hover {
  border: solid 1px #444;
}
[data-component=HorizontalBarChart] .row .mock {
  display: inline-block;
  background: linear-gradient(90deg, #ddd, #eee, #ddd, #eee);
  background-size: 300% 100%;
  animation: slide-gradient 2s linear infinite;
}
[data-component=HorizontalBarChart] .row .mock:not(.bar) {
  height: 1em;
}
@keyframes slide-gradient {
  0% {
    background-position: 0% 0%;
  }
  100% {
    background-position: 100% 0%;
  }
}
[data-component=HorizontalBarChart] .row:hover .info .title, [data-component=HorizontalBarChart] .row:hover .info .extra {
  opacity: 1;
}
[data-component=HorizontalBarChart] .row:hover .info .value .secondary {
  color: #333;
}
[data-component=HorizontalBarChart] .row:hover .bars .bar {
  filter: saturate(1);
}

.image-annotation {
  position: absolute;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-end;
  box-sizing: border-box;
  padding: 0.2em 0.5em;
  /* background-color: rgba(200, 255, 200, .5); */
  border: solid 1px #fff;
  transition: background 0.3s ease-in-out, border 0.3s ease-in-out;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
}

.image-annotation .title {
  transition: color 0.3s ease-in-out;
  color: #fff;
  font-size: 0.85em;
  font-weight: bold;
  text-decoration: none;
}

.image-annotation .subtitle {
  transition: color 0.3s ease-in-out;
  color: #fff;
  font-size: 0.75em;
  text-decoration: none;
}

.image-annotation:hover {
  background-color: rgba(200, 200, 200, 0.35);
}

.image-annotation .move {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  cursor: move;
}

.image-annotation .handle {
  width: 6px;
  height: 6px;
  background: #ddd;
  position: absolute;
}

.image-annotation .handle.tl {
  top: -3px;
  left: -3px;
  cursor: nw-resize;
}

.image-annotation .handle.tc {
  top: -3px;
  left: calc(50% - 3px);
  cursor: n-resize;
}

.image-annotation .handle.tr {
  top: -3px;
  left: calc(100% - 3px);
  cursor: sw-resize;
}

.image-annotation .handle.cl {
  top: calc(50% - 3px);
  left: -3px;
  cursor: e-resize;
}

.image-annotation .handle.cr {
  top: calc(50% - 3px);
  left: calc(100% - 3px);
  cursor: e-resize;
}

.image-annotation .handle.bl {
  top: calc(100% - 3px);
  left: -3px;
  cursor: sw-resize;
}

.image-annotation .handle.bc {
  top: calc(100% - 3px);
  left: calc(50% - 3px);
  cursor: n-resize;
}

.image-annotation .handle.br {
  top: calc(100% - 3px);
  left: calc(100% - 3px);
  cursor: nw-resize;
}

.image-annotation.highlight {
  border-color: red;
}

.image-annotation.highlight .handle {
  background: red;
}

.image-annotation.highlight .title, .image-annotation.highlight .subtitle {
  color: red;
}

.image-viewer {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  max-width: 100%;
  max-height: 100%;
}

.image-viewer img {
  display: block;
  /* width: 100%;
  height: 100%; */
  -o-object-fit: contain;
     object-fit: contain;
  transition: opacity 0.15s ease-in;
}

.image-viewer .annotations {
  position: absolute;
  width: 100%;
  height: 100%;
}

.image-viewer .icon-loading {
  color: #999;
}

.image-viewer .loading-bar {
  width: 100%;
  bottom: 0;
  height: 5px;
  position: absolute;
}

.image-viewer .loading-bar .bar {
  display: block;
  width: 0;
  height: 100%;
  background: #999;
}

[data-component=ImportForm] {
  padding: 1em 0 !important;
}
[data-component=ImportForm] h2 {
  font-size: 1.1em;
  color: #333;
  padding-bottom: 0.5em;
  margin-bottom: 1.2em;
}
[data-component=ImportForm] h2 .dropdown {
  box-sizing: border-box;
  border: solid 2px #222;
}
[data-component=ImportForm] .form-items {
  display: flex;
  flex-direction: column;
  overflow-y: auto;
  max-height: 50vh;
}

[data-component=ImportFormItem] {
  display: grid;
  grid-template-columns: minmax(120px, 1fr) 4fr;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1em;
  border-bottom: 1px dotted #c8c9ca;
  padding: 0 0 0.75em 0;
}
[data-component=ImportFormItem] .url-form--label .dropdown {
  border: solid 1px #666;
  border-radius: 4px;
}
[data-component=ImportFormItem] .url-form--fields .url-form--field {
  align-items: center;
}
[data-component=ImportFormItem] .url-form--fields .url-form--field .values {
  display: flex;
  flex-direction: column;
  width: 100%;
}
[data-component=ImportFormItem] .url-form--fields .url-form--field .values .value-entry {
  display: flex;
  align-items: center;
  gap: 1em;
  padding: 0 1em;
}
[data-component=ImportFormItem] .url-form--fields .url-form--field .values .value-entry .plain-text {
  border: solid 1px #ccc;
  border-radius: 4px;
}
[data-component=ImportFormItem] .url-form--fields .url-form--field .values .value-entry .dropdown {
  width: 25%;
  border: solid 1px #ccc;
  border-radius: 4px;
  font-size: 0.75em;
}
[data-component=ImportFormItem] .url-form--fields .url-form--field .values .value-entry .edit-button {
  color: #aaa;
}
[data-component=ImportFormItem].unselected .url-form--label .dropdown {
  border: solid 1px #c8c9ca;
}
[data-component=ImportFormItem].unselected .url-form--label .dropdown .placeholder span {
  color: #c8c9ca;
}
[data-component=ImportFormItem].unselected .url-form--label .dropdown .dropdown-card .label {
  color: #c8c9ca;
}
[data-component=ImportFormItem].unselected .url-form--fields .url-form--field .values .value-entry .dropdown {
  border-color: #eee;
}
[data-component=ImportFormItem].unselected .url-form--fields .url-form--field .values .value-entry .edit-button {
  color: #eee;
}

[data-component=ItemSearch] {
  display: flex;
  flex-direction: column;
  gap: 1.5em;
  width: 100%;
  max-width: 1024px;
  min-height: 50vh;
  max-height: 80vh;
}
[data-component=ItemSearch] .search-result .search-result--item .search-result--name {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
[data-component=ItemSearch] .search-result i.icon-loading {
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
  box-sizing: border-box;
  width: 100%;
  height: 90%;
  color: #999;
}

[data-component=Layout] {
  display: flex;
  flex-direction: column;
  gap: 0.75em;
}
[data-component=Layout] .radio-image-group {
  display: flex;
  gap: 0.75em;
}
[data-component=Layout] .radio-image-group span button {
  display: block;
  width: 42px;
  height: 42px;
  position: relative;
  cursor: pointer;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  border: 2px solid #999;
}
[data-component=Layout] .radio-image-group span button.text-image-h-75-25 {
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' version='1.1' viewBox='0 0 40 40'><rect x='10.09' y='19.21' width='12.57' height='1.57'/><rect x='10.09' y='14.19' width='12.57' height='1.57'/><rect x='10.09' y='24.22' width='12.57' height='1.57'/><rect x='32' y='-.01' width='8' height='40'/></svg>");
}
[data-component=Layout] .radio-image-group span button.text-image-h-60-40 {
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' version='1.1' viewBox='0 0 40 40'><rect x='8.09' y='19.21' width='12.57' height='1.57'/><rect x='8.09' y='14.19' width='12.57' height='1.57'/><rect x='8.09' y='24.22' width='12.57' height='1.57'/><rect x='28' width='12' height='40'/></svg>");
}
[data-component=Layout] .radio-image-group span button.text-image-h-50-50 {
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' version='1.1' viewBox='0 0 40 40'><rect x='5.05' y='19.21' width='10.05' height='1.57'/><rect x='5.05' y='14.19' width='10.05' height='1.57'/><rect x='5.05' y='24.22' width='10.05' height='1.57'/><rect x='20' width='20' height='40'/></svg>");
}
[data-component=Layout] .radio-image-group span button.text-image-h-40-60 {
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' version='1.1' viewBox='0 0 40 40'><rect x='2.42' y='19.23' width='7.08' height='1.57'/><rect x='2.42' y='24.24' width='7.08' height='1.57'/><rect x='2.42' y='14.21' width='7.08' height='1.57'/><rect x='12' width='28' height='40'/></svg>");
}
[data-component=Layout] .radio-image-group span button.text-image-h-25-75 {
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' version='1.1' viewBox='0 0 40 40'><rect x='2.07' y='19.19' width='4.02' height='1.57'/><rect x='2.07' y='24.2' width='4.02' height='1.57'/><rect x='2.07' y='14.17' width='4.02' height='1.57'/><rect x='8' y='-.03' width='32' height='40'/></svg>");
}
[data-component=Layout] .radio-image-group span button.image-text-full-page {
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' version='1.1' viewBox='0 0 40 40'><path d='M0,0v40h40V0H0ZM26.28,25.8h-12.57v-1.57h12.57v1.57ZM26.28,20.78h-12.57v-1.57h12.57v1.57ZM26.28,15.77h-12.57v-1.57h12.57v1.57Z'/></svg>");
}
[data-component=Layout] .radio-image-group span button.image-text-h-75-25 {
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' version='1.1' viewBox='0 0 40 40'><rect x='33.91' y='19.19' width='4.02' height='1.57'/><rect x='33.91' y='14.17' width='4.02' height='1.57'/><rect x='33.91' y='24.2' width='4.02' height='1.57'/><rect y='-.03' width='32' height='40'/></svg>");
}
[data-component=Layout] .radio-image-group span button.image-text-h-60-40 {
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' version='1.1' viewBox='0 0 40 40'><rect x='30.5' y='19.21' width='7.08' height='1.57'/><rect x='30.5' y='14.19' width='7.08' height='1.57'/><rect x='30.5' y='24.22' width='7.08' height='1.57'/><rect width='28' height='40'/></svg>");
}
[data-component=Layout] .radio-image-group span button.image-text-h-50-50 {
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' version='1.1' viewBox='0 0 40 40'><rect x='24.89' y='19.23' width='10.05' height='1.57'/><rect x='24.89' y='24.24' width='10.05' height='1.57'/><rect x='24.89' y='14.21' width='10.05' height='1.57'/><rect width='20' height='40'/></svg>");
}
[data-component=Layout] .radio-image-group span button.image-text-h-40-60 {
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' version='1.1' viewBox='0 0 40 40'><rect x='19.34' y='19.23' width='12.57' height='1.57'/><rect x='19.34' y='24.24' width='12.57' height='1.57'/><rect x='19.34' y='14.21' width='12.57' height='1.57'/><rect width='12' height='40'/></svg>");
}
[data-component=Layout] .radio-image-group span button.image-text-h-25-75 {
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' version='1.1' viewBox='0 0 40 40'><rect x='17.34' y='19.19' width='12.57' height='1.57'/><rect x='17.34' y='24.2' width='12.57' height='1.57'/><rect x='17.34' y='14.17' width='12.57' height='1.57'/><rect y='-.03' width='8' height='40'/></svg>");
}
[data-component=Layout] .radio-image-group span button.text-image-v-25-75 {
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' version='1.1' viewBox='0 0 40 40'><rect y='8' width='40' height='32'/><rect x='13.72' y='3.33' width='12.57' height='1.57'/></svg>");
}
[data-component=Layout] .radio-image-group span button.text-image-v-40-60 {
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' version='1.1' viewBox='0 0 40 40'><rect y='12' width='40' height='28'/><rect x='13.72' y='7.09' width='12.57' height='1.57'/><rect x='13.71' y='3.21' width='12.57' height='1.57'/></svg>");
}
[data-component=Layout] .radio-image-group span button.text-image-v-50-50 {
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' version='1.1' viewBox='0 0 40 40'><rect y='20' width='40' height='20'/><rect x='13.72' y='9.44' width='12.57' height='1.57'/><rect x='13.71' y='13.88' width='12.57' height='1.57'/><rect x='13.72' y='4.99' width='12.57' height='1.57'/></svg>");
}
[data-component=Layout] .radio-image-group span button.text-image-v-60-40 {
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' version='1.1' viewBox='0 0 40 40'><rect x='13.92' y='13.31' width='12.57' height='1.57'/><rect x='13.92' y='8.29' width='12.57' height='1.57'/><rect x='13.92' y='18.32' width='12.57' height='1.57'/><rect y='28' width='40' height='12'/></svg>");
}
[data-component=Layout] .radio-image-group span button.text-image-v-75-25 {
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' version='1.1' viewBox='0 0 40 40'><rect x='13.72' y='15.59' width='12.57' height='1.57'/><rect x='13.71' y='10.58' width='12.57' height='1.57'/><rect x='13.72' y='20.6' width='12.57' height='1.57'/><rect y='32' width='40' height='8'/></svg>");
}
[data-component=Layout] .radio-image-group span button.text-image-full-page {
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' version='1.1' viewBox='0 0 40 40'><rect x='13.72' y='19.22' width='12.57' height='1.57'/><rect x='13.72' y='24.23' width='12.57' height='1.57'/><rect x='13.72' y='14.2' width='12.57' height='1.57'/></svg>");
}
[data-component=Layout] .radio-image-group span button.image-text-v-25-75 {
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' version='1.1' viewBox='0 0 40 40'><rect x='13.9' y='22.84' width='12.57' height='1.57'/><rect x='13.9' y='27.86' width='12.57' height='1.57'/><rect x='13.9' y='17.82' width='12.57' height='1.57'/><rect width='40' height='8'/></svg>");
}
[data-component=Layout] .radio-image-group span button.image-text-v-40-60 {
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' version='1.1' viewBox='0 0 40 40'><rect x='13.88' y='25.22' width='12.57' height='1.57'/><rect x='13.88' y='30.23' width='12.57' height='1.57'/><rect x='13.88' y='20.2' width='12.57' height='1.57'/><rect width='40' height='12'/></svg>");
}
[data-component=Layout] .radio-image-group span button.image-text-v-50-50 {
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' version='1.1' viewBox='0 0 40 40'><rect width='40' height='20'/><rect x='13.71' y='29' width='12.57' height='1.57'/><rect x='13.71' y='24.54' width='12.57' height='1.57'/><rect x='13.72' y='33.45' width='12.57' height='1.57'/></svg>");
}
[data-component=Layout] .radio-image-group span button.image-text-v-60-40 {
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' version='1.1' viewBox='0 0 40 40'><rect width='40' height='28'/><rect x='13.72' y='31.34' width='12.57' height='1.57'/><rect x='13.71' y='35.22' width='12.57' height='1.57'/></svg>");
}
[data-component=Layout] .radio-image-group span button.image-text-v-75-25 {
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' version='1.1' viewBox='0 0 40 40'><rect width='40' height='32'/><rect x='13.71' y='35.11' width='12.57' height='1.57'/></svg>");
}
[data-component=Layout] .radio-image-group span button:hover {
  border: 2px solid #555;
}
[data-component=Layout] .radio-image-group span button::before {
  content: "";
  display: block;
  background-color: #FFF;
  opacity: 0.75;
  position: absolute;
  inset: 0 0 0 0;
}
[data-component=Layout] .radio-image-group span button.selected {
  border: 3px solid hsl(182, 58%, 42%);
}
[data-component=Layout] .radio-image-group span button.selected::before {
  opacity: 0.3;
}

[data-component=ListHeader] .filter-range {
  min-width: 150px;
}

/* Main container for auth pages */
#auth {
  width: 100%;
  min-height: 405px;
  box-sizing: border-box;
  background: #FFF;
  border-radius: 5px;
  font-family: "Titillium Web", sans-serif;
}

#auth .pages {
  display: flex;
  flex-wrap: nowrap;
  width: 100%;
  box-sizing: border-box;
  overflow: hidden;
}

#auth .page {
  display: flex;
  flex-direction: column;
  position: relative;
  flex-grow: 1;
  flex-shrink: 0;
  width: 100%;
  box-sizing: border-box;
  left: 0;
  transition: left 0.5s;
}

#auth .page h2 {
  margin: 0;
  padding: 0;
  text-align: center;
}

#auth .page .message {
  margin: 1em 0 0 0;
  padding: 0;
}

#auth .page .message.error {
  color: #EC4949;
  font-weight: 700;
  text-align: center;
  font-size: 1.2em;
}

#auth .page fieldset {
  display: flex;
  flex-direction: column;
  margin: 0;
  padding: 0;
  border: none;
}

#auth .page fieldset .error {
  color: red;
}

#auth .page fieldset input {
  margin: 0.25em 0 1em 0;
  padding: 0.5em 0.5em;
  background: none;
  border: none;
  border-bottom: solid 1px #333;
  outline: none;
}

#auth .page button {
  cursor: pointer;
}

#auth .page button.primary {
  align-self: center;
  position: relative;
  width: 200px;
  margin-top: 2.5em;
  padding: 0.5em 1em;
  background: none;
  border-radius: 5px;
  border: solid 1px #2da4a8;
  color: #2da4a8;
  font-weight: bold;
}

#auth .page button.primary:hover {
  background: #2da4a8;
  color: #FFF;
}

#auth .page fieldset button.password-reset-button {
  align-self: flex-end;
  width: auto;
  background: none;
  border: none;
  font-size: 0.8em;
  text-transform: uppercase;
  font-weight: 700;
  color: #999;
}

#auth .page fieldset button.password-reset-button:hover {
  color: #000;
}

#auth .page button.primary.loading {
  border-color: #CCC;
  color: #CCC;
}

#auth .page button.primary.loading::after {
  content: " ";
  width: 10px;
  height: 10px;
  border-radius: 1em;
  position: absolute;
  top: 50%;
  right: 10px;
  border-width: 1px 2px 0 0;
  border-style: solid;
  border-color: #CCC;
  animation: mymove 0.75s linear;
  animation-iteration-count: infinite;
}

#auth .page button.primary.loading:hover {
  background: #FFF;
  border-color: #CCC;
  color: #CCC;
}

@keyframes mymove {
  0% {
    transform: translateY(-50%) rotate(0turn);
  }
  100% {
    transform: translateY(-50%) rotate(1turn);
  }
}
#log-viewer {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  width: 50%;
  height: 75%;
  min-height: 750px;
  margin: 100px 0 0 0;
  padding: 10px;
  background: #fff;
  z-index: 1;
}

#log-viewer .loading {
  display: flex;
  align-items: center;
}

#log-viewer .loading::after {
  content: " ";
  width: 25px;
  height: 25px;
  border-radius: 1em;
  top: 50%;
  right: 0.85em;
  border-width: 1px 2px 0 0;
  border-style: solid;
  border-color: #333;
  animation: mymove 0.75s linear;
  animation-iteration-count: infinite;
}

#log-viewer .record-header {
  width: 100%;
  padding: 1em;
  border: solid 1px #CCC;
  font-size: 0.9em;
}

#log-viewer .filters {
  display: flex;
  justify-content: flex-start;
  width: 100%;
  margin-bottom: 1em;
}

#log-viewer .filters .dropdown {
  width: 50%;
  border: solid 1px #CCC;
}

#log-viewer .values {
  width: 100%;
  display: flex;
  justify-content: space-between;
  flex-direction: row;
  margin-bottom: 1em;
}

#log-viewer .values .value-container {
  display: flex;
  flex-direction: column;
  width: 100%;
  height: 100%;
  padding: 0.5em 1em;
  border: solid 1px #CCC;
  border-top: none;
}

#log-viewer .values .value-container h3 {
  font-size: 1em;
  font-weight: bold;
}

#log-viewer .values .value-container pre {
  width: 100%;
  overflow-y: auto;
  box-sizing: border-box;
  font-size: 0.9em;
}

#log-viewer .values .value-container:nth-child(2) {
  border-left: none;
}

#log-viewer .log-data {
  width: 100%;
  height: 30%;
  margin-bottom: 10px;
  padding: 10px;
  overflow-y: auto;
  box-sizing: border-box;
  border: solid 1px #CCC;
  font-size: 0.8em;
}

#log-viewer .logs {
  display: flex;
  flex-direction: column;
  width: 100%;
  overflow-y: auto;
  box-sizing: border-box;
}

#log-viewer .logs .log-entry {
  display: flex;
  justify-content: space-between;
  font-size: 0.85em;
}

#log-viewer .logs .log-entry:nth-child(odd) {
  background: #EEE;
}

#log-viewer .logs .log-entry:hover {
  background: #DDD;
}

#log-viewer .logs .log-entry.selected {
  background: #999;
  color: #FFF;
}

#log-viewer .logs .log-entry .log-date {
  width: 25%;
  padding: 0 10px;
  text-align: left;
}

#log-viewer .logs .log-entry .log-user {
  width: 25%;
  padding: 0 10px;
  text-align: left;
}

#log-viewer .logs .log-entry .log-property {
  width: 25%;
  padding: 0 10px;
  text-align: left;
}

#log-viewer .logs .log-entry .log-type {
  width: 25%;
  padding: 0 10px;
  text-align: right;
}

.media-viewer {
  display: flex;
  flex-direction: column;
  width: 75%;
  height: 75%;
  position: relative;
  align-self: center;
}

.media-viewer .annotations-loading {
  display: flex;
  justify-content: center;
}

.media-viewer .media-container {
  display: flex;
  width: 100%;
  height: 100%;
}

.media-viewer .media-container .media-component {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  background: #f9f9f9;
}

.media-viewer .media-container .media-component .icon-loading {
  font-size: 2em;
}

.media-viewer .media-container .media-tools {
  width: 0px;
  height: 100%;
  flex-shrink: 0;
  background: #fff;
  padding: 0;
  overflow: hidden;
  transition: width 0.3s ease-in-out, padding 0.3s ease-out;
}

.media-viewer .media-container .media-tools .tools-container {
  position: relative;
  left: 0;
  width: 600px;
  height: 100%;
  display: flex;
  transition: left 0.25s ease-in-out;
}

.media-viewer .media-container .media-tools .tools-container.annotations {
  left: -300px;
}

.media-viewer .media-container .media-tools.open {
  width: 300px;
}

.media-viewer .media-container .media-tools .media-info {
  overflow: hidden;
  width: 50%;
  margin-bottom: 2em;
  padding: 1em;
}

.media-viewer .media-container .media-tools .media-info h2 {
  overflow: hidden;
  text-overflow: ellipsis;
  width: 100%;
}

.media-viewer .media-container .media-tools .media-annotations .dropdown {
  height: 2.3em;
  border: solid 1px #777;
}

.media-viewer .media-container .media-tools .media-annotations {
  display: flex;
  flex-direction: column;
  width: 50%;
  margin-bottom: 2em;
  padding: 1em;
}

.media-viewer .media-container .media-tools .media-annotations h3 {
  margin-bottom: 1em;
}

.media-viewer .media-container .media-tools .media-annotations h4 {
  margin-bottom: 0.5em;
}

.media-viewer .media-container .media-tools .media-annotations p {
  display: flex;
  margin-bottom: 0.25em;
}

.media-viewer .media-container .media-tools .media-annotations p button {
  opacity: 0;
}

.media-viewer .media-container .media-tools .media-annotations p:hover button {
  opacity: 1;
}

.media-viewer .media-container .media-tools .media-annotations p.main {
  justify-content: center;
  gap: 1em;
  margin-top: 2em;
}

.media-viewer .media-container .media-tools .media-annotations p.main button {
  opacity: 1;
  background: hsl(182, 58%, 42%);
  padding: 0.35em 1em;
  border-radius: 3px;
  color: #fff;
  font-size: 0.9em;
  font-weight: 600;
  text-transform: uppercase;
}

.media-viewer .media-container .media-tools .media-annotations p.main button:hover {
  background: hsl(182, 58%, 35%);
}

.media-viewer .media-container .media-tools .media-annotations a.item {
  flex-grow: 1;
  display: inline-block;
  background: #f9f9f9;
  padding: 0.2em 0.5em;
  border-radius: 8px;
}

.media-viewer .media-container .media-tools .media-annotations a.item.faded {
  background: #fafafa;
  color: #999;
}

.media-viewer .media-container .media-tools .media-annotations a.item.edit {
  background: #BBB;
}

.media-viewer .media-container .media-tools .media-annotations a.item.highlight {
  background: #EC4949;
  color: #fff;
}

.media-viewer .media-container .media-tools .media-annotations a.item span.description {
  margin-left: 0.5em;
  font-size: 0.75em;
}

.media-viewer .media-container .media-tools .media-annotations .add-annotation {
  margin-top: 0.5em;
  margin-bottom: 1em;
  background: #eee;
  border-radius: 4px;
  padding: 0.2em 0.5em;
  color: #777;
}

.media-viewer .media-container .media-tools .media-annotations .add-annotation:hover {
  color: #555;
}

.media-viewer .media-container .media-tools .media-controls {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.media-viewer .media-container .media-tools .media-controls button {
  margin-bottom: 1em;
  padding: 0.5em 1em;
  background: #DDD;
  border-radius: 4px;
  transition: background 0.35s ease-in-out;
}

.media-viewer .media-container .media-tools .media-controls button:hover {
  background: #eee;
}

.media-viewer .media-container .media-views {
  width: 50px;
  background: #fff;
}

.media-viewer .media-container .media-views ul {
  display: flex;
  flex-direction: column;
  gap: 0;
  padding: 1em 0;
}

.media-viewer .media-container .media-views ul li {
  width: 100%;
  list-style: none;
}

.media-viewer .media-container .media-views ul li button {
  position: relative;
  width: 100%;
  height: 40px;
  box-sizing: border-box;
  border-left: solid 2px #fff;
  color: #555;
  text-align: center;
}

.media-viewer .media-container .media-views ul li button .bubble {
  display: flex;
  background: teal;
  color: white;
  width: 16px;
  height: 16px;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  position: absolute;
  top: 50%;
  right: 10%;
  font-size: 0.75em;
}

.media-viewer .media-container .media-views ul li button:hover {
  background: #f8f8f8;
  border-left: solid 2px #f8f8f8;
}

.media-viewer .media-container .media-views ul li button.selected {
  border-left: solid 2px #f3f3f3;
}

.media-viewer .media-container .media-views ul li button.faded {
  color: #AAA;
}

.media-viewer nav {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1em;
  width: 100%;
  height: 75px;
}

.media-viewer nav button {
  padding: 1em;
  background: white;
  color: black;
  border: solid 1px white;
}

.media-viewer nav button:hover {
  border: solid 1px black;
}

.media-viewer nav button.disabled {
  cursor: default;
  opacity: 0.35;
}

.media-viewer nav button.disabled:hover {
  border: solid 1px white;
}

[data-component=MetadataViewer] {
  display: flex;
  flex-direction: column;
  gap: 10px;
  overflow: hidden;
  width: 100%;
  height: 100%;
  background: #fff;
  padding: 20px;
  z-index: 1;
}
[data-component=MetadataViewer] h3 {
  margin-bottom: 10px;
  color: #666;
  font-size: 0.95em;
  font-weight: 500;
}
[data-component=MetadataViewer] .object-items {
  margin: 10px 0;
  padding: 10px 20px;
  border: solid 1px #c9c9c9;
}
[data-component=MetadataViewer] .array-items {
  margin: 10px 0 20px;
  background: #f5f5f5;
}
[data-component=MetadataViewer] .array-items [data-component=DataPair] {
  padding: 2px 10px;
  border-bottom: solid 1px #ddd;
}
[data-component=MetadataViewer] .array-items [data-component=DataPair]:last-child {
  border-bottom: none;
}
[data-component=MetadataViewer] .data {
  height: 100%;
  overflow-y: scroll;
  padding-right: 20px;
}

.shiro-modal [data-component=MetadataViewer] {
  width: 75vw;
  height: 80vh;
  margin-top: 10vh;
  border: solid 1px #ddd;
}

[data-component=NestedList] {
  position: relative;
}
[data-component=NestedList] .search {
  display: flex;
  gap: 20px;
  padding: 10px 0;
}
[data-component=NestedList] .search [data-component=PlainText] {
  border: solid 1px #ccc;
}
[data-component=NestedList] .search [data-component=PlainText] input {
  padding: 4px 20px;
}
[data-component=NestedList] li {
  position: relative;
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 1em;
  padding: 0.25em 0;
  border-bottom: 1px dotted #c8c9ca;
  list-style: none;
  transition: background 0.5s;
}
[data-component=NestedList] li.hidden {
  display: none;
}
[data-component=NestedList] li.faded {
  opacity: 0.25;
}
[data-component=NestedList] li.featured {
  background: hsl(182, 38%, 88%);
}
[data-component=NestedList] li.dragged {
  display: none;
  opacity: 0.25;
  background: red;
}
[data-component=NestedList] li.highlight {
  background: #eee;
  border: solid 1px #999;
}
[data-component=NestedList] li.parent {
  background: #f4f4f4;
}
[data-component=NestedList] li.parent .label {
  color: hsl(182, 58%, 42%);
}
[data-component=NestedList] li button {
  background: none;
  transition: none;
}
[data-component=NestedList] li .toggle {
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
  align-self: center;
  width: 20px;
  height: 20px;
  margin-left: -25px;
}
[data-component=NestedList] li .toggle .icon {
  width: 10px;
  height: 10px;
  background: hsl(182, 58%, 42%);
  transform: rotate(90deg);
  clip-path: polygon(4px 0, 6px 0, 6px 4px, 6px 4px, 6px 6px, 6px 6px, 6px 10px, 4px 10px, 4px 6px, 4px 6px, 4px 4px, 4px 4px);
  transition: clip-path 0.3s, transform 0.3s;
}
[data-component=NestedList] li .toggle.expand .icon {
  transform: rotate(0deg);
  clip-path: polygon(4px 0, 6px 0, 6px 4px, 10px 4px, 10px 6px, 6px 6px, 6px 10px, 4px 10px, 4px 6px, 0 6px, 0 4px, 4px 4px);
}
[data-component=NestedList] li .label {
  flex-grow: 1;
  text-align: left;
  line-height: 1.5;
}
[data-component=NestedList] li .label span.main {
  display: flex;
  display: flex;
  align-items: baseline;
  gap: 20px;
  width: 100%;
  font-size: 1em;
  font-weight: 600;
}
[data-component=NestedList] li .label span.main .description {
  color: #999;
  font-size: 0.75em;
  font-weight: 600;
}
[data-component=NestedList] li .extra {
  color: hsl(182, 58%, 42%);
  font-size: 0.75em;
  font-weight: 600;
  text-transform: uppercase;
}
[data-component=NestedList] li .tools button {
  color: #c8c9ca;
  transition: color 0.5s;
}
[data-component=NestedList] li .tools button:hover {
  color: #444;
}
[data-component=NestedList] li:hover {
  background-color: #eee;
}
[data-component=NestedList] li:last-child {
  border-bottom: none;
}
[data-component=NestedList] .move-element + li {
  border-top: 1px dotted #c8c9ca;
}
[data-component=NestedList] .edit [data-component=PlainText] {
  flex-grow: 1;
  width: auto;
  background: #fff;
  border: solid 1px #ccc;
}
[data-component=NestedList] .new .label span.main {
  font-style: italic;
  font-weight: 300;
}

[data-component=ObjectFit] {
  display: flex;
  gap: 0.75em;
}
[data-component=ObjectFit] span {
  border: 0;
  padding: 0.25em 0;
  display: flex;
  flex-direction: column;
  gap: 0.75em;
}
[data-component=ObjectFit] span button {
  display: block;
  width: 42px;
  height: 42px;
  position: relative;
  cursor: pointer;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  border: 2px solid #999;
}
[data-component=ObjectFit] span button.frame-cover {
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' version='1.1' viewBox='0 0 40 40'><path d='M0,0v40h21.8v-.02h-3.67l1.24-19.56c-1.2.27-2.05,2.12-2.39,2.98-.17.43-.55,2.25-.8,2.38-.41.22-.76-.5-1.04-.75,0,0,.22,4.11-.5,4.18-.47.05-.88-1.51-1.1-1.15-.22.36.22,2.22.09,2.65-.05.15-.3.35-.45.36-.53.05-.93-1.06-1.04-1.45-1.03-3.74.75-7.68,3.47-10.22l1.26-1c-.87-.32-3.86,1.74-4.11,1.64-.27-.1.03-.97-.33-1.04-.24.59-1.95,3.57-2.29,3.19-.34-.38-.12-1.99-.12-1.99-.99.64-1.61,4.52-2.08,3.36-1.17-2.13.7-9.43,8.74-8.2-.28-.18-1.97-1.31-1.97-1.31-.23-.36.4-.59.55-.81-.67-.12-3.18.78-3.68.31-.3-.28.56-1.21.56-1.21-.26-.2-4.15,1.05-3.95.55,1.64-4.21,9.98-3.97,11.97,1.86,3.79-8.38,13.06-3.26,11.68-1.9-.43.43-3.49-.87-3.59-.4-.09.37.98.73.61,1.13-.47.5-2.96-.27-3.63-.32.12.22.56.47.38.78-.11.18-1.78.95-2,1.31,10.08-1.05,9.21,8.49,8.38,8.44-.64-.05-.93-3.24-1.79-3.49-.35.03-.03,1.93-.58,1.67-.86-.39-1.46-2.79-1.79-2.77-.33.01-.08.56-.26.76-.43.37-2.55-1.59-4.18-1.57,5.18,2.64,5.98,10.65,3.57,12.73-.82.32-.23-3.44-.51-3.39-.27.07-.52,1.67-1.18,1.5-.54-.13-.07-4.41-.5-4.24-.35.34-.49,1.21-.83.72-.62-.9-.48-3.31-3.05-5.09l.91,19.36h.01v.02s18.19,0,18.19,0V0H0Z'/></svg>");
}
[data-component=ObjectFit] span button.frame-contain {
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' version='1.1' viewBox='0 0 40 40'><path d='M6.67,0v40h26.67V0H6.67ZM28.48,33.36s-5.01-1.96-9.27-1.96c-2.46-.05-4.85.62-6.93,1.92l-.45-.71c1.91-1.2,4.08-1.89,6.31-2.03l.83-13.1c-.8.18-1.36,1.42-1.59,1.99-.11.28-.37,1.49-.53,1.58-.27.15-.5-.34-.69-.5,0,0,.15,2.74-.33,2.79-.32.03-.6-1-.74-.77-.14.23.15,1.47.06,1.76-.03.1-.2.24-.3.24-.35.04-.62-.7-.69-.96-.69-2.49.5-5.12,2.31-6.81l.84-.67c-.58-.22-2.58,1.16-2.74,1.09-.18-.06.02-.64-.22-.69-.17.39-1.3,2.37-1.53,2.12s-.08-1.32-.08-1.32c-.66.43-1.08,3.02-1.39,2.24-.78-1.43.47-6.29,5.83-5.47-.19-.12-1.32-.87-1.32-.87-.15-.24.27-.39.37-.54-.44-.09-2.12.51-2.45.2-.19-.19.38-.81.38-.81-.17-.13-2.76.7-2.63.37,1.09-2.8,6.66-2.65,7.98,1.24,2.53-5.59,8.71-2.18,7.79-1.27-.28.29-2.32-.58-2.39-.27-.06.24.66.48.41.75-.31.34-1.97-.18-2.42-.21.08.14.37.32.25.52-.07.12-1.18.63-1.33.87,6.73-.69,6.15,5.66,5.59,5.63-.42-.03-.62-2.17-1.19-2.33-.22.02,0,1.28-.38,1.11-.57-.27-.97-1.87-1.19-1.85-.22.01-.05.38-.17.51-.29.24-1.7-1.07-2.79-1.05,3.45,1.77,3.99,7.1,2.38,8.49-.54.22-.15-2.29-.34-2.26-.18.04-.34,1.11-.78,1-.35-.09-.04-2.94-.33-2.83-.24.23-.33.81-.56.48-.41-.6-.31-2.21-2.03-3.39l.61,13.01-.05.02h.02c4.01.33,7.99,1.89,8.18,1.96l-.31.78Z'/></svg>");
}
[data-component=ObjectFit] span button.frame-strip {
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' version='1.1' viewBox='0 0 40 40'><path d='M12.14,33.75h18.34V6.25H12.14v27.5ZM18.45,15.34c-.11-.16.18-.27.25-.37-.3-.06-1.45.35-1.68.14-.13-.13.26-.56.26-.56-.12-.09-1.9.48-1.81.25.75-1.93,4.58-1.82,5.49.85,1.74-3.84,5.99-1.5,5.36-.87-.19.2-1.59-.4-1.64-.19-.04.17.45.33.28.52-.21.24-1.35-.12-1.66-.14.05.1.25.22.17.36-.04.08-.81.44-.91.6,4.62-.47,4.22,3.89,3.84,3.87-.29-.02-.43-1.49-.82-1.6-.15.01-.01.88-.26.76-.39-.18-.67-1.28-.82-1.27s-.04.26-.12.35c-.2.17-1.17-.73-1.92-.72,2.38,1.22,2.75,4.88,1.64,5.84-.37.15-.1-1.57-.23-1.55-.13.03-.24.77-.54.69-.24-.07-.03-2.03-.23-1.95-.16.16-.22.56-.38.33-.29-.41-.22-1.52-1.4-2.33l.42,8.94h-.05c2.75.23,5.49,1.3,5.62,1.35l-.21.54s-3.44-1.35-6.37-1.35c-1.69-.03-3.33.43-4.76,1.32l-.31-.49c1.32-.83,2.81-1.3,4.34-1.4l.57-9.01c-.55.13-.93.98-1.09,1.37-.07.2-.25,1.03-.36,1.09-.18.11-.34-.23-.47-.34,0,0,.1,1.89-.23,1.92-.22.02-.41-.69-.51-.53-.1.16.1,1.01.04,1.21-.02.06-.14.16-.21.16-.24.03-.42-.48-.47-.66-.47-1.71.35-3.52,1.59-4.68l.58-.46c-.39-.15-1.77.8-1.88.75-.12-.04.01-.44-.15-.47-.12.27-.9,1.63-1.05,1.46-.15-.17-.05-.91-.05-.91-.46.3-.75,2.08-.96,1.54-.53-.98.32-4.32,4.01-3.76-.13-.08-.91-.6-.91-.6Z'/><path d='M0,15.39c.04.08.08.16.11.25,1.74-3.84,5.99-1.5,5.36-.87-.19.19-1.59-.4-1.64-.19-.04.17.45.33.28.52-.21.24-1.35-.12-1.66-.14.05.1.25.22.17.36-.04.08-.81.44-.91.6,4.62-.47,4.23,3.89,3.84,3.87-.29-.02-.43-1.49-.82-1.6-.15.01-.01.88-.26.76-.39-.18-.67-1.28-.82-1.27-.15.01-.04.26-.12.35-.2.17-1.17-.73-1.92-.72,2.38,1.22,2.75,4.88,1.64,5.84-.37.16-.1-1.57-.23-1.55-.13.03-.24.77-.54.69-.24-.07-.03-2.03-.23-1.95-.16.16-.22.56-.38.33-.29-.41-.22-1.52-1.4-2.33l.42,8.94c2.74.24,5.46,1.3,5.59,1.35l-.21.54s-3.36-1.32-6.27-1.35v5.93h9.62V6.25H0v9.14Z'/><path d='M39.99,13.76v-7.51h-7v27.5h7v-5.77c-1.11.19-2.17.57-3.14,1.18l-.31-.49c1.06-.67,2.23-1.1,3.45-1.29v-6.66c-.18.11-.34-.23-.47-.34,0,0,.1,1.89-.23,1.92-.22.02-.41-.69-.51-.53-.1.16.1,1.01.04,1.21-.02.06-.14.16-.21.16-.24.03-.42-.48-.47-.66-.47-1.71.35-3.52,1.59-4.68l.26-.21v-.23c-.56.15-1.48.77-1.57.73-.12-.04.02-.44-.15-.47-.12.27-.89,1.63-1.05,1.46h0c-.15-.18-.05-.92-.05-.92-.46.3-.75,2.08-.96,1.54-.53-.96.29-4.17,3.78-3.78v-.12c-.27-.18-.68-.45-.68-.45-.11-.16.18-.27.25-.37-.3-.06-1.45.35-1.68.14-.13-.13.23-.52.25-.55-.15-.08-1.89.48-1.8.25.48-1.24,2.23-1.63,3.66-1.05Z'/></svg>");
}
[data-component=ObjectFit] span button:hover {
  border: 2px solid #555;
}
[data-component=ObjectFit] span button::before {
  content: "";
  display: block;
  background-color: #FFF;
  opacity: 0.75;
  position: absolute;
  inset: 0 0 0 0;
}
[data-component=ObjectFit] span button.selected {
  border: 3px solid hsl(182, 58%, 42%);
}
[data-component=ObjectFit] span button.selected::before {
  opacity: 0.3;
}

.pdf-viewer {
  width: 100%;
  height: 100%;
  position: relative;
  align-self: center;
}

.pdf-viewer embed {
  width: 100%;
  height: 100%;
}

.plain-text {
  position: relative;
  display: flex;
  width: 100%;
}
.plain-text input.main-input {
  width: 100%;
  padding: 0 0.5em;
  background: none;
  border: none;
}
.plain-text input.main-input:focus {
  outline: solid 1px hsl(182, 58%, 42%);
  outline-offset: 0px;
}
.plain-text.disabled input.main-input {
  opacity: 0.5;
}
.plain-text .icon-loading {
  position: absolute;
  top: 0;
  right: 0.5em;
  z-index: 9;
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
  color: #999;
}
.plain-text .tools {
  flex: 1;
  white-space: nowrap;
  background-color: rgba(224, 224, 224, 0.9);
  padding: 0 0.25em;
  display: flex;
  align-items: center;
  border-left: 1px solid #c8c9ca;
}
.plain-text .tools .tool {
  font-size: 0.6em;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.profile-select button {
  padding: 0.5em 2em;
  border: dashed 1px #999;
  border-radius: 3px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.profile-select button.selected {
  border: solid 1px #999;
}

.profile-select button:hover {
  background-color: #bbb;
  border-color: #bbb;
  color: #fff !important;
}

.profile-select button.empty {
  color: #999;
  font-style: italic;
}

/* COLOR */
.progress {
  flex: 0 0;
}
.progress .progress-status {
  display: flex;
  justify-content: space-between;
  font-size: 0.8em;
  margin-top: 0.5em;
  align-items: center;
}
.progress .progress-status span {
  font-weight: 700;
}
.progress .progress-status div:first-of-type {
  flex: 1;
}
.progress .progress-status.success::before {
  font-family: "shiro-icon";
  content: "\e818";
  font-size: 3em;
  line-height: 0.5;
  color: hsl(182, 58%, 42%);
  margin-right: 0.25em;
}
.progress .error-count {
  color: #EC4949;
  font-weight: bold;
  margin-right: 1em;
}
.progress .error-count::before {
  font-family: "shiro-icon";
  content: "\e81e";
  line-height: 0.5;
  margin-right: 0.25em;
}
.progress .error-count div:last-of-type {
  color: #EC4949;
}
.progress progress {
  display: block;
  border: 0;
  width: 100%;
  height: 0.5em;
}
.progress progress::-webkit-progress-bar {
  background-color: #e0e0e0;
  border-radius: 3px;
  overflow: hidden;
}
.progress progress::-webkit-progress-value {
  background-color: hsl(182, 58%, 42%);
}
.progress progress::-moz-progress-bar {
  background-color: hsl(182, 58%, 42%);
}

.schema-form {
  width: 100%;
}
.page .schema-form > div > .properties {
  gap: 1.75em;
  margin-bottom: 1.5em;
}
.schema-form > div > .properties {
  display: flex;
  flex-direction: column;
  gap: 1em;
  margin-bottom: 1em;
}
.schema-form .form-object {
  border: none;
}
.schema-form .form-field {
  display: flex;
  gap: 0.25em;
  flex-direction: column;
  width: 100%;
}
.schema-form .form-field label {
  font-weight: 600;
}
.schema-form .form-field label.boolean {
  white-space: nowrap;
}
.schema-form .form-field label button.clipboard {
  margin-left: 1em;
  color: #888;
  font-size: 0.85em;
}
.schema-form .form-field label button.clipboard::after {
  content: "\f0c5";
  font-family: "shiro-icon";
  margin-left: 0.5em;
  opacity: 0;
  transition: opacity 0.5s ease;
}
.schema-form .form-field label button.clipboard:hover::after {
  opacity: 1;
}
.schema-form .form-field.boolean {
  flex-direction: row-reverse;
  justify-content: flex-end;
  gap: 0.75em;
  align-items: center;
}
.schema-form .form-field select,
.schema-form .form-field input[type=number],
.schema-form .form-field input[type=password],
.schema-form .form-field input[type=text] {
  padding: 0.35em 0.75em;
  border-radius: 0.25em;
  border: 1px solid var(--shiro-color-gray5);
  outline: 0;
  width: 100%;
}
.schema-form .form-field textarea {
  min-height: 100px;
}
.schema-form .form-field .dropdown {
  border-radius: 0.25em;
  border: 1px solid var(--shiro-color-gray5);
  overflow: hidden;
}
.schema-form .form-field .schema-array > button:not(:last-child) {
  margin-bottom: 0.5em;
}
.schema-form .form-field .schema-array .total {
  background: #CCC;
  padding: 0px 3px;
  border-radius: 3px;
  color: #FFF;
  display: inline-block;
}
.schema-form .form-field .schema-array .array-item {
  display: flex;
  align-items: center;
}
.schema-form .form-field .schema-array .array-item:not(:last-child) {
  margin-bottom: 0.5em;
}
.schema-form .form-field .schema-array .array-item .array-button {
  opacity: 0;
  transition: all 0.3s ease;
  color: #AAA;
  padding: 0.25em 0.5em;
}
.schema-form .form-field .schema-array .array-item:hover .array-button {
  opacity: 1;
}
.schema-form .form-field .schema-array .array-item .form-field {
  margin-bottom: 0;
}
.schema-form .form-field .schema-array .array-item > .form-field {
  margin-right: 0;
}
.schema-form .form-field .schema-boolean {
  align-self: flex-start;
}
.schema-form .form-field .form-object {
  padding: 1em;
  border: dotted 1px #ccc;
  border-radius: 0.25em;
}
.schema-form .form-field .form-object .properties {
  display: flex;
  gap: 1.1em 1.75em;
  width: 100%;
}
.schema-form .form-field .form-object .properties.line {
  flex-direction: column;
}
.schema-form .form-field .form-object .form-field:last-child {
  margin: 0;
  height: 100%;
}
.schema-form .form-field .form-object .form-object {
  border: none;
  padding: 0;
}
.schema-form .form-field .form-object .additional-property > button:not(:last-child) {
  margin-bottom: 0.5em;
}
.schema-form .form-field .form-object .additional-property .total {
  background: #CCC;
  padding: 0px 3px;
  border-radius: 3px;
  color: #FFF;
  display: inline-block;
}
.schema-form .form-field .form-object .additional-property .additional-property-item {
  display: flex;
  gap: 1em;
  width: 100%;
  height: 100%;
  align-items: stretch;
}
.schema-form .form-field .form-object .additional-property .additional-property-item:not(:first-child) {
  margin-top: 0.5em;
}
.schema-form .form-field .form-object .additional-property .additional-property-item .key {
  width: 40%;
}
.schema-form .form-field .form-object .additional-property .additional-property-item .object {
  width: 60%;
}
.schema-form .dropdown {
  border: solid 1px #666;
}

.textEditor {
  width: 100%;
  padding: 1em 5em 0 5em;
}

.textEditor .card {
  margin: 1.5em 0;
  border: solid 1px #333;
  border-radius: 5px;
  /* pointer-events: none; */
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
  display: grid;
  grid-template-columns: 5em 10fr auto;
  justify-content: start;
  align-items: center;
  gap: 1em;
  overflow: hidden;
  max-width: 500px;
}

.textEditor .card.error {
  border-color: rgb(128, 0, 0);
}

.textEditor .card .image {
  background: #eee;
  position: relative;
  overflow: hidden;
  border-radius: 5px 0 0 5px;
  /* height: -webkit-fill-available; */
  align-self: stretch;
}

.textEditor .card .image img {
  position: absolute;
  inset: 0 0 0 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.textEditor .card .image::before {
  content: "";
  height: 0;
  display: block;
  padding-top: 80%;
  width: 100%;
}

.textEditor .card h3 {
  font-size: 0.9em;
  margin: 10px 0;
}

.textEditor .card.error h3 {
  color: rgb(128, 0, 0);
}

.textEditor .card h4 {
  margin-right: 1.5em;
  font-size: 0.65em;
  letter-spacing: 0.5px;
  font-weight: 600;
  text-align: right;
  text-transform: uppercase;
  color: #2da5a9;
}

.textEditor .card.error h4 {
  color: red;
}

.textEditor .contentSelection {
  padding: 10px;
  border: solid 1px #333;
  border-radius: 5px;
}

.textEditor .quote {
  display: flex;
  justify-content: flex-end;
  width: 100%;
}

.textEditor .quote .blockquote {
  width: 50%;
  padding-left: 15px;
  border-left: solid 8px #CCC;
}

.textEditor .quote .blockquote:focus {
  outline: none !important;
}

.textEditor .image {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  gap: 5px;
  width: 100%;
  padding: 5px;
}

.textEditor .image > img {
  display: block;
  width: auto;
  max-width: 100%;
}

.textEditor .image .image-link {
  width: 100%;
  padding: 5px 5px 5px 30px;
  border-width: 1px;
  border-style: solid;
  border-color: var(--shiro-color-gray7);
  border-radius: 5px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' fill='none' viewBox='0 0 24 24' stroke='%23666666' stroke-linecap='round' stroke-width='2'%3E%3Cpath d='M7.69998 12.6L7.67896 12.62C6.53993 13.7048 6.52012 15.5155 7.63516 16.625V16.625C8.72293 17.7073 10.4799 17.7102 11.5712 16.6314L13.0263 15.193C14.0703 14.1609 14.2141 12.525 13.3662 11.3266L13.22 11.12'%3E%3C/path%3E%3Cpath d='M16.22 11.12L16.3564 10.9805C17.2895 10.0265 17.3478 8.5207 16.4914 7.49733V7.49733C15.5691 6.39509 13.9269 6.25143 12.8271 7.17675L11.3901 8.38588C10.0935 9.47674 9.95706 11.4241 11.0888 12.6852L11.12 12.72'%3E%3C/path%3E%3C/svg%3E");
  background-position: left center;
  background-repeat: no-repeat;
  background-size: contain;
}

.textEditor .image .image-caption {
  width: 100%;
  padding: 5px;
  border-width: 1px;
  border-style: solid;
  border-color: var(--shiro-color-gray7);
  border-radius: 5px;
  text-align: center;
}

.textEditor .contentSelection {
  background: #f0f0f0;
  color: #888;
  border: 0;
}

.textEditor .quote .blockquote {
  width: 85%;
}

/* --- */
.textEditor .card.no-image {
  grid-template-columns: 10fr auto;
}

.textEditor .card.no-image .image {
  display: none;
}

.textEditor .card.no-image h3 {
  padding-left: 1em;
}

/* --- */
.textEditor .card.loading {
  min-height: 5em;
}

/* --- */
.textEditor .ce-block.indent {
  text-indent: 1rem;
}

.textEditor .ce-popover__item[data-item-name=indent] svg {
  scale: 0.7;
}

/* --- */
.textEditor .ce-block {
  --padding-size: calc(1rem * var(--padding, 0));
  padding-left: var(--padding-size);
}

.textEditor .ce-block a {
  color: #000;
  font-weight: 600;
  text-decoration: underline;
  text-decoration-style: dotted;
  text-decoration-color: currentColor;
  transition: all 0.15s ease-out;
}

.textEditor .ce-block a:hover {
  color: #666;
}

.textEditor .ce-popover__item[data-item-name*=padding] svg {
  scale: 0.9;
}

/* HYPERLINK */
button[data-tool=hyperlink] svg {
  scale: 0.8;
}

/* MARKER COLOR LIST */
.textEditor .ce-inline-toolbar .marker-color-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 10px;
  padding: 10px;
}

.textEditor .ce-inline-toolbar .marker-color-list > * {
  flex: 0;
  height: 20px;
  aspect-ratio: 1;
}

.textEditor .ce-inline-toolbar .marker-color-list > button {
  border-width: 1px;
  border-style: solid;
  border-color: black;
  border-radius: 3px;
  background-color: var(--color, transparent);
}

.textEditor .ce-inline-toolbar .marker-color-list > button[value=transparent]::before {
  content: "X";
}

.textEditor .ce-inline-toolbar .marker-color-list > input[type=color] {
  aspect-ratio: 2/1;
  cursor: pointer;
}

/* Placeholder Gallery Styles */
.textEditor .gallery {
  --gallery-gap: 10px;
  --gallery-border-radius: 3px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  gap: var(--gallery-gap);
  width: 100%;
  border-width: 1px;
  border-style: dotted;
  border-color: var(--shiro-color-gray8);
  border-radius: var(--gallery-border-radius);
  padding: var(--gallery-gap);
}

.textEditor .gallery > button {
  border-width: 1px;
  border-style: solid;
  border-color: var(--shiro-color-gray8);
  border-radius: var(--gallery-border-radius);
  padding: 4px 8px;
  transition: all 0.15s ease-out;
}

.textEditor .gallery > button:hover {
  background-color: var(--shiro-color-gray8);
  color: white;
}

.textEditor .gallery .items {
  display: flex;
  gap: 1em;
  width: 100%;
  padding-bottom: 20px;
  overflow-x: auto;
  overflow-y: hidden;
}

.textEditor .gallery .item {
  flex: 0 0 auto;
  position: relative;
  width: 150px;
  aspect-ratio: 3/4;
  border-width: 1px;
  border-style: solid;
  border-color: var(--shiro-color-gray9);
  border-radius: var(--gallery-border-radius);
  background: var(--shiro-color-gray1);
}

.textEditor .gallery .item.error {
  border-color: red;
}

.textEditor .gallery .item.error button.remove {
  color: red;
}

.textEditor .gallery .item.drag {
  position: absolute;
}

.textEditor .gallery .item .remove {
  position: absolute;
  top: 5px;
  right: 5px;
  width: 20px;
  aspect-ratio: 1;
  border-radius: 50%;
  background: white;
}

.textEditor .gallery .item .data {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  width: 100%;
  height: 100%;
}

.textEditor .gallery .item .data .loading {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.textEditor .gallery .item .data .error {
  display: flex;
  flex-direction: column;
  color: red;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.textEditor .gallery .item .data .error .item-id {
  margin-top: 1em;
  color: #AAA;
}

.textEditor .gallery .item .image {
  position: relative;
  width: 100%;
  aspect-ratio: 4/3;
  padding: 0;
  margin: 0;
  background: gray;
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}

.textEditor .gallery .item .image img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.textEditor .gallery .item .label {
  display: -webkit-box;
  display: -moz-box;
  display: box;
  -webkit-box-orient: vertical;
  box-orient: vertical;
  -webkit-line-clamp: 3;
  -moz-line-clamp: 3;
  line-clamp: 3;
  width: calc(100% - 2 * var(--gallery-gap));
  margin: var(--gallery-gap);
  word-break: break-all;
  text-overflow: ellipsis;
  overflow: hidden;
}

.textEditor img.inline {
  display: inline-block;
  max-width: 100%;
}

.textEditor .codex-editor .ce-block .ce-block__content h1.ce-header, .textEditor .codex-editor .ce-block .ce-block__content h2.ce-header, .textEditor .codex-editor .ce-block .ce-block__content h3.ce-header, .textEditor .codex-editor .ce-block .ce-block__content h4.ce-header, .textEditor .codex-editor .ce-block .ce-block__content h5.ce-header, .textEditor .codex-editor .ce-block .ce-block__content h6.ce-header {
  display: block;
  margin: 5px 0 !important;
  padding: 0 !important;
  height: auto !important;
  min-height: auto !important;
  line-height: auto !important;
  color: #000 !important;
  font-weight: bold !important;
  text-transform: none !important;
}
.textEditor .codex-editor .ce-block .ce-block__content h1.ce-header {
  font-size: 2em !important;
}
.textEditor .codex-editor .ce-block .ce-block__content h2.ce-header {
  color: #222 !important;
  font-size: 1.75em !important;
}
.textEditor .codex-editor .ce-block .ce-block__content h3.ce-header {
  color: #444 !important;
  font-size: 1.5em !important;
}
.textEditor .codex-editor .ce-block .ce-block__content h4.ce-header {
  color: #666 !important;
  font-size: 1.25em !important;
}
.textEditor .codex-editor .ce-block .ce-block__content h5.ce-header {
  color: #888 !important;
  font-size: 1em !important;
}
.textEditor .codex-editor .ce-block .ce-block__content h6.ce-header {
  color: #AAA !important;
  font-size: 0.75em !important;
}

.textEditor .codex-editor__redactor {
  padding-bottom: 5em !important;
}

/* --- */
.shiro-form-field .shiro-form-value.pop-tools {
  overflow: inherit !important;
}

/* --- */
[popover] {
  position: static;
}

xy-color-picker {
  position: static;
  width: unset;
}

[data-component=ToolbarMenu] .popup-box ul li.custom {
  background: #f4f4f4;
}

.video-player {
  display: flex;
  flex-direction: column;
  width: 100%;
  height: 100%;
}

.video-player video {
  width: 100%;
  height: 100%;
  background: #222;
}

/* DOCUMENT LEVEL */
:root {
  --shiro-color-theme: hsl(182, 58%, 42%);
  --shiro-color-gray1: #ffffff;
  --shiro-color-gray2: #f3f3f3;
  --shiro-color-gray3: #e0e0e0;
  --shiro-color-gray4: #c8c9ca;
  --shiro-color-gray5: #a8a8a8;
  --shiro-color-gray6: #888888;
  --shiro-color-gray7: #666666;
  --shiro-color-gray8: #4B4F55;
  --shiro-color-gray9: #333333;
  --shiro-color-gray10: #111111;
  --shiro-color-gray11: #0c0c0c;
  --shiro-color-gray12: #000000;
  --card-radius: .35em;
}

/* VARS */
/* COLOR */
/* ???? */
/*  ICONES  */
.icon-public::before {
  content: "\e83b";
}

.icon-unlisted::before {
  content: "\e810";
}

.icon-restricted::before {
  content: "\e806";
}

.icon-private::before {
  content: "\f061";
}

.icon-associated::before {
  content: "\e849";
}

.icon-pending::before {
  content: "\e848";
}

.icon-blocked::before {
  content: "\e819";
}

.icon-deleted::before {
  content: "\e82c";
}

.icon-tag::before {
  content: "\e05d";
}

.icon-edit:before {
  content: "\e84a";
}

/* LOADING SPINNER */
@keyframes spin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
.icon-loading:before {
  content: "\e84c";
  animation-name: spin;
  animation-duration: 3000ms;
  animation-iteration-count: infinite;
  animation-timing-function: linear;
}

/*  GENERAL  */
* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

html,
body {
  min-width: 320px;
  width: 100%;
  max-width: 100%;
  min-height: 100%;
  overflow-x: hidden;
  font-family: "Titillium Web", sans-serif;
  color: #333333;
}

body {
  overflow-x: hidden;
  overflow-y: auto;
}

a {
  color: initial;
}

select {
  border: 0;
  outline: 0;
}

a,
button {
  background: inherit;
  border: 0;
  outline: 0;
  cursor: pointer;
  transition: all 0.3s ease;
}
a.shiro-btn-function,
button.shiro-btn-function {
  font-size: 0.95em;
  font-weight: 600;
  font-family: inherit;
  font-family: inherit;
  color: #a8a8a8;
  border: 1px solid #a8a8a8;
  padding: 0.4em 1.5em 0.5em 1.5em;
  border-radius: 2em;
  margin-right: 0.5em;
  transition: all 0.5s ease;
}
a.shiro-btn-function:hover,
button.shiro-btn-function:hover {
  color: #ffffff;
  border-color: #a8a8a8;
  background-color: #a8a8a8;
}
a.shiro-btn-zoom,
button.shiro-btn-zoom {
  position: absolute;
  bottom: 0;
  right: 0;
  padding: 0.5em;
  font-weight: normal;
  z-index: 3;
  background-color: transparent;
  color: #ffffff;
  text-shadow: 0px 0px 8px rgba(0, 0, 0, 0.75);
  opacity: 0;
}
a.shiro-btn-zoom:hover,
button.shiro-btn-zoom:hover {
  opacity: 1 !important;
}
a.shiro-btn-modal,
button.shiro-btn-modal {
  border-radius: 3px;
  background-color: hsl(182, 58%, 42%);
  color: #ffffff;
  padding: 0.5em 1em;
  margin: 0 0.75em 1em 0;
  font-size: 1em;
  font-weight: 600;
  text-transform: uppercase;
  text-rendering: optimizeLegibility;
  text-decoration: none;
  min-width: 8em;
  transition: background-color 0.3s ease;
}
a.shiro-btn-modal span,
button.shiro-btn-modal span {
  font-weight: 400;
}
a.shiro-btn-modal:disabled,
button.shiro-btn-modal:disabled {
  background-color: #e0e0e0;
  cursor: initial;
}
a.shiro-btn-modal:hover,
button.shiro-btn-modal:hover {
  background-color: hsl(182, 58%, 35%);
}
a.shiro-btn-modal.red,
button.shiro-btn-modal.red {
  background-color: #EC4949;
}
a.shiro-btn-modal.red:hover,
button.shiro-btn-modal.red:hover {
  background-color: #bb2424;
}
a.shiro-btn-modal.grey,
button.shiro-btn-modal.grey {
  background-color: #e0e0e0;
  color: #a8a8a8;
}
a.shiro-btn-modal.grey:hover,
button.shiro-btn-modal.grey:hover {
  background-color: #c8c9ca;
  color: #666666;
}

button.shiro-btn, a.shiro-btn {
  padding: 0.3em 1.1em 0.3em 0.8em;
  font-size: 0.85em;
  font-size: 0.85em;
  font-weight: 700;
  font-family: inherit;
  font-family: inherit;
  letter-spacing: 0.5px;
  border-radius: 2em;
  text-decoration: none;
  white-space: nowrap;
  display: inline-flex;
  align-items: center;
  max-width: 100%;
  gap: 0.5em;
  transition: all 0.3s ease;
}
button.shiro-btn .value, a.shiro-btn .value {
  overflow: hidden;
  text-overflow: ellipsis;
}
button.shiro-btn.simple, a.shiro-btn.simple {
  background-color: transparent;
  color: #c8c9ca !important;
}
button.shiro-btn.simple:hover, a.shiro-btn.simple:hover {
  background-color: transparent;
  color: #000000 !important;
}
button.shiro-btn.theme-color, a.shiro-btn.theme-color {
  color: #ffffff;
  border: 1px solid hsl(182, 58%, 42%);
  background-color: hsl(182, 58%, 42%);
}
button.shiro-btn.theme-color.active, button.shiro-btn.theme-color:hover, a.shiro-btn.theme-color.active, a.shiro-btn.theme-color:hover {
  color: #ffffff;
  border-color: hsl(182, 58%, 42%);
  background-color: hsl(182, 58%, 35%);
}
button.shiro-btn.outline, a.shiro-btn.outline {
  color: hsl(182, 58%, 42%);
  border: 1px solid hsl(182, 58%, 42%);
  background-color: transparent;
}
button.shiro-btn.outline.active, button.shiro-btn.outline:hover, a.shiro-btn.outline.active, a.shiro-btn.outline:hover {
  color: #ffffff;
  border-color: hsl(182, 58%, 42%);
  background-color: hsl(182, 58%, 42%);
}
button.shiro-btn.outline-gray, a.shiro-btn.outline-gray {
  color: #666666;
  border: 1px solid #666666;
  background-color: transparent;
}
button.shiro-btn.outline-gray:hover, a.shiro-btn.outline-gray:hover {
  color: #000000;
  border-color: #000000;
  background-color: transparent;
}
button.shiro-btn.outline-gray.active, a.shiro-btn.outline-gray.active {
  color: #ffffff;
  border-color: #4B4F55;
  background-color: #4B4F55;
}
button.shiro-btn.outline-gray:disabled, a.shiro-btn.outline-gray:disabled {
  cursor: initial;
  color: #c8c9ca;
  border-color: #c8c9ca;
  background-color: transparent;
}
button.shiro-btn.shade, a.shiro-btn.shade {
  color: hsl(182, 58%, 42%);
  background-color: #e0e0e0;
}
button.shiro-btn.shade.active, button.shiro-btn.shade:hover, a.shiro-btn.shade.active, a.shiro-btn.shade:hover {
  color: #ffffff;
  border-color: hsl(182, 58%, 42%);
  background-color: hsl(182, 58%, 42%);
}
button.shiro-btn.big, a.shiro-btn.big {
  font-size: 1.1em;
}
button.shiro-btn.small, a.shiro-btn.small {
  font-size: 0.6em;
  text-transform: uppercase;
  vertical-align: bottom;
}
button.shiro-btn.medium, a.shiro-btn.medium {
  font-size: 0.75em;
  padding: 0.4em 1em;
}
button.shiro-btn.compact, a.shiro-btn.compact {
  padding: 0.2em 0.4em;
  margin: 0 0.25em;
}
button.shiro-btn.no-margin, a.shiro-btn.no-margin {
  padding: 0.2em 0.6em;
  margin: 0;
}
button.shiro-btn.strong, a.shiro-btn.strong {
  font-size: 0.85em;
  font-weight: 800;
  padding: 0.2em 0.1em 0.1em 0.1em;
}
button.shiro-btn.close::after, a.shiro-btn.close::after {
  content: "\e821";
  font-family: "shiro-icon";
  font-style: normal;
  font-weight: normal;
  margin: 0 -0.25em 0 0.5em;
  color: #c8c9ca;
  font-size: 1.25em;
  line-height: 0.5em;
}
button.shiro-btn.close:hover::after, a.shiro-btn.close:hover::after {
  color: #333333;
}
button.shiro-btn.checked::after, a.shiro-btn.checked::after {
  content: "\e808";
  font-family: "shiro-icon";
  font-style: normal;
  font-weight: normal;
  margin: 0 -0.25em 0 0.5em;
  color: hsl(182, 58%, 42%);
  font-size: 1.25em;
  line-height: 0.5em;
}
button.shiro-btn.active, button.shiro-btn:hover, a.shiro-btn.active, a.shiro-btn:hover {
  color: #ffffff;
  border-color: hsl(182, 58%, 42%);
  background-color: hsl(182, 58%, 42%);
}
button.shiro-btn > span:first-child, a.shiro-btn > span:first-child {
  margin-left: 0.35em;
}

input,
select {
  font-family: inherit;
}

::-webkit-scrollbar {
  width: 11px;
}

::-webkit-scrollbar-track {
  box-shadow: inset 0 0 10px 10px transparent;
  border: solid 4px transparent;
}

::-webkit-scrollbar-thumb {
  box-shadow: inset 0 0 10px 10px #c8c9ca;
  border: solid 4px transparent;
}

@media all and (max-width: 768px) {
  .hide-mobile {
    display: none;
  }
}
.stage {
  background-color: #ffffff;
  box-shadow: rgba(0, 0, 0, 0.3) 0px 3px 7px -3px;
  padding: 1em 1.5em 2em 1.5em;
  max-width: 1400px;
  margin-bottom: 2em;
}

.stage {
  background-color: #ffffff;
  box-shadow: rgba(0, 0, 0, 0.3) 0px 3px 7px -3px;
  padding: 1em 1.5em 2em 1.5em;
  max-width: 1400px;
  margin-bottom: 2em;
}

.highlight-counter {
  white-space: nowrap;
  display: inline-block;
  color: #888888;
}
.highlight-counter .total {
  font-weight: 700;
}
.highlight-counter .item {
  text-transform: uppercase;
  font-size: 0.85em;
}

.SchemaItem .shiro-form-field .plain-text {
  border-radius: 4px;
  border: 1px solid #c8c9ca;
}
.SchemaItem .shiro-form-field .plain-text input {
  padding: 0.25em 0.5em;
}

/* MODAL */
.shiro-modal {
  position: fixed;
  inset: 0 0 0 0;
  display: flex;
  justify-content: center;
  align-items: start;
  background-color: rgba(243, 243, 243, 0.85);
  z-index: 999999;
  transition: all 0.4s ease-in-out;
  overflow-y: auto;
}
.shiro-modal .shiro-modal-background {
  position: absolute;
  inset: 0 0 0 0;
}
.shiro-modal .image-preview {
  max-width: 90%;
  max-height: 90%;
  align-self: center;
}

.dialog {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 2em 2.5em;
  width: 90%;
  max-width: 800px;
  min-height: 20vh;
  max-height: 80vh;
  margin-top: 10vh;
  background-color: #ffffff;
  gap: 2em;
  box-shadow: rgba(0, 0, 0, 0.2) 0px 14px 28px, rgba(0, 0, 0, 0.12) 0px 10px 10px;
  -webkit-animation-name: fadein;
  -webkit-animation-duration: 0.4s;
  animation-name: fadein;
  animation-duration: 0.4s;
}
.dialog.login {
  width: 80%;
  max-width: 36em;
}
.dialog.login #auth {
  min-height: auto;
  padding-bottom: 2em;
}
.dialog.login header {
  margin-left: 3em;
}
.dialog header {
  position: relative;
  flex: 0 0;
  margin-left: 4em;
  margin-bottom: 0.5em;
}
.dialog header .icon {
  position: absolute;
  top: 50%;
  left: 0;
  transform: translate(-125%, -50%);
}
.dialog header .icon::before {
  font-size: 3.5em;
  font-family: "shiro-icon";
  font-style: normal;
}
.dialog header.error {
  color: #EC4949;
}
.dialog header.error .icon::before {
  content: "\e819";
}
.dialog header.warning {
  color: #f1c54a;
}
.dialog header.warning .icon::before {
  content: "\e81e";
}
.dialog header.progress .icon::before {
  content: "\e823";
}
.dialog header.login .icon::before {
  content: "\e806";
}
.dialog header.success {
  color: hsl(182, 58%, 42%);
}
.dialog header.success .icon::before {
  content: "\e818";
}
.dialog header.notice {
  color: #c8c9ca;
}
.dialog header.notice .icon::before {
  content: "\e81b";
}
.dialog header.prompt {
  color: #c8c9ca;
}
.dialog header.prompt .icon::before {
  content: "\e852";
}
.dialog header.update {
  color: #c8c9ca;
}
.dialog header.update .icon::before {
  content: "\e831";
}
.dialog header.search {
  color: hsl(182, 58%, 42%);
}
.dialog header.search .icon::before {
  content: "\e83e";
}
.dialog header h1 {
  font-size: 1em;
  text-transform: uppercase;
  margin-bottom: 0;
}
.dialog header h2 {
  color: #666666;
  font-weight: normal;
  font-size: 1.4em;
  margin-top: 0.1em;
}
.dialog .encapsulation {
  display: flex;
  justify-content: flex-start;
  gap: 1em;
  align-items: center;
}
.dialog .encapsulation label {
  color: #4B4F55;
  font-size: 0.75em;
  font-weight: bold;
  text-transform: uppercase;
}
.dialog .encapsulation .dropdown {
  border: solid 1px black;
  width: 25%;
}
.dialog .encapsulation .dropdown button .label {
  font-size: 0.75em;
}
.dialog.search {
  width: 90%;
  max-width: 1024px;
  min-height: 50vh;
  max-height: 80vh;
  gap: 1.5em;
}
.dialog.search header {
  color: hsl(182, 58%, 42%);
  font-size: 0.75em;
  display: flex;
  flex-flow: row wrap;
  justify-content: space-between;
  align-items: flex-end;
  gap: 2em;
  margin-left: 4em;
}
.dialog.search header .icon::before {
  font-size: 2.8em;
  content: "\e80d";
}
.dialog.search header div:last-child {
  font-size: 1.25em;
}
.dialog.search header div:last-child button {
  margin: 0.25em;
}
.dialog.search .upload-progress {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  flex-direction: column;
}
.dialog.search .upload-progress > div {
  width: 100%;
}
.dialog.search .url-form--label {
  font-size: 0.95em;
}
.dialog.search .url-form--label.error .dropdown .placeholder span {
  color: red;
  font-weight: bold;
}
.dialog.search .url-form--label.error .dropdown .dropdown-card .label {
  color: red;
  font-weight: bold;
}
.dialog.search .url-form--fields {
  display: flex;
  flex-direction: column;
  gap: 0.25em;
}
.dialog.search .url-form--field {
  display: flex;
  width: 100%;
  gap: 0.75em;
  align-items: flex-start;
}
.dialog.search .url-form--field input[type=text] {
  font-weight: 700;
  padding: 0.2em 0.5em;
  width: 100%;
  flex: 1;
  border-radius: 5px;
  border: 1px solid transparent;
}
.dialog.search .url-form--field input[type=text]:focus {
  border: 1px solid #c8c9ca;
}
.dialog.search .url-form--field input[type=text]:disabled {
  color: #c8c9ca;
}
.dialog.search .url-form--field input[type=checkbox] {
  margin-top: 0.5em;
}
.dialog.search .url-form--field img {
  max-height: 7.5em;
  background-color: #888888;
}
.dialog.search .url-form--field img.disabled {
  opacity: 0.35;
}
.dialog.search .search-form {
  flex: 0 0;
  position: relative;
  margin-bottom: 2em;
}
.dialog.search .search-form.loading {
  opacity: 0.35;
}
.dialog.search .search-form .search-input {
  display: flex;
  z-index: 3;
  gap: 1em;
  position: absolute;
  width: 100%;
}
.dialog.search .search-form .search-input input {
  width: 100%;
  border-radius: 5px;
  border: 1px solid #4B4F55;
  background-color: #ffffff;
  color: #000000;
  padding: 0.2em 0.5em;
  z-index: 1;
  font-weight: 600;
}
.dialog.search .search-form .search-input button {
  margin: 0.5em;
  z-index: 1;
}
.dialog.search .search-form .search-input .loading {
  transform: scale(0.5);
  right: 3em;
  top: -2px;
  z-index: 2;
  position: absolute;
  transform-origin: top right;
}
.dialog.search .search-form .search-input .loading div {
  background: #a8a8a8 !important;
}
.dialog.search .search-form .search-fields {
  display: none;
  background-color: #e0e0e0;
  top: -0.75em;
  left: -0.75em;
  right: 0;
  position: absolute;
  border-radius: 3px;
  z-index: 2;
}
.dialog.search .search-form .search-fields--stage {
  max-height: 75vh;
  overflow-x: hidden;
  overflow-y: auto;
  margin: 4em 0 1em 1.5em;
  padding: 0.25em 0;
  overflow-y: auto;
  max-height: 45vh;
}
.dialog.search .search-form .search-fields--item {
  display: grid;
  grid-template-columns: minmax(120px, 1fr) 5fr;
  padding: 1em 1em 1em 0;
  margin-right: 1em;
  gap: 1em;
}
.dialog.search .search-form .search-fields--item:not(:last-child) {
  border-bottom: 1px solid #c8c9ca;
}
.dialog.search .search-form .search-fields--label {
  text-transform: uppercase;
  font-size: 0.75em;
  line-height: 1.8;
  font-weight: 700;
}
.dialog.search .search-form .search-fields--label select {
  font-size: 1.1em;
  background-color: #f3f3f3;
  border-radius: 4px;
  font-weight: 700;
  width: 100%;
}
.dialog.search .search-form .search-fields--label select optgroup {
  font-weight: 400;
  color: hsl(182, 58%, 42%);
}
.dialog.search .search-form .search-fields--label select option {
  font-weight: 600;
  color: #4B4F55;
}
.dialog.search .search-form .search-fields--field {
  width: 100%;
  display: flex;
  gap: 0.75em;
  justify-content: space-between;
  align-items: center;
}
.dialog.search .search-form .search-fields--field .type-btn {
  margin: 0 0.5em 0.5em 0;
}
.dialog.search .search-form .search-fields--field .field {
  border: 1px solid #a8a8a8;
  border-radius: 5px;
  min-height: 1.6em;
  flex: 1;
  display: flex;
  gap: 0.5em;
  justify-content: space-between;
  align-items: center;
}
.dialog.search .search-form .search-fields--field .field > * {
  padding: 0.25em 0.75em;
}
.dialog.search .search-form .search-fields--field .field .value {
  width: 100%;
}
.dialog.search .search-form .search-fields--field .field .value.date {
  flex: 1;
}
.dialog.search .search-form .search-fields--field .field .value.date input {
  background-color: transparent;
  border: 0;
  outline: 0;
  width: 4em;
  font-weight: 600;
}
.dialog.search .search-form .search-fields--field .field .value.date input::-moz-placeholder {
  color: #a8a8a8;
}
.dialog.search .search-form .search-fields--field .field .value.date input::placeholder {
  color: #a8a8a8;
}
.dialog.search .search-form .search-fields--field .field .value.date input:-ms-input-placeholder {
  color: #a8a8a8;
}
.dialog.search .search-form .search-fields--field .field select:not(.value),
.dialog.search .search-form .search-fields--field .field .separator {
  font-size: 0.8em;
  color: #333333;
  padding: 0.25em 0.75em 0.25em 0.75em;
  background-color: transparent;
  font-size: 0.8em;
  display: block;
}
.dialog.search .search-form .search-fields--field .field input.value,
.dialog.search .search-form .search-fields--field .field select.value {
  border: 0;
  background-color: transparent;
  font-family: inherit;
  font-weight: 600;
  outline: 0;
}
.dialog.search .search-form .search-fields--field .tools {
  flex: 0;
}
.dialog.search .search-form .search-fields--field .tools button {
  color: #888888;
}
.dialog.search .search-form .search-fields--field .tools button:hover {
  color: #111111;
}
.dialog.search .search-result {
  transition: opacity 0.3s ease;
  position: relative;
}
.dialog.search .search-result > *:not(:first-child) {
  padding-top: 0;
}
.dialog.search .search-result .search-empty {
  position: absolute;
  inset: 0 0 10% 0;
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: 700;
  font-size: 2.5em;
  color: #e0e0e0;
  line-height: 1;
}
.dialog.search .search-result .search-loading {
  position: absolute;
  inset: 0 0 10% 0;
  display: flex;
  justify-content: center;
  align-items: center;
}
.dialog.search .search-result .search-loading .loading div {
  background: hsl(182, 58%, 42%) !important;
}
.dialog.search .search-result--filters {
  display: flex;
  flex-direction: column;
  gap: 0.5em;
}
.dialog.search .search-result--item {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.3em 0.6em 0.3em 0.4em !important;
  border-bottom: 1px solid #e0e0e0;
  text-decoration: none;
  gap: 1em;
  transition: background 0.3s ease;
}
.dialog.search .search-result--item.selected, .dialog.search .search-result--item:hover {
  background: #f3f3f3;
}
.dialog.search .search-result--item.new {
  background-color: hsl(182, 58%, 42%);
}
.dialog.search .search-result--item.new .search-result--thumb {
  background-color: transparent;
}
.dialog.search .search-result--item.new .search-result--name,
.dialog.search .search-result--item.new .search-result--type {
  color: #ffffff !important;
}
.dialog.search .search-result--item.new.selected, .dialog.search .search-result--item.new:hover {
  background-color: hsl(182, 58%, 35%);
}
.dialog.search .search-result--thumb {
  display: block;
  width: 2.5em;
  background-color: #e0e0e0;
  position: relative;
}
.dialog.search .search-result--thumb::before {
  content: "";
  display: block;
  padding-top: 80%;
  width: 100%;
}
.dialog.search .search-result--thumb img {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform 0.2s linear;
}
.dialog.search .search-result--name {
  flex: 1 1;
  text-align: left;
  color: #111111;
  font-weight: 600;
}
.dialog.search .search-result--name .description {
  margin-left: 1em;
  color: #c8c9ca;
  font-size: 0.75em;
}
.dialog.search .search-result--type {
  color: hsl(182, 58%, 42%);
  text-transform: uppercase;
  font-size: 0.7em;
  font-weight: 600;
}
.dialog.search .search-result--status {
  color: #a8a8a8;
  font-size: 0.9em;
}
.dialog.search .search-result--filter {
  display: flex;
  align-items: center;
  gap: 0.25em;
  width: 100%;
  flex-wrap: wrap;
}
.dialog.search .search-result--filter .label {
  font-size: 0.7em;
  font-weight: 600;
  text-transform: uppercase;
  margin-right: 1em;
}
.dialog.search.filters .search-result {
  opacity: 0.1;
}
.dialog.search.filters .search-fields {
  display: block;
}
.dialog section {
  flex: 1 1;
  overflow-y: auto;
  padding: 0.25em 0.5em 0.25em 0;
  position: relative;
}
.dialog section > *:not(:first-child) {
  padding-top: 1.5em;
}
.dialog .action {
  flex: 0 0;
}
.dialog .action h4 {
  margin-bottom: 0.75em;
}
.dialog details {
  flex: 0 0;
  color: #888888;
  border-top: 1px solid #c8c9ca;
  padding-top: 0.5em;
}
.dialog details .code {
  max-height: 10em;
  margin-top: 1em;
  color: #4B4F55;
  background-color: rgba(224, 224, 224, 0.9);
  font-family: monospace;
  overflow: auto;
  font-size: 1em;
  line-height: 1.3;
  padding: 1.2em;
  white-space: break-spaces;
}
.dialog details summary {
  width: -moz-fit-content;
  width: fit-content;
  text-transform: uppercase;
  font-size: 0.8em;
  font-weight: 600;
}
.dialog details summary::before {
  right: -1.5em;
}

.shiro-modal-close-btn {
  position: absolute;
  top: 0;
  right: 0;
  padding: 1rem;
  color: lightgray;
  font-size: 1.5rem;
  line-height: 0.5rem;
  font-weight: bold;
}

.shiro-modal-close-btn:hover {
  color: darkgray;
  cursor: pointer;
}
@keyframes fadein {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@media all and (min-width: 1024px) {
  .dialog {
    padding: 2em 2em 1.5em 8em;
  }
  .dialog header {
    margin-left: 0;
  }
  .dialog.search {
    padding: 2em 3em 2em 6em;
  }
  .dialog.search header {
    margin-left: 4em;
  }
  .dialog.login {
    padding: 2em 6em 1.5em 6em;
  }
  .dialog.login header {
    margin-left: 0;
  }
}
/* LOADING */
.loading-iddle-animated {
  display: inline-block;
  position: relative;
  width: 80px;
  height: 80px;
}
.loading-iddle-animated div {
  position: absolute;
  top: 33px;
  width: 13px;
  height: 13px;
  border-radius: 50%;
  background: #f3f3f3;
  animation-timing-function: cubic-bezier(0, 1, 1, 0);
}
.loading-iddle-animated div:nth-child(1) {
  left: 8px;
  animation: ld-1 0.6s infinite;
}
.loading-iddle-animated div:nth-child(2) {
  left: 8px;
  animation: ld-2 0.6s infinite;
}
.loading-iddle-animated div:nth-child(3) {
  left: 32px;
  animation: ld-2 0.6s infinite;
}
.loading-iddle-animated div:nth-child(4) {
  left: 56px;
  animation: ld-3 0.6s infinite;
}

@keyframes ld-1 {
  0% {
    transform: scale(0);
  }
  100% {
    transform: scale(1);
  }
}
@keyframes ld-2 {
  0% {
    transform: translate(0, 0);
  }
  100% {
    transform: translate(24px, 0);
  }
}
@keyframes ld-3 {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(0);
  }
}
/*  DETAILS SUMMARY  */
fieldset > details > summary {
  list-style: none;
  position: relative;
  cursor: pointer;
  outline: 0;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  z-index: 10;
  background-color: #ffffff;
  padding: 0.75em 0.5em;
  margin: -0.75em -0.5em;
}
.content-item fieldset > details > summary {
  z-index: 0;
}
fieldset > details > summary::marker, fieldset > details > summary::-webkit-details-marker {
  display: none;
}
fieldset > details > summary::before {
  content: "\e800";
  width: 25px;
  height: 25px;
  font-family: "shiro-icon";
  font-style: normal;
  font-weight: normal;
  font-size: 1.2em;
  line-height: 1.5em;
  text-align: center;
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  color: #888888;
  transition: color 0.3s ease;
}
fieldset > details > summary .total {
  margin-left: 0.5em;
  padding: 0em 0.2em;
  border-radius: 2px;
  background: hsl(182, 58%, 42%);
  background: #a8a8a8;
  color: #f3f3f3;
  display: inline-block;
}

.content-item fieldset.metadata {
  background: #e0e0e0;
}
.content-item fieldset.metadata > details > summary {
  background-color: transparent;
}
.content-item fieldset.metadata .metadata-grid {
  grid-template-columns: minmax(200px, 1fr) 4fr;
}
.content-item fieldset.metadata .shiro-form-property:not(:first-child) {
  margin-top: 0.5em;
  border-top: 1px dotted #aaaaaa;
  padding-top: 0.5em;
}
.content-item fieldset.metadata .shiro-form-label {
  font-weight: 700;
}
.content-item fieldset.metadata .shiro-form-property .shiro-form-fields .shiro-form-field:not(:first-child) {
  margin-top: 0.25em;
}
.content-item fieldset.metadata .shiro-form-property .shiro-form-label {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

details > summary::marker,
details > summary::-webkit-details-marker {
  display: none;
}

details > summary::before {
  content: "\e800";
  width: 25px;
  height: 25px;
  font-family: "shiro-icon";
  font-style: normal;
  font-weight: normal;
  font-size: 1.2em;
  line-height: 1.5em;
  text-align: center;
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  color: #888888;
  transition: color 0.3s ease;
}

details[open] > summary::before, fieldset > details[open] > summary::before {
  content: "\e803";
}

/* POPUP BOX */
.shiro-btn-wrap {
  position: relative;
}

.popup-box {
  position: absolute;
  display: none;
  background-color: #ffffff;
  box-shadow: rgba(0, 0, 0, 0.3) 0px 3px 7px -3px;
  z-index: 99;
}
.popup-box ul {
  margin: 0 0.75em;
  list-style: none;
}
.popup-box ul li button {
  padding: 0.5em 0.25em;
  display: flex;
  align-items: center;
  width: 100%;
  opacity: 0.7;
  transition: opacity 0.3s ease;
}
.popup-box ul li button:hover {
  opacity: 1;
}
.popup-box ul li button span {
  white-space: nowrap;
  font-size: 0.9em;
  font-weight: 600;
}
.popup-box ul li button span:not(:first-child) {
  margin-left: 0.75em;
}
.popup-box ul li:not(:last-child) {
  border-bottom: 1px solid #e0e0e0;
}
.popup-box.top-right {
  top: -0.2em;
  right: -0.5em;
}
.popup-box.bottom-right {
  bottom: 0.2em;
  right: -0.5em;
}
.popup-box.list-right button {
  justify-content: end;
}
.popup-box.expanded {
  display: block;
}

/* SHIRO NAV TOGGLE */
.nav-toggle {
  cursor: pointer;
  font-size: 1.5em;
}
.nav-toggle span {
  font-size: 0.8em;
  margin-left: 0.2em;
}

/* SHIRO FRAMESET */
.shiro-frame {
  display: flex;
  flex-flow: column;
  position: fixed;
  inset: 0 0 0 0;
}
.shiro-frame--topbar {
  display: flex;
  justify-content: space-between;
  flex: 0 0;
  gap: 1em;
}
.shiro-frame--sidenav {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  overflow-x: hidden;
  overflow-y: auto;
  transform: translateX(-100%);
  transition: all 0.3s ease;
  background-color: #ffffff;
  color: #4B4F55;
  z-index: 20;
  padding: 1.5em 0.75rem 2em 1rem;
}
.shiro-frame--sidenav::-webkit-scrollbar-thumb {
  box-shadow: inset 0 0 10px 10px #e0e0e0;
}
body.fixed-menu .shiro-frame--sidenav {
  width: 13.5em;
  transform: translateX(0);
  width: 100vw;
}
.shiro-frame--stage {
  flex: 1 0;
  position: relative;
}
.shiro-frame--main {
  position: absolute;
  inset: 0 0 0 0;
  height: 100%;
  overflow-x: hidden;
  overflow-y: auto;
  background-color: #f3f3f3;
}
.shiro-frame--main > * {
  font-size: 0.9em;
}

@media all and (min-width: 768px) {
  .shiro-frame--sidenav {
    width: 3.5em;
    transform: translateX(0);
  }
  .shiro-frame--sidenav:hover {
    transition-delay: 0.25s;
    width: 13.5em;
  }
  body.fixed-menu .shiro-frame--sidenav {
    width: 13.5em;
  }
  body:not(.fixed-menu) .shiro-frame--sidenav:hover {
    box-shadow: rgba(0, 0, 0, 0.2) 0px 19px 38px, rgba(0, 0, 0, 0.15) 0px 12px 12px;
  }
  .shiro-frame--main {
    padding-left: 3.5em;
    transition: padding 0.3s ease;
  }
  body.fixed-menu .shiro-frame--main {
    padding-left: 13.5em;
  }
}
/* SHIRO TOP NAV */
.shiro-frame--topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-color: #ffffff;
  padding: 0.5em 4% 0.5em 1em;
  border-bottom: 1px solid #e0e0e0;
}
.shiro-frame--topbar .shiro-logo {
  display: flex;
  align-items: center;
}
.shiro-frame--topbar .shiro-logo button {
  font-size: 1.25em;
  color: #c8c9ca;
  transition: color 0.3s ease;
}
.shiro-frame--topbar .shiro-logo button:hover {
  color: #000000;
}
.shiro-frame--topbar .shiro-logo a {
  text-decoration: none;
  margin-left: 0.75em;
}
.shiro-frame--topbar .shiro-logo a h1 {
  display: inline-block;
  color: hsl(182, 58%, 42%);
  font-size: 1.3em;
  margin: 0;
}
.shiro-frame--topbar .top-search {
  position: relative;
  display: flex;
  width: 50%;
  max-width: 800px;
}
.shiro-frame--topbar .top-search .searchComponents {
  display: flex;
  width: 100%;
  gap: 1em;
  align-items: stretch;
}
.shiro-frame--topbar .top-search .searchComponents .textSearch {
  width: 75%;
  flex-grow: 1;
}
.shiro-frame--topbar .top-search .searchComponents .typeSearch {
  width: 25%;
  flex-grow: 1;
}
.shiro-frame--topbar .top-search .dropdown {
  border: 1px solid #e0e0e0;
  border-radius: 4px;
  height: 100%;
}
.shiro-frame--topbar .top-search .dropdown .search input {
  padding-left: 2.5em;
}
.shiro-frame--topbar .top-search .dropdown .search input:hover {
  border: none;
}
.shiro-frame--topbar .top-search input {
  font-size: 1.2em;
  font-family: inherit;
  font-weight: 600;
  margin-left: 0;
  border: 1px solid #e0e0e0;
  border-radius: 4px;
  padding: 0.1em 0.5em 0.1em 2em;
  outline: 0;
  width: 30vw;
  transition: all 0.5s ease;
}
.shiro-frame--topbar .top-search input::-moz-placeholder {
  color: #c8c9ca;
  font-weight: 400;
}
.shiro-frame--topbar .top-search input::placeholder {
  color: #c8c9ca;
  font-weight: 400;
}
.shiro-frame--topbar .top-search input:-ms-input-placeholder {
  color: #c8c9ca;
  font-weight: 400;
}
.shiro-frame--topbar .top-search .top-search-adv {
  font-size: 0.8em;
  opacity: 0.5;
  text-transform: uppercase;
}
.shiro-frame--topbar .top-search > button, .shiro-frame--topbar .top-search > * > button {
  color: #e0e0e0;
  transition: all 0.5s ease;
  position: absolute;
  top: 50%;
  left: 1em;
  transform: translateY(-50%);
}
.shiro-frame--topbar .top-search:hover > button, .shiro-frame--topbar .top-search:hover > * > button {
  color: #333333;
}
@media all and (max-width: 768px) {
  .shiro-frame--topbar .top-search {
    flex: 1;
  }
}
.shiro-frame--topbar .top-elements {
  display: flex;
  justify-content: space-between;
}
.shiro-frame--topbar .top-elements .top-info button {
  font-size: 0.9em;
  margin: 0 0.5em;
  color: #666666;
}
.shiro-frame--topbar .top-elements .top-info button.bookmark {
  font-weight: 600;
}
.shiro-frame--topbar .top-elements .top-info button.bookmark i {
  margin-top: 0.5em;
  color: #a8a8a8;
  transition: color 0.3s ease;
}
.shiro-frame--topbar .top-elements .top-info button:hover.bookmark i {
  color: #e79a09;
}
.shiro-frame--topbar .top-elements .top-user {
  position: relative;
  white-space: nowrap;
  margin-left: 2em;
  display: flex;
  align-items: center;
}
.shiro-frame--topbar .top-elements .top-user button {
  display: flex;
  align-items: center;
}
.shiro-frame--topbar .top-elements .top-user button .top-user-avatar {
  display: block;
  font-size: 1.5em;
  overflow: hidden;
  width: 24px;
  height: 24px;
  background: rgba(0, 0, 0, 0.3);
  border-radius: 3em;
  color: #a8a8a8;
  background: #e0e0e0;
}
.shiro-frame--topbar .top-elements .top-user button .top-user-avatar i {
  line-height: 1.5;
}
.shiro-frame--topbar .top-elements .top-user button .top-user-avatar i::before {
  margin: 0;
}
.shiro-frame--topbar .top-elements .top-user button .top-user-name {
  font-size: 0.8em;
  margin-left: 0.5em;
  color: #111111;
}
.shiro-frame--topbar .top-elements .top-user .top-user-avatar-box {
  margin: 0.25em auto;
  width: 50px;
  height: 50px;
  color: #a8a8a8;
  background: #e0e0e0;
  border-radius: 50%;
  overflow: hidden;
  font-size: 3em;
  text-align: center;
}
.shiro-frame--topbar .top-elements .top-user .top-user-avatar-box i {
  line-height: 1.25;
}
.shiro-frame--topbar .top-elements .top-user .top-user-avatar-box i::before {
  margin: 0;
}
.shiro-frame--topbar .top-elements .top-user .top-user-name-box {
  font-size: 0.85em;
  font-weight: 600;
  text-align: center;
  margin: 0.2em auto;
}
.shiro-frame--topbar .top-elements .top-user .top-user-role-box {
  font-size: 0.7em;
  color: #4B4F55;
  text-align: center;
  margin: 0 auto 0.4em auto;
}
.shiro-frame--topbar .top-elements .top-user .top-user-exit {
  text-align: center;
  margin: 0 auto 0.4em auto;
  border-top: 1px solid #999;
  margin-top: 0.75em;
  padding-top: 1em;
  padding-bottom: 0.25em;
  text-transform: uppercase;
  font-size: 0.8em;
  font-weight: 600;
}
.shiro-frame--topbar .top-elements .top-user .top-user-exit a {
  color: #888888;
}
.shiro-frame--topbar .top-elements .top-user .top-user-exit a:hover {
  color: #111111;
}

/* SHIRO SIDE NAV */
nav.shiro-frame--sidenav ul {
  list-style-type: none;
  overflow: hidden;
  width: 100%;
}
nav.shiro-frame--sidenav .nav-item {
  font-size: 0.95em;
  margin-bottom: 1em;
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 0 0.5em;
}
nav.shiro-frame--sidenav .nav-item > *:last-child {
  grid-column: span 2;
}
nav.shiro-frame--sidenav .nav-item > *:where(a, button) {
  display: inline-block;
  display: inline-block;
  color: #666666;
  text-decoration: none;
  text-align: inherit;
  white-space: nowrap;
  vertical-align: middle;
  vertical-align: middle;
  transition: color 0.3s ease;
}
nav.shiro-frame--sidenav .nav-item > *:where(a, button) i {
  font-size: 1.25em;
}
nav.shiro-frame--sidenav .nav-item > *:where(a, button) span {
  font-weight: 700;
  font-family: "Titillium Web", sans-serif;
  display: inline-block;
  padding-left: 0.75em;
}
nav.shiro-frame--sidenav .nav-item > *:where(a, button) span.version {
  font-size: 0.75em;
  font-weight: normal;
}
nav.shiro-frame--sidenav .nav-item > *:where(a, button):hover {
  color: hsl(182, 58%, 42%);
}
nav.shiro-frame--sidenav .nav-item hr {
  border: 0;
  height: 1px;
  background-color: #e0e0e0;
  margin: 0.5em 0.2em;
  width: 13.5em;
}
nav.shiro-frame--sidenav .nav-item > button {
  font-size: inherit;
}
nav.shiro-frame--sidenav .nav-item > ul {
  padding-left: 2.5em;
}
nav.shiro-frame--sidenav .nav-item > ul > li:first-child {
  margin-top: 0.75em;
}
nav.shiro-frame--sidenav .nav-item > ul > li:last-child {
  margin-bottom: 0.5em;
}
nav.shiro-frame--sidenav .nav-item ul {
  width: 100%;
  max-height: 0;
  overflow: hidden;
  transition: all 0.5s;
}
nav.shiro-frame--sidenav .nav-item ul a:not(.shiro-btn),
nav.shiro-frame--sidenav .nav-item ul button:not(.shiro-btn) {
  display: inline-block;
  max-width: 100%;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  text-decoration: none;
  font-weight: 600;
  color: #888888;
  line-height: 1.3;
  transition: color 0.3s ease;
}
nav.shiro-frame--sidenav .nav-item ul a:not(.shiro-btn):hover,
nav.shiro-frame--sidenav .nav-item ul button:not(.shiro-btn):hover {
  color: #000000;
}
nav.shiro-frame--sidenav .nav-item ul.expanded {
  max-height: 1400px;
}
body:not(.fixed-menu) nav.shiro-frame--sidenav .nav-item ul.expanded {
  max-height: 0;
}
nav.shiro-frame--sidenav .nav-item ul h5 {
  display: flex;
  justify-content: space-between;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-top: 1.15em;
  margin-bottom: 0.5em;
}
nav.shiro-frame--sidenav .nav-item ul h5 a {
  color: hsl(182, 58%, 42%) !important;
  font-weight: 700 !important;
}
nav.shiro-frame--sidenav .nav-item ul h5 a.shiro-btn {
  opacity: 0;
}
nav.shiro-frame--sidenav .nav-item ul h5 a.shiro-btn:hover {
  color: #fff !important;
}
nav.shiro-frame--sidenav .nav-item ul h5:hover a.shiro-btn {
  opacity: 1;
}
nav.shiro-frame--sidenav:hover .nav-item > ul.expanded {
  max-height: 1800px !important;
  transition-delay: 0.1s;
  transition-delay: 0.1s;
}

/* SHIRO MAIN */
.altTitle {
  font-size: 0.8em;
  text-transform: uppercase;
  margin-left: 0.7em;
  color: #999;
}

.shiro-frame--main .container {
  align-items: center;
  width: 100%;
  max-width: 1400px;
}
.shiro-frame--main .container {
  align-items: center;
  width: 100%;
  max-width: 1400px;
}
.shiro-frame--main .tool-bar {
  position: sticky;
  top: 0;
  left: 0;
  width: 100%;
  display: flex;
  align-items: center;
  background-color: rgba(224, 224, 224, 0.9);
  padding: 0.25em 4%;
  z-index: 15;
  height: 2.5em;
  -webkit-backdrop-filter: blur(3px);
          backdrop-filter: blur(3px);
}
.shiro-frame--main .tool-bar .container {
  display: flex;
  align-items: baseline;
  gap: 2.5em;
}
.shiro-frame--main .tool-bar .tool-bar-actions {
  align-items: baseline;
  display: flex;
  gap: 0.75em;
}
.shiro-frame--main .tool-bar .tool-bar-actions button {
  font-size: 0.85em;
  font-weight: 600;
  align-items: baseline;
  text-transform: uppercase;
  color: #888888;
  white-space: nowrap;
  text-rendering: optimizeLegibility;
  transition: color 0.3s ease;
}
.shiro-frame--main .tool-bar .tool-bar-actions button .extra {
  margin-left: 0.5em;
  padding: 0 0.3em;
  border-radius: 3px;
  color: #a8a8a8;
  font-size: 0.85em;
}
.shiro-frame--main .tool-bar .tool-bar-actions button:hover {
  color: #111111;
}
.shiro-frame--main .tool-bar .tool-bar-text {
  width: 100%;
  overflow: hidden;
  font-size: 1em;
  display: flex;
  align-items: center;
  align-items: center;
  opacity: 1;
  transition: opacity 0.3 ease;
  transition: opacity 0.3 ease;
}
.shiro-frame--main .tool-bar .tool-bar-text.visible {
  opacity: 1;
}
.shiro-frame--main .tool-bar .tool-bar-text .section {
  font-size: 1em !important;
  color: hsl(182, 58%, 42%) !important;
  font-weight: 600;
  text-decoration: none;
  white-space: nowrap;
  flex: 0;
  text-transform: uppercase;
}
.shiro-frame--main .tool-bar .tool-bar-text .section.light {
  font-weight: 400 !important;
}
.shiro-frame--main .tool-bar .tool-bar-text .title {
  font-size: 1em !important;
  line-height: 1.5em;
  line-height: 1.5em;
  color: #111111;
  font-weight: 500;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.shiro-frame--main .tool-bar .tool-bar-text .content-item--id {
  margin-left: 1em;
}
.shiro-frame--main .tool-bar .tool-bar-info {
  min-width: 0;
  flex: 1;
  white-space: nowrap;
  position: relative;
  color: #a8a8a8;
}
.shiro-frame--main .tool-bar .tool-bar-info .content-selected {
  display: inline-block;
  color: hsl(182, 58%, 42%);
  margin-right: 2em;
}
.shiro-frame--main .tool-bar .tool-bar-info > *:not(:first-child) {
  margin-left: 1.2em;
}
.shiro-frame--main .tool-bar .tool-bar-info a.batch {
  display: none;
}
.shiro-frame--main .tool-bar .tool-bar-info a,
.shiro-frame--main .tool-bar .tool-bar-info button {
  color: #4B4F55;
  text-transform: uppercase;
  font-size: 0.8em;
  font-weight: 600;
  white-space: nowrap;
  transition: color 0.3s ease;
}
.shiro-frame--main .tool-bar .tool-bar-info a:hover,
.shiro-frame--main .tool-bar .tool-bar-info button:hover {
  color: #0c0c0c;
}
.shiro-frame--main .tool-bar .tool-bar-info a i,
.shiro-frame--main .tool-bar .tool-bar-info button i {
  margin-right: 0.25em;
}
.shiro-frame--main .tool-bar .tool-bar-info .tool-bar-bookmark::before {
  content: "\f097";
  font-family: "shiro-icon";
  margin-right: 0.5em;
}
.shiro-frame--main .tool-bar .tool-bar-info .tool-bar-bookmark.selected::before {
  content: "\e807";
  color: #e79a09;
}
.shiro-frame--main .tool-bar .tool-bar-info .tool-bar-bookmark.selected:hover::before {
  content: "\e807";
  color: #df8714;
}
.shiro-frame--main .tool-bar .tool-bar-functions {
  align-items: baseline;
  white-space: nowrap;
  display: flex;
  gap: 1.25em;
}
.shiro-frame--main .tool-bar .tool-bar-functions button {
  align-items: baseline;
  text-transform: uppercase;
  color: #888888;
  white-space: nowrap;
  transition: color 0.3s ease;
}
.shiro-frame--main .tool-bar .tool-bar-functions button:hover {
  color: #111111;
}
.shiro-frame--main .tool-bar .tool-bar-functions button span {
  font-size: 0.8em;
  font-weight: 600;
  margin-left: 0.5em;
}
.shiro-frame--main .tool-bar .tool-bar-functions button ~ button {
  margin-left: 1.2em;
}
.shiro-frame--main .tool-bar .tool-bar-functions button.shiro-btn-tools {
  position: relative;
  border-radius: 3px;
  min-width: 8em;
  background-color: hsl(182, 58%, 42%);
  color: #ffffff !important;
  padding: 0.35em 1em;
  margin: 0 0.1em;
  font-size: 0.9em;
  font-weight: 600;
  text-transform: uppercase;
  text-rendering: optimizeLegibility;
  transition: background-color 0.3s ease;
}
.shiro-frame--main .tool-bar .tool-bar-functions button.shiro-btn-tools.button-loading::after {
  content: " ";
  width: 10px;
  height: 10px;
  border-radius: 1em;
  position: absolute;
  top: 50%;
  right: 0.85em;
  border-width: 1px 2px 0 0;
  border-style: solid;
  border-color: #ffffff;
  animation: mymove 0.75s linear;
  animation-iteration-count: infinite;
}
@keyframes mymove {
  0% {
    transform: translateY(-50%) rotate(0turn);
  }
  100% {
    transform: translateY(-50%) rotate(1turn);
  }
}
.shiro-frame--main .tool-bar .tool-bar-functions button.shiro-btn-tools span {
  font-weight: 400;
  margin-left: 0;
}
.shiro-frame--main .tool-bar .tool-bar-functions button.shiro-btn-tools:hover {
  background-color: hsl(182, 58%, 35%);
}
.shiro-frame--main .tool-bar .tool-bar-functions button.shiro-btn-tools:disabled {
  background-color: #c8c9ca;
  cursor: initial;
}
.shiro-frame--main .tool-bar .tool-bar-functions .shiro-btn-more {
  display: inline-flex;
  position: relative;
}
.shiro-frame--main .tool-bar .tool-bar-functions .shiro-btn-status {
  display: inline-flex;
  position: relative;
}
.shiro-frame--main main {
  padding: 2em 4% 2.5em 4%;
}
.shiro-frame--main main.column {
  margin: 0 auto;
  max-width: 1280px;
}
.shiro-frame--main main p:not(:last-child) {
  margin-bottom: 2em;
}
.shiro-frame--main main h1 {
  font-size: 1.2em;
  text-transform: uppercase;
  font-weight: 700;
  color: hsl(182, 58%, 42%);
  display: inline;
}
.shiro-frame--main main h1 a {
  color: inherit;
  text-decoration: none;
}
.shiro-frame--main main h1 a:hover {
  color: hsl(182, 58%, 35%);
}
.shiro-frame--main main h1 a:not(:first-child) {
  font-weight: 400;
}
.shiro-frame--main main h1 span:not(:first-child) {
  font-weight: 400;
}
.shiro-frame--main main h1.loading {
  display: inline-block;
  color: #333;
  opacity: 0.35;
  min-width: 175px;
}
.shiro-frame--main main h1.loading::before {
  content: " ";
}
.shiro-frame--main main h1 .crumbs-actions {
  margin-left: 1em;
}
.shiro-frame--main main h1 .crumbs-actions button {
  margin-right: 1em;
}
.shiro-frame--main main h2 {
  font-size: 1.2em;
  font-weight: 700;
  min-height: 1.7em;
  line-height: 1.1;
  margin-top: 0.25em;
}
.shiro-frame--main main h2.loading {
  opacity: 0.35;
  width: 120px;
}
.shiro-frame--main main h2.loading::before {
  content: " ";
}
.shiro-frame--main main header {
  margin-bottom: 2em;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.shiro-frame--main main header .extra {
  margin-top: 0.5em;
}
.shiro-frame--main main header .extra span.header-extra {
  font-size: 0.8em;
}
.shiro-frame--main main header .extra span.header-extra i {
  margin-right: 0.35em;
}
.shiro-frame--main main header button.header-key {
  margin-left: 0;
}
.shiro-frame--main main header.header-functions {
  display: flex;
  justify-content: space-between;
  gap: 0.5em 1em;
}
.shiro-frame--main main .container .home-function {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75em;
  margin-bottom: 2em;
  grid-area: 1/1/2/3;
}
.shiro-frame--main main .container .home-function a {
  white-space: nowrap;
  margin: 0;
  text-decoration: none;
  transition: filter 0.5s;
}
.shiro-frame--main main .container .home-function a:hover {
  filter: brightness(90%);
  background: none;
  color: #aaa;
}
.shiro-frame--main main .container .home-function a .total {
  padding: 0 5px;
  border-radius: 4px;
  margin-left: 5px;
  background: #ddd;
  color: #aaa;
}
.shiro-frame--main main .container .home-function a .total.alert {
  background: #EC4949;
  color: #fff;
}
.shiro-frame--main main .home {
  display: grid;
  grid-template-rows: 1fr;
  gap: 0 4em;
  grid-template-rows: 1fr;
  gap: 0 4em;
}
.shiro-frame--main main .home > * {
  overflow: hidden;
}
.shiro-frame--main main .home .home-content {
  margin-bottom: 3em;
}
.shiro-frame--main main .home .home-title {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 0.35em;
  margin-bottom: 0.35em;
}
.shiro-frame--main main .home .home-title a,
.shiro-frame--main main .home .home-title button {
  color: #a8a8a8;
  font-size: 0.65em;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  text-decoration: none;
}
.shiro-frame--main main .home .home-title a:hover,
.shiro-frame--main main .home .home-title button:hover {
  color: #4B4F55;
}
.shiro-frame--main main .home details {
  border-top: 1px solid #c8c9ca;
}
.shiro-frame--main main .home details:has(div:empty) {
  display: none;
}
.shiro-frame--main main .home details summary {
  padding: 0.5em 0;
  position: relative;
  list-style: none;
}
.shiro-frame--main main .home details summary::marker, .shiro-frame--main main .home details summary::-webkit-details-marker {
  display: none !important;
}
.shiro-frame--main main .home details summary:hover::before {
  color: #111111;
}
@media (min-width: 768px) {
  .shiro-frame--main main .home {
    grid-template-columns: 5fr minmax(250px, 2fr);
  }
}
@media (min-width: 768px) {
  .shiro-frame--main main .home {
    grid-template-columns: 5fr minmax(250px, 2fr);
  }
}
.shiro-frame--main main section {
  max-width: 1400px;
}
.shiro-frame--main main section .page {
  width: 100%;
  margin-bottom: 1em;
  padding: 0.75em 1.5em;
  background: #FFF;
}
.shiro-frame--main main section .page.loading {
  opacity: 0.5;
  pointer-events: none;
}

.home-stats--item {
  margin-bottom: 5em;
}
.home-stats--body {
  border-top: 1px solid #c8c9ca;
}

.system-settings .schema-form label {
  text-transform: capitalize;
}
.system-settings .schema-form label.section {
  color: #999;
  font-size: 1.5em;
  margin-bottom: 0.2em;
  font-weight: bold;
  text-transform: uppercase;
}
.system-settings .schema-form .form-object .properties .form-field.object:not(:first-child) label.section {
  margin-top: 1.5em;
}
.system-settings .schema-form .form-object .properties .form-field.object .form-object label.section {
  margin-top: 1em;
  text-transform: capitalize;
}
.system-settings .schema-form .form-object .properties .form-field.object .form-object .properties {
  flex-direction: column;
}
.system-settings .schema-form .form-object .properties .form-field.object .form-object .properties .form-field.array .form-object .properties {
  flex-direction: row;
}

/*  TAXONOMY TREE  */
.taxonomy-tree {
  position: relative;
  list-style: none;
}
.taxonomy-tree.full-page {
  font-size: 1.1em;
}
.taxonomy-tree > li > .taxonomy-tree-row > .taxonomy-collapse {
  display: none;
}
.taxonomy-tree ul {
  margin-left: clamp(2em, 6%, 4em);
  margin-left: clamp(2em, 6%, 4em);
  list-style-type: none;
}
.taxonomy-tree li .taxonomy-tree-row {
  border-bottom: 1px dotted #c8c9ca;
  display: flex;
  align-items: baseline;
  gap: 0.5em;
  padding: 0.25em 0.5em 0.25em 0.5em;
  transition: all 0.3s ease;
  padding: 0.25em 0.5em 0.25em 0.5em;
  transition: all 0.3s ease;
}
.taxonomy-tree li .taxonomy-tree-row.highlight {
  background: #c8c9ca;
}
.taxonomy-tree li .taxonomy-tree-row--thumb {
  width: 50px;
  background-color: #e0e0e0;
  margin: 0.2em 0.75em 0.2em 0;
  overflow: hidden;
  position: relative;
}
.taxonomy-tree li .taxonomy-tree-row--thumb::before {
  content: "";
  display: block;
  padding-top: 60%;
  width: 100%;
}
.taxonomy-tree li .taxonomy-tree-row--thumb img {
  position: absolute;
  inset: 0 0 0 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.taxonomy-tree li .taxonomy-tree-row--name {
  flex: 1;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  color: #4B4F55;
  font-size: 1em;
  font-weight: 600;
  text-decoration: none;
  display: flex;
  gap: 1em;
  gap: 1em;
  justify-content: space-between;
  align-items: baseline;
  align-items: baseline;
  width: 100%;
  line-height: 1.5;
  line-height: 1.5;
}
.taxonomy-tree li .taxonomy-tree-row--name > *:first-child {
  overflow: hidden;
  text-overflow: ellipsis;
  flex: 1;
  text-align: left;
}
.taxonomy-tree li .taxonomy-tree-row--name:hover {
  color: #000000;
}
.taxonomy-tree li .taxonomy-tree-row--name .total {
  color: hsl(182, 58%, 42%);
  font-size: 0.9em;
  font-weight: 600;
  margin-right: 0.75em;
}
.taxonomy-tree li .taxonomy-tree-row--name .shade {
  color: #a8a8a8;
  font-weight: 600;
  margin-right: 0.75em;
}
.taxonomy-tree li .taxonomy-tree-row--name .shade {
  color: #a8a8a8;
}
.taxonomy-tree li .taxonomy-tree-row--name .type {
  color: hsl(182, 58%, 42%);
  text-transform: uppercase;
  font-size: 0.75em;
  font-weight: 600;
}
.taxonomy-tree li .taxonomy-tree-row--name .description {
  color: #888888;
  font-size: 0.75em;
}
.taxonomy-tree li .taxonomy-tree-row--name .status {
  color: #a8a8a8;
  font-size: 0.9em;
}
.taxonomy-tree li .taxonomy-tree-row--name span[contenteditable] {
  padding: 0.2em 0.75em;
  font-weight: 700;
  color: #000000;
  border: 0;
  outline: 0;
  font-style: italic;
  flex: 0;
}
.taxonomy-tree li .taxonomy-tree-row--name input[type=text] {
  padding: 0.2em 0.5em;
  border: 1px solid #e0e0e0;
  border: 0;
}
.taxonomy-tree li .taxonomy-tree-row .total {
  color: var(--shiro-color-theme);
  font-weight: 700;
  font-size: 0.8em;
  padding: 0.5em;
  background-color: transparent;
}
.taxonomy-tree li .taxonomy-tree-row--submit {
  flex: 1;
  margin-left: 0.5em;
}
.taxonomy-tree li .taxonomy-tree-row > button:not(:where(.taxonomy-tree-row--name, .taxonomy-collapse)) {
  opacity: 0;
  color: #c8c9ca;
  padding: 0.25em;
  flex-shrink: 0;
}
.taxonomy-tree li .taxonomy-tree-row.active, .taxonomy-tree li .taxonomy-tree-row:hover {
  background-color: rgba(0, 0, 0, 0.05);
  background-color: rgba(0, 0, 0, 0.05);
}
.taxonomy-tree li .taxonomy-tree-row.active > button, .taxonomy-tree li .taxonomy-tree-row:hover > button {
  opacity: 1;
  background-color: transparent;
  transition: color 0.3s ease;
}
.taxonomy-tree li .taxonomy-tree-row.active > button:hover, .taxonomy-tree li .taxonomy-tree-row:hover > button:hover {
  color: #111111;
  color: #111111;
}
.taxonomy-tree li .taxonomy-tree-row .taxonomy-collapse {
  opacity: 1;
  position: absolute;
  transform: translateX(-120%);
  transform: translateX(-120%);
  color: hsl(182, 58%, 42%);
  font-size: 1.05em;
  padding: 0.25em 0.5em;
  line-height: 2em;
  font-size: 1.05em;
  padding: 0.25em 0.5em;
  line-height: 1em;
}
.taxonomy-tree li .taxonomy-tree-row .taxonomy-collapse::before {
  content: "\e847";
  font-family: "shiro-icon";
  display: block;
}
.taxonomy-tree li .taxonomy-tree-row .taxonomy-collapse:hover {
  color: hsl(182, 58%, 35%);
}
.taxonomy-tree li.faded > .taxonomy-tree-row {
  opacity: 0.35;
}
.taxonomy-tree li.hidden {
  display: none;
}
.taxonomy-tree li.collapsed > ul {
  display: none;
}
.taxonomy-tree li.collapsed .taxonomy-collapse::before {
  content: "\e80e";
  font-family: "shiro-icon";
  display: block;
}

/*  TYPOLOGY (HOME)  */
.typology-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(110px, 1fr));
  gap: 1rem;
  padding: 0 0 1.5em 0;
}
.typology-grid:empty {
  display: none;
}
.typology-grid .typology-item {
  display: block;
  position: relative;
  border-radius: 50%;
  color: hsl(182, 58%, 42%);
  border: 2px solid hsl(182, 58%, 42%);
  transition: all 0.3s ease;
}
.typology-grid .typology-item:hover {
  color: #ffffff;
  background-color: hsl(182, 58%, 42%);
}
.typology-grid .typology-item.content {
  background-color: hsl(182, 58%, 42%);
  color: #ffffff;
  border: 2px solid hsl(182, 58%, 42%);
  transition: all 0.3s ease;
}
.typology-grid .typology-item.content:hover {
  background-color: hsl(182, 58%, 35%);
  border-color: hsl(182, 58%, 35%);
}
.typology-grid .typology-item.asset {
  color: #888888;
  border: 2px solid #888888;
  transition: all 0.3s ease;
}
.typology-grid .typology-item.asset:hover {
  color: #ffffff;
  background-color: #888888;
}
.typology-grid .typology-item::before {
  content: "";
  height: 0;
  display: inline-block;
  padding-top: 100%;
  width: 1px;
}
.typology-grid .typology-item .typology-item-content {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  pointer-events: none;
}
.typology-grid .typology-item--name {
  font-size: 1em;
  text-transform: uppercase;
  font-weight: 700;
  text-align: center;
  padding: 1em 0.5em 0.2em 0.5em;
  pointer-events: none;
}
.typology-grid .typology-item--total {
  font-size: 0.9em;
  opacity: 0.85;
  pointer-events: none;
}

/*  LONG TAIL  */
.long-tail-filter {
  background-color: #e0e0e0;
  padding: 0.5em;
  margin-top: 1.2em;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(100px, 1fr));
  gap: 0.5em;
}

.long-tail {
  list-style-type: none;
  margin-top: 1.2em;
}
.long-tail li {
  display: grid;
  grid-template-columns: 2fr minmax(50px, 1fr);
  gap: 1em;
  margin: 0.4em 0;
}
.long-tail li:hover .bar {
  background-color: #c8c9ca !important;
}
.long-tail li .long-tail--name {
  flex: 1;
  display: flex;
  overflow: hidden;
  align-items: baseline;
  text-decoration: none;
}
.long-tail li .long-tail--name .name {
  font-size: 1em;
  font-weight: 600;
  color: #666666;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.long-tail li .long-tail--name .name:hover {
  color: #111111;
}
.long-tail li .long-tail--name .type {
  text-transform: uppercase;
  color: hsl(182, 58%, 42%);
  font-size: 0.6em;
  font-weight: 600;
  letter-spacing: 0.5px;
  margin-left: 0.5em;
}
.long-tail li .long-tail--value {
  position: relative;
  overflow: hidden;
}
.long-tail li .long-tail--value .bar {
  display: block;
  width: 100%;
  height: 1.2em;
  background-color: #e0e0e0;
}
.long-tail li .long-tail--value .total {
  position: absolute;
  left: 0;
  top: 0;
  font-size: 0.8em;
  margin: 0.2em 0.5em;
  font-weight: 600;
}

/*  CARDS  */
.card-grid-filter {
  margin-bottom: 1em;
  display: flex;
  flex-flow: row wrap;
  align-items: center;
}
.card-grid-filter > * {
  flex: 0;
  white-space: nowrap;
  margin: 0.5em 0;
}
.card-grid-filter > *:not(:last-child) {
  margin-right: 1.5em;
}
.card-grid-filter .filter-counter {
  color: #666666;
}
.card-grid-filter .filter-selection {
  flex: 1;
}
.card-grid-filter .filter-order {
  display: flex;
  align-items: center;
  color: #888888;
  font-size: 0.8em;
  text-transform: uppercase;
  position: relative;
}
.card-grid-filter .filter-order button {
  color: #4B4F55;
  text-transform: uppercase;
  font-weight: 700;
  margin-left: 0.3em;
}
.card-grid-filter .filter-order button:hover {
  color: #111111;
}
.card-grid-filter .filter-order .dropdown {
  margin-left: 0.5em;
  background: none;
}
.card-grid-filter .filter-order .pageSize .dropdown .dropdown-card span.label {
  text-align: right;
}
.card-grid-filter .filter-viewmode {
  font-size: 0.9em;
}
.card-grid-filter .filter-viewmode button {
  color: #c8c9ca;
  transition: color 0.3s ease;
}
.card-grid-filter .filter-viewmode button:hover {
  color: #888888;
}
.card-grid-filter .filter-viewmode button ~ button {
  margin-left: 0.3em;
}
.card-grid-filter .filter-viewmode button.selected {
  color: #4B4F55;
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(190px, 1fr));
  gap: 1.5em 1.25em;
  color: #4B4F55;
}
.card-grid[viewmode=minimum] {
  grid-template-columns: 1fr;
  gap: 0.65em;
}
.card-grid[viewmode=minimum] .card-item {
  grid-template-columns: 1px 1px 1fr;
}
.card-grid[viewmode=minimum] .card-item--check {
  font-size: 0.75em;
  left: 0.75em;
  top: 50%;
  transform: translateY(-50%);
  border: 1px solid #ddd;
  box-shadow: none;
}
.card-grid[viewmode=minimum] .card-item--bookmark {
  right: 0.25em;
  top: 50%;
  transform: translateY(-50%);
  position: absolute;
}
.card-grid[viewmode=minimum] .card-item--bookmark button {
  position: initial;
}
.card-grid[viewmode=minimum] .card-item--image {
  display: none;
}
.card-grid[viewmode=minimum] .card-item--container {
  padding: 0.5em 2.5em;
  border-radius: 0.5em;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  gap: 1em;
  position: relative;
}
.card-grid[viewmode=minimum] .card-item--text {
  flex: 1;
  display: grid;
  grid-template-columns: minmax(15em, 5fr) minmax(1.5em, 1fr);
  grid-auto-columns: 1fr;
  grid-template-rows: 1fr;
  grid-auto-flow: column;
  -moz-column-gap: 12px;
       column-gap: 12px;
  width: 100%;
  align-items: center;
}
.card-grid[viewmode=minimum] .card-item--text .card-item--info {
  flex: 1;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.card-grid[viewmode=minimum] .card-item--text .card-item--type {
  order: 2;
  display: inline-block;
}
.card-grid[viewmode=minimum] .card-item--text .card-item--prop {
  flex: 0;
}
.card-grid[viewmode=minimum] .card-item--text .card-item--prop.nowrap {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.card-grid[viewmode=minimum] .card-item--text .card-item--prop.nowrap .label {
  display: inline-block;
  margin-right: 0.25em;
}
.card-grid[viewmode=minimum] .card-item--text .card-item--prop .label {
  display: block;
  font-size: 0.8em;
  text-transform: uppercase;
}
.card-grid[viewmode=minimum] .card-item--text > * {
  margin: 0;
}
.card-grid[viewmode=minimum] .card-item--info {
  display: flex;
  align-items: baseline;
  gap: 0.75em;
  margin-right: 0.5em;
}
.card-grid[viewmode=minimum] .card-item--info .card-item--name {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.card-grid[viewmode=minimum] .card-item--info .card-item--type {
  margin: 0;
}
.card-grid[viewmode=minimum] .card-item--tools {
  display: flex;
  align-items: center;
  border: 0;
  padding-top: 0;
  margin-top: 0;
  flex: 0;
}
.card-grid[viewmode=minimum] .card-item--prop input {
  width: 40px;
}
.card-grid[viewmode=list] {
  grid-template-columns: 1fr;
  gap: 1em;
}
.card-grid[viewmode=list] .card-item {
  display: grid;
  grid-template-columns: 0 10em 1fr;
  gap: 0;
}
.card-grid[viewmode=list] .card-item--check {
  left: -1em;
  top: 0.5em;
}
.card-grid[viewmode=list] .card-item--image {
  border-radius: var(--card-radius) 0 0 var(--card-radius);
}
.card-grid[viewmode=list] .card-item--image::before {
  content: "";
  height: 0;
  display: inline-block;
  padding-top: 90%;
  width: 100%;
}
.card-grid[viewmode=list] .card-item--image img {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform 0.2s linear;
}
.card-grid[viewmode=list] .card-item--container {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border-radius: 0 0.5em 0.5em 0;
}
.card-grid .card-item {
  position: relative;
  border-radius: var(--card-radius);
  box-shadow: rgba(0, 0, 0, 0.1) 3px 4px 8px;
  display: flex;
  flex-direction: column;
  transition: box-shadow 0.3s ease;
}
.card-grid .card-item:hover {
  box-shadow: rgba(50, 50, 93, 0.2) 3px 5px 12px -2px, rgba(0, 0, 0, 0.2) 2px 2px 7px -3px;
  border-color: #4B4F55;
}
.card-grid .card-item.checked {
  outline: 3px solid hsl(182, 58%, 42%);
}
.card-grid .card-item--check {
  width: 1.6em;
  height: 1.6em;
  background-color: #ffffff;
  box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
  border-radius: 1em;
  position: absolute;
  top: -0.5em;
  right: 0.5em;
  z-index: 1;
  opacity: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: opacity 0.3s ease;
  cursor: pointer;
}
.card-grid .card-item--check::after {
  content: "\e808";
  font-family: "shiro-icon";
  font-size: 1.2em;
  margin-top: 0.25em;
  color: #ffffff;
  transition: color 0.3s ease;
}
.card-grid .card-item--check:hover::after {
  color: #e0e0e0;
}
.card-grid .card-item--check input {
  display: none;
}
.card-grid .card-item--container {
  position: relative;
  border-radius: 0 0 0.5em 0.5em;
  background-color: #ffffff;
  padding: 0.5em 0.75em 0.5em 0.75em;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.card-grid .card-item--bookmark {
  position: absolute;
  top: 0;
  right: 0;
}
.card-grid .card-item--bookmark button {
  position: absolute;
  padding: 0.5em 0.75em;
  top: 0.25em;
  right: 0;
  color: #a8a8a8;
}
.card-grid .card-item--bookmark button::before {
  content: "\f097";
  font-family: "shiro-icon";
  transition: color 0.3s ease;
}
.card-grid .card-item--bookmark button.selected::before {
  content: "\e807";
  color: #e79a09;
}
.card-grid .card-item--bookmark button:hover::before {
  color: #0c0c0c;
}
.card-grid .card-item--bookmark button.selected:hover::before {
  color: #df8714;
}
.card-grid .card-item--bookmark button:not(.selected) {
  opacity: 0;
  transition: opacity 0.3s ease;
}
.card-grid .card-item.checked .card-item--check {
  background-color: hsl(182, 58%, 42%);
  border-color: hsl(182, 58%, 42%) !important;
}
.card-grid .card-item.checked .card-item--check::after {
  color: #ffffff !important;
}
.card-grid .card-item.checked:hover, .card-grid .card-item.select-mode:hover {
  cursor: pointer;
}
.card-grid .card-item:hover.select-mode .card-item--check::after {
  color: #e0e0e0;
}
.card-grid .card-item.select-mode .card-item--check, .card-grid .card-item.checked .card-item--check, .card-grid .card-item:hover .card-item--check, .card-grid .card-item:hover:not(:where(.select-mode, .checked)) .card-item--bookmark button {
  opacity: 1;
}
.card-grid .card-item--prop {
  font-size: 0.8em;
  margin-bottom: 0.2em;
}
.card-grid .card-item--prop .label {
  font-weight: 700;
  margin-right: 0.5em;
  white-space: nowrap;
}
.card-grid .card-item--prop input {
  border: 0;
  outline: 0;
  color: #111111;
  background: transparent;
}
.card-grid .card-item--tools {
  display: flex;
  align-items: center;
  border-top: 1px solid #e0e0e0;
  padding-top: 0.5em;
  margin-top: 0.5em;
}
.card-grid .card-item--details {
  display: flex;
  flex: 1;
  position: relative;
  margin-right: 0.75em;
}
.card-grid .card-item--hits {
  flex: 1;
  position: relative;
  margin-right: 0.75em;
}
.card-grid .card-item--status, .card-grid .card-item--more {
  color: #333333;
  margin-left: 0.5em;
}
.card-grid .card-item--status button, .card-grid .card-item--more button {
  color: #888888;
  transition: color 0.3s ease;
}
.card-grid .card-item--status button:hover, .card-grid .card-item--more button:hover {
  color: #333333;
}
.card-grid .card-item--menu {
  position: relative;
}
.card-grid .card-item--image {
  position: relative;
  background-color: #e0e0e0;
  border-radius: var(--card-radius) var(--card-radius) 0 0;
  overflow: hidden;
}
.card-grid .card-item--image::before {
  content: "";
  height: 0;
  display: inline-block;
  padding-top: 80%;
  width: 1px;
}
.card-grid .card-item--image img {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform 0.2s linear;
}
.card-grid .card-item--image button.shiro-btn-zoom {
  bottom: 0;
  right: 0;
  font-size: 1.5em;
}
.card-grid .card-item--image:hover button {
  opacity: 0.5;
}
.card-grid .card-item--image:hover img {
  transform: scale(1.05);
}
.card-grid .card-item--image a {
  display: block;
  position: absolute;
  top: 0;
  width: 100%;
  height: 100%;
}
.card-grid .card-item--info {
  margin-right: 1em;
  margin-bottom: 0.75em;
}
.card-grid .card-item--name {
  font-size: 1.05em;
  font-weight: 700;
  text-decoration: none;
  color: #4B4F55;
  transition: all 0.3s ease;
  display: block;
  overflow-wrap: break-word;
}
.card-grid .card-item--name.no-name {
  color: #aaa;
  font-style: italic;
  font-weight: 500;
}
.card-grid .card-item--name:hover {
  color: #111111;
}
.card-grid .card-item--type {
  font-size: 0.65em;
  text-transform: uppercase;
  font-weight: 600;
  color: hsl(182, 58%, 42%);
  margin-bottom: 0.5em;
  display: block;
}
.card-grid .card-item.loading {
  opacity: 0.35;
}

.pagination {
  text-align: center;
  font-size: 1.25em;
  color: #888888;
  margin-top: 2em;
}
.pagination a {
  text-decoration: none;
  color: #888888;
  transition: color 0.3s ease;
}
.pagination a:hover {
  color: #111111;
}
.pagination--nav {
  margin: 0 1.5em;
}
.pagination--item {
  margin: 0 0.5em;
}
.pagination--item.current {
  color: hsl(182, 58%, 42%);
  font-weight: 700;
}

/*  TOOLTIP  */
.tooltip {
  display: inline-block;
  position: relative;
}
.tooltip:hover .tooltip-box {
  display: inline-block;
}
.tooltip > a {
  text-decoration: none;
  color: #666666;
  transition: color 0.3s ease;
}
.tooltip > a:hover {
  color: #111111;
}
.tooltip:hover .tooltip-box {
  display: block;
}
.tooltip .tooltip-box {
  display: none;
  position: absolute;
  transform: translateX(110%);
}
.tooltip.right-bottom .tooltip-box {
  bottom: -30%;
  right: 0;
}
.tooltip.right-bottom .tooltip-box::before {
  top: 80%;
}

.tooltip-box {
  display: inline-flex;
  flex-wrap: wrap;
  position: relative;
  background: #111111;
  max-width: 80%;
  gap: 0 0.75em;
  align-items: center;
  border-radius: 4px;
  padding: 0.4rem 0.6rem;
  color: #ffffff;
  font-size: 0.9em;
}
.tooltip-box span {
  position: relative;
}
.tooltip-box span button.reset {
  position: absolute;
  top: 50%;
  right: 0;
  color: #ffffff;
  line-height: 0.8em;
  transform: translate(-50%, -50%);
  color: #4B4F55;
  font-size: 1.25em;
}
.tooltip-box span:hover button.reset {
  color: #e0e0e0;
}
.tooltip-box button.submit {
  background-color: #333333;
  color: #e0e0e0;
  padding: 0.2em 0.8em 0.3em 0.8em;
  font-size: 0.8em;
  font-weight: 700;
  text-transform: uppercase;
  border-radius: 3px;
}
.tooltip-box button.submit:hover {
  background-color: hsl(182, 58%, 42%);
}
.tooltip-box input {
  background-color: transparent;
  color: #ffffff;
  border: 1px solid #333333;
  outline: 0;
  padding: 0.1em 1.5em 0.1em 0.5em;
  font-weight: 600;
}
.tooltip-box.right {
  transform: translate(100%, 0);
}
.tooltip-box.right::before {
  content: " ";
  border-style: solid;
  border-width: 6px;
  border-color: transparent #111111 transparent transparent;
  position: absolute;
  top: 50%;
  left: 1px;
  transform: translate(-100%, -50%);
  height: 0;
  width: 0;
}
.tooltip-box.left {
  transform: translate(-100%, 0);
}
.tooltip-box.left::before {
  content: " ";
  border-style: solid;
  border-width: 6px;
  border-color: transparent transparent transparent #111111;
  position: absolute;
  bottom: 50%;
  right: 1px;
  transform: translate(100%, 50%);
  height: 0;
  width: 0;
}
.tooltip-box.top::before {
  content: " ";
  border-style: solid;
  border-width: 6px;
  border-color: #111111 transparent transparent transparent;
  position: absolute;
  bottom: 0;
  right: 50%;
  transform: translate(50%, 100%);
  height: 0;
  width: 0;
}
.tooltip-box a {
  display: block;
  color: #a8a8a8;
  text-decoration: none;
  font-size: 0.75em;
  margin: 0.1em 0;
  transition: color 0.3s ease;
}
.tooltip-box a:hover {
  color: #ffffff;
}
.tooltip-box a.item {
  text-transform: inherit;
}

.d-tooltip-box {
  display: inline-flex;
  flex-wrap: wrap;
  background: #111111;
  max-width: 80%;
  opacity: 0;
  visibility: hidden;
  gap: 0.4em 0.75em;
  align-items: center;
  border-radius: 4px;
  padding: 0.4rem 0.8rem;
  color: #ffffff;
  font-size: 0.85em;
  position: fixed;
  z-index: 9999999;
  transition: opacity 0.3s ease;
}
.d-tooltip-box.error {
  background-color: #EC4949;
}
.d-tooltip-box.pop {
  opacity: 1;
  visibility: visible;
}
.d-tooltip-box ul li {
  margin: 0.25em 0;
  list-style-type: none;
}
.d-tooltip-box ul li button {
  color: #c8c9ca;
}
.d-tooltip-box ul li button span {
  font-weight: 700;
  font-size: 0.9em;
  margin-right: 0.5em;
}
.d-tooltip-box ul li button:hover {
  color: #ffffff;
}
.d-tooltip-box ul li button.italic {
  font-style: italic;
}
.d-tooltip-box span {
  position: relative;
  flex-grow: 1;
  text-align: center;
}
.d-tooltip-box span input {
  background-color: transparent;
  color: #ffffff;
  border: 1px solid #333333;
  outline: 0;
  padding: 0.1em 1.5em 0.1em 0.5em;
  font-weight: 600;
  width: 100%;
}
.d-tooltip-box span button.reset {
  position: absolute;
  top: 50%;
  right: 0;
  color: #ffffff;
  line-height: 0.8em;
  transform: translate(-50%, -50%);
  color: #4B4F55;
  font-size: 1.25em;
}
.d-tooltip-box span button.reset i {
  font-size: 0.75em;
}
.d-tooltip-box span:hover button.reset {
  color: #e0e0e0;
}
.d-tooltip-box span button.submit {
  background-color: #333333;
  color: #e0e0e0;
  padding: 0.2em 0.8em 0.3em 0.8em;
  font-size: 0.8em;
  font-weight: 700;
  text-transform: uppercase;
  border-radius: 3px;
}
.d-tooltip-box span button.submit:hover {
  background-color: hsl(182, 58%, 42%);
}
.d-tooltip-box .tooltip-arrow {
  content: " ";
  border-style: solid;
  border-width: 6px;
  position: absolute;
  height: 0;
  width: 0;
}
.d-tooltip-box .tooltip-arrow.top {
  border-color: #111111 transparent transparent transparent;
  position: absolute;
  bottom: 0;
  left: 0;
  transform: translate(-50%, 100%);
}
.d-tooltip-box .tooltip-arrow.top.error {
  border-color: #EC4949 transparent transparent transparent;
}
.d-tooltip-box .tooltip-arrow.right {
  border-color: transparent #111111 transparent transparent;
  top: 50%;
  left: 0;
  transform: translate(-100%, -50%);
}
.d-tooltip-box .tooltip-arrow.right.error {
  border-color: transparent #EC4949 transparent transparent;
}
.d-tooltip-box .tooltip-arrow.bottom {
  border-color: transparent transparent #111111 transparent;
  position: absolute;
  top: 0;
  left: 0;
  transform: translate(-50%, -100%);
}
.d-tooltip-box .tooltip-arrow.bottom.error {
  border-color: transparent transparent #EC4949 transparent;
}
.d-tooltip-box .tooltip-arrow.left {
  border-color: transparent transparent transparent #111111;
  top: 50%;
  right: 0;
  transform: translate(100%, -50%);
}
.d-tooltip-box .tooltip-arrow.left.error {
  border-color: transparent transparent transparent #EC4949;
}

/*  CONTENT ITEM  */
.card-item--id,
.content-item--id,
.header-key,
.header--extra {
  color: #888888;
  font-size: 0.75em;
  font-weight: 600;
  letter-spacing: 0.25px;
}
.card-item--id::after,
.content-item--id::after,
.header-key::after,
.header--extra::after {
  content: "\f0c5";
  font-family: "shiro-icon";
  margin-left: 0.5em;
  opacity: 0;
  transition: opacity 0.5s ease;
}
.card-item--id:hover::after,
.content-item--id:hover::after,
.header-key:hover::after,
.header--extra:hover::after {
  opacity: 1;
}
.card-item--id.loading,
.content-item--id.loading,
.header-key.loading,
.header--extra.loading {
  opacity: 0.35;
  width: 75px;
}
.card-item--id.loading::before,
.content-item--id.loading::before,
.header-key.loading::before,
.header--extra.loading::before {
  content: " ";
}

.content-item h2 {
  line-height: 1.75;
}
.content-item > section {
  margin: 1.5em auto 2.5em 0;
  max-width: 1400px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem 3rem;
  width: 100%;
}
.content-item > section > *:nth-child(2) {
  order: -1;
}
.content-item aside {
  width: 100%;
  min-width: 1px;
}
@media all and (min-width: 1200px) {
  .content-item section {
    grid-template-columns: 4fr minmax(250px, 1fr);
  }
  .content-item section > *:nth-child(2) {
    order: 2;
  }
}
.content-item fieldset {
  outline: 0;
  border: 0;
  padding: 0.75em 2em;
  background-color: #ffffff;
  box-shadow: rgba(0, 0, 0, 0.3) 0px 3px 7px -3px;
}
.content-item fieldset:not(:last-child) {
  margin: 0 0 2em 0;
}
.content-item fieldset > details > summary {
  font-weight: 600;
  color: hsl(182, 58%, 42%);
  text-transform: uppercase;
}
.content-item fieldset > details > summary h3 {
  font-weight: 600;
  color: #c8c9ca;
  margin-left: 0.5em;
}
.content-item fieldset.loading {
  opacity: 0.55;
  min-height: 330px;
}
.content-item .shiro-form-fieldset {
  margin: 2em 0;
}
.content-item .shiro-form-fieldset.compact .shiro-form-property {
  border: 0;
  padding-top: 0;
}
.content-item .shiro-form-fieldset.compact .shiro-form-property:not(:first-child) {
  margin-top: 1em;
}
.content-item .shiro-form-fieldset.compact .shiro-form-property .shiro-form-label label {
  font-size: 0.8em;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: #4B4F55;
}
.content-item .shiro-form-fieldset.compact .shiro-form-property .shiro-form-field:not(:first-child) {
  margin-top: 0.25em;
}
.content-item .shiro-form-fieldset.compact .shiro-form-label {
  padding-top: 0.25em;
}
.content-item .shiro-form-fieldset.drag {
  position: relative;
}
.content-item .shiro-schema {
  margin-left: 1em;
  padding: 0.25em 2em 0.25em 1.75em;
  border: 1px solid #c8c9ca;
  background: #ffffff;
  border-radius: 5px;
  position: relative;
}
.content-item .shiro-schema.inherited {
  border-style: dashed;
}
.content-item .shiro-schema.fieldset {
  margin-left: 0;
  background: #f3f3f3;
  padding: 0.5em 1.5em 0.5em 2em;
  border: none;
}
.content-item .shiro-schema.fieldset:not(:first-child) {
  margin-top: 2em;
  margin-bottom: 0.5em;
}
.content-item .shiro-schema.fieldset .shiro-schema-header {
  display: flex;
  justify-content: space-between;
}
.content-item .shiro-schema.fieldset .shiro-schema-header .shiro-schema-header--language .fieldset-label span {
  height: 1em;
}
.content-item .shiro-schema.fieldset .shiro-schema-header .shiro-schema-buttons {
  justify-self: flex-end;
}
.content-item .shiro-schema.fieldset input.language {
  background: #fff;
}
.content-item .shiro-schema:not(:first-child) {
  margin-top: 0.5em;
}
.content-item .shiro-schema:hover {
  box-shadow: rgba(0, 0, 0, 0.3) 0px 3px 7px -3px;
}
.content-item .shiro-schema:hover .shiro-schema-drag {
  opacity: 1;
}
.content-item .shiro-schema:hover .shiro-schema-header--language > div label {
  opacity: 1 !important;
}
.content-item .shiro-schema:hover .shiro-schema-header--language > div .fieldset::-moz-placeholder {
  color: #a8a8a8;
}
.content-item .shiro-schema:hover .shiro-schema-header--language > div .fieldset::placeholder {
  color: #a8a8a8;
}
.content-item .shiro-schema .shiro-schema-header {
  position: relative;
  padding-right: 3em;
  display: grid;
  grid-template-columns: 20% 15fr minmax(7rem, 18%) minmax(5rem, 5%) minmax(2rem, 2%) minmax(4rem, 4%) minmax(8rem, 10%) minmax(2rem, 3%);
  align-items: baseline;
  padding: 0;
  gap: 1em;
}
.content-item .shiro-schema .shiro-schema-header--btn {
  color: #e0e0e0;
  padding: 0.1em 0.15em;
}
.content-item .shiro-schema .shiro-schema-header--btn.fieldset {
  color: #888888;
}
.content-item .shiro-schema .shiro-schema-header--btn.selected, .content-item .shiro-schema .shiro-schema-header--btn:hover {
  color: #111111;
}
.content-item .shiro-schema .shiro-schema-header--btn.visible {
  color: hsl(182, 58%, 42%);
}
.content-item .shiro-schema .shiro-schema-header--btn.faded:hover {
  color: none;
}
.content-item .shiro-schema .shiro-schema-header--btn.unique {
  font-size: 1.1em;
  padding: 0.1em 0.1em;
}
.content-item .shiro-schema .shiro-schema-header--btn.unique.selected, .content-item .shiro-schema .shiro-schema-header--btn.unique:hover {
  color: #e79a09;
}
.content-item .shiro-schema .shiro-schema-header--id {
  font-weight: 700;
  font-size: 1.1em;
  color: #333333;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
}
.content-item .shiro-schema .shiro-schema-header--id .inherited {
  margin-left: 0.5em;
  font-size: 0.7em;
  font-weight: 500;
  color: var(--shiro-color-theme);
}
.content-item .shiro-schema .shiro-schema-header--id.custom {
  color: #4B4F55;
}
.content-item .shiro-schema .shiro-schema-header--id.system {
  color: #888888;
  font-style: italic;
  font-weight: 500;
}
.content-item .shiro-schema .shiro-schema-header--language {
  display: flex;
  gap: 0.25em;
}
.content-item .shiro-schema .shiro-schema-header--language .fieldset-label {
  display: flex;
  margin-right: 2em;
}
.content-item .shiro-schema .shiro-schema-header--language .fieldset-label .language {
  align-self: center;
  margin-right: 0.5em;
  font-size: 0.65em;
  text-transform: uppercase;
}
.content-item .shiro-schema .shiro-schema-header--language > div {
  display: flex;
  align-items: baseline;
  position: relative;
}
.content-item .shiro-schema .shiro-schema-header--language > div label {
  font-weight: 600;
  color: #a8a8a8;
  font-size: 0.7em;
  text-transform: uppercase;
  margin-right: 0.5em;
  transition: all 0.3s ease;
  position: absolute;
  left: 0.25em;
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
}
.content-item .shiro-schema .shiro-schema-header--language > div input {
  width: 100%;
  border: 1px solid transparent;
  border-radius: 3px;
  outline: 0;
  padding: 0 0.25em;
  background-color: transparent;
  color: #111111;
}
.content-item .shiro-schema .shiro-schema-header--language > div input:focus {
  border: 1px solid #e0e0e0;
}
.content-item .shiro-schema .shiro-schema-header--language > div input[value=""] + label {
  opacity: 0;
}
.content-item .shiro-schema .shiro-schema-header--language > div input.language {
  padding-left: 1.25em;
}
.content-item .shiro-schema .shiro-schema-header--language .fieldset {
  font-weight: 700;
  color: #111111;
}
.content-item .shiro-schema .shiro-schema-header--language .fieldset::-moz-placeholder {
  font-weight: 400;
  color: #ffffff;
  -moz-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.content-item .shiro-schema .shiro-schema-header--language .fieldset::placeholder {
  font-weight: 400;
  color: #ffffff;
  transition: all 0.3s ease;
}
.content-item .shiro-schema .shiro-schema-header .shiro-schema-buttons button.faded {
  opacity: 0.5;
}
.content-item .shiro-schema .shiro-schema-header--inverseId {
  text-transform: uppercase;
  font-weight: 400;
  font-size: 0.6em;
  margin-left: 0.5em;
  color: #a8a8a8;
}
.content-item .shiro-schema .shiro-schema-header--visibility select {
  padding: 0;
  background-color: transparent;
  color: #111111;
}
.content-item .shiro-schema .shiro-schema-header--buttons {
  white-space: nowrap;
}
.content-item .shiro-schema .shiro-schema-header--controller {
  color: hsl(182, 58%, 42%);
  font-size: 0.85em;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
}
.content-item .shiro-schema .shiro-schema-header--controller-type {
  font-weight: 700;
  font-size: 0.8em;
  text-transform: uppercase;
}
.content-item .shiro-schema .shiro-schema-header--availability {
  align-self: center;
  white-space: nowrap;
}
.content-item .shiro-schema .shiro-schema-header--availability span {
  display: inline-block;
  width: 6px;
  height: 12px;
  background-color: #e0e0e0;
  margin: 0px 1px;
}
.content-item .shiro-schema .shiro-schema-header--availability span.hidden {
  background-color: hsl(182, 58%, 42%);
}
.content-item .shiro-schema .shiro-schema-body {
  padding: 1em 1em 2.5em 0;
  border-top: 1px solid #e0e0e0;
  display: none;
}
.content-item .shiro-schema .shiro-schema-body--details {
  background-color: #f3f3f3;
  margin: 0.75em -1em 1em -1em;
  padding: 1em;
}
.content-item .shiro-schema .shiro-schema-body .shiro-form-property:not(:first-child) {
  margin-top: 0.5em;
}
.content-item .shiro-schema.expanded .shiro-schema-body {
  display: block;
}
.content-item .shiro-schema .shiro-schema-drag {
  cursor: grab;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translate(-120%, -50%);
  font-size: 0.9em;
  opacity: 0;
  transition: all 0.3s ease;
}
.content-item .shiro-schema .shiro-schema-collapse {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  cursor: pointer;
  padding: 0.5em 0.65em;
  z-index: 2;
}
.content-item .shiro-schema .shiro-schema-collapse::before {
  content: "\e800";
  width: 25px;
  height: 25px;
  font-family: "shiro-icon";
  font-style: normal;
  font-weight: normal;
  color: #888888;
  transition: color 0.3s ease;
  cursor: pointer;
}
.content-item .shiro-schema .shiro-schema-delete {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  right: -2em;
  cursor: pointer;
  padding: 0.5em;
  z-index: 2;
}
.content-item .shiro-schema .shiro-schema-delete::before {
  content: "\e82c";
  width: 25px;
  height: 25px;
  font-family: "shiro-icon";
  font-style: normal;
  font-weight: normal;
  color: #888888;
  transition: color 0.3s ease;
  cursor: pointer;
}
.content-item .shiro-schema.expanded .shiro-schema-collapse::before {
  content: "\e803";
}
.content-item .shiro-schema .shiro-form-value > .dropdown {
  border: 0 !important;
}
.content-item .shiro-schema .shiro-form-property {
  margin-top: 0;
}
.content-item .shiro-form-property {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0 1rem;
}
.content-item .shiro-form-property:first-child {
  margin-top: 0;
}
.content-item .shiro-form-property:not(:first-child) {
  margin-top: 1.5em;
  border-top: 1px dotted #e0e0e0;
  padding-top: 1.5em;
}
.content-item .shiro-form-property .shiro-btn:not(.shiro-form-total-relations) {
  opacity: 0;
}
.content-item .shiro-form-property .help-button {
  opacity: 1 !important;
  transition: color 0.5s;
  color: #666;
  font-size: 1.1em;
}
.content-item .shiro-form-property .help-button:hover {
  color: #AAA;
}
.content-item .shiro-form-property .shiro-form-total-relations .items {
  margin-left: 0.35em;
  font-weight: lighter;
}
.content-item .shiro-form-property .shiro-form-total-relations .items::before {
  content: "(";
}
.content-item .shiro-form-property .shiro-form-total-relations .items::after {
  content: ")";
}
.content-item .shiro-form-property .shiro-form-label .added {
  color: hsl(182, 38%, 42%);
  font-size: 0.85em;
}
.content-item .shiro-form-property .shiro-form-label .deleted {
  color: #EC4949;
  font-size: 0.85em;
}
.content-item .shiro-form-property:hover .shiro-btn {
  opacity: 1;
}
.content-item .shiro-form-property--separator {
  display: block;
  height: 2px;
  width: 100%;
  background-color: #ffffff;
  margin: 0.75em 0;
}
.content-item .shiro-form-property .shiro-form-label {
  font-size: 0.95em;
  position: relative;
}
.content-item .shiro-form-property .shiro-form-label > div {
  margin-bottom: 0.65em;
  position: sticky;
  top: 3.5em;
}
.content-item .shiro-form-property .shiro-form-label > div .outline {
  border-color: transparent;
  padding: 0.2em;
}
.content-item .shiro-form-property .shiro-form-fields {
  display: grid;
  grid-template-rows: auto;
  gap: 0.5em;
  width: auto;
  min-width: 1px;
  flex: 1 1 70%;
  min-width: 0;
  position: relative;
  align-self: center;
}
.content-item .shiro-form-property .shiro-form-fields.gallery {
  grid-template-columns: repeat(auto-fill, minmax(175px, 1fr));
}
.content-item .shiro-form-property .shiro-form-fields.gallery .shiro-form-field {
  align-items: stretch !important;
}
.content-item .shiro-form-property .shiro-form-fields.gallery .shiro-form-value {
  flex-direction: column;
}
.content-item .shiro-form-property .shiro-form-fields.gallery .shiro-form-value .shiro-form-drag {
  display: none;
}
.content-item .shiro-form-property .shiro-form-fields.gallery .shiro-form-value .shiro-form-delete {
  display: none;
}
.content-item .shiro-form-property .shiro-form-fields.gallery .shiro-form-tools {
  border-left: 1px solid #c8c9ca;
  border-top: 1px solid #c8c9ca;
  border-radius: 0.5em 0 0.25em 0;
  position: absolute;
  bottom: 1px;
  right: 1px;
  font-size: 0.75em;
}
.content-item .shiro-form-property .shiro-form-fields.gallery .shiro-form-relation {
  flex-direction: column;
  align-items: start !important;
}
.content-item .shiro-form-property .shiro-form-fields.gallery .shiro-form-relation--thumb {
  max-width: initial !important;
}
.content-item .shiro-form-property .shiro-form-fields.gallery .shiro-form-relation--name {
  width: 100%;
}
.content-item .shiro-form-property .shiro-form-fields.gallery .shiro-form-relation--type {
  padding: 0.25em 1em 0.5em 1em !important;
}
.content-item .shiro-form-property .shiro-form-fields.gallery .shiro-form-all {
  grid-column: 1/-1;
}
.content-item .shiro-form-property .shiro-form-fields .dropdown {
  overflow: hidden;
  border: 1px solid #c8c9ca;
  border-radius: 4px;
}
.content-item .shiro-form-property .shiro-form-fields .dropdown .label {
  font-weight: 700;
  margin: 0;
}
.content-item .shiro-form-property .shiro-form-fields .changed .dropdown {
  border-left: 4px solid #4B4F55;
  border-color: #4B4F55;
}
.content-item .shiro-form-property .shiro-form-fields .shiro-form-all {
  display: block;
  border: 1px solid #c8c9ca;
  color: #4B4F55;
  border-radius: 5px;
  margin: 1.25em auto 0 auto;
  padding: 0.2em 1.5em;
  font-size: 0.7em;
  font-weight: 400;
  text-transform: uppercase;
}
.content-item .shiro-form-property .shiro-form-fields .shiro-form-all span {
  font-weight: 700;
}
.content-item .shiro-form-property .shiro-form-fields .shiro-form-all:hover {
  color: #000000;
  border: 1px solid #4B4F55;
}
.content-item .shiro-form-property .shiro-form-fields .shiro-form-field {
  display: flex;
  gap: 0.75em;
  width: 100%;
  justify-content: space-between;
  align-items: center;
  width: auto;
  min-width: 1px;
  position: relative;
}
.content-item .shiro-form-property .shiro-form-fields .shiro-form-field.stack .shiro-form-value {
  border: 0;
  display: block;
}
.content-item .shiro-form-property .shiro-form-fields .shiro-form-field.stack .shiro-form-value > * {
  display: inline-block;
  padding-top: 0;
  padding-bottom: 0;
  padding-right: 0;
  width: auto;
}
.content-item .shiro-form-property .shiro-form-fields .shiro-form-field.stack .shiro-form-value span {
  font-weight: 700;
}
.content-item .shiro-form-property .shiro-form-fields .shiro-form-field.multiple {
  display: block;
}
.content-item .shiro-form-property .shiro-form-fields .shiro-form-field.multiple:not(:last-child) {
  margin-bottom: 0.25em;
}
.content-item .shiro-form-property .shiro-form-fields .shiro-form-field.multiple:last-child {
  margin-bottom: 0.5em;
}
.content-item .shiro-form-property .shiro-form-fields .shiro-form-field > button.shiro-form-delete, .content-item .shiro-form-property .shiro-form-fields .shiro-form-field > span {
  opacity: 0;
  color: #111111;
  transition: all 0.3s ease;
}
.content-item .shiro-form-property .shiro-form-fields .shiro-form-field > button.shiro-form-delete.boolean-input, .content-item .shiro-form-property .shiro-form-fields .shiro-form-field > span.boolean-input {
  opacity: 1;
  display: flex;
  align-items: center;
}
.content-item .shiro-form-property .shiro-form-fields .shiro-form-field:hover > button:not(.shiro-btn-add), .content-item .shiro-form-property .shiro-form-fields .shiro-form-field:hover > span {
  opacity: 0.5;
}
.content-item .shiro-form-property .shiro-form-fields .shiro-form-field > button.shiro-form-undo {
  opacity: 0.3;
}
.content-item .shiro-form-property .shiro-form-fields .shiro-form-field > button.shiro-form-undo:hover {
  color: #EC4949;
  opacity: 1;
}
.content-item .shiro-form-property .shiro-form-fields .shiro-form-field > button:hover, .content-item .shiro-form-property .shiro-form-fields .shiro-form-field > span:hover {
  opacity: 1;
}
.content-item .shiro-form-property .shiro-form-fields .shiro-form-field > button.shiro-btn-add {
  opacity: 1;
  background-color: #e0e0e0;
  background-color: rgba(0, 0, 0, 0.06);
  color: #888888;
  font-size: 0.8em;
  font-weight: 600;
  padding: 0.3em 1.2em;
  border-radius: 2em;
}
.content-item .shiro-form-property .shiro-form-fields .shiro-form-field > button.shiro-btn-add:hover {
  background-color: hsl(182, 58%, 42%);
  color: #ffffff;
}
.content-item .shiro-form-property .shiro-form-fields .shiro-form-field > span.shiro-form-drag {
  position: absolute;
  top: 0.8em;
  left: 0;
  cursor: grab;
}
.content-item .shiro-form-property .shiro-form-fields .shiro-form-field > button.shiro-form-undo, .content-item .shiro-form-property .shiro-form-fields .shiro-form-field > button.shiro-form-delete {
  position: absolute;
  top: 0.8em;
  right: 0;
}
.content-item .shiro-form-property .shiro-form-fields .shiro-form-field.update .shiro-form-value {
  border-left: 4px solid #4B4F55;
}
.content-item .shiro-form-property .shiro-form-fields .shiro-form-field.deleted .shiro-form-value {
  border-left: 4px solid #EC4949;
}
.content-item .shiro-form-property .shiro-form-fields .shiro-form-field.deleted .shiro-form-value::after {
  content: " ";
  position: absolute;
  inset: 1px 1px 1px 4px;
  border-radius: 0 2px 2px 0;
  background-color: rgba(255, 255, 255, 0.8);
}
.content-item .shiro-form-property .shiro-form-fields .shiro-form-field.deleted .shiro-form-value.borderless::after {
  inset: 1px 0px 1px 0px;
}
.content-item .shiro-form-property .shiro-form-fields .shiro-form-field.changed .shiro-form-value {
  border-left: 4px solid #4B4F55;
  border-color: #4B4F55;
}
.content-item .shiro-form-property .shiro-form-fields .shiro-form-field.error .shiro-form-value {
  border-left: 4px solid #EC4949;
  border-color: #EC4949;
}
.content-item .shiro-form-property .shiro-form-fields .shiro-form-field .route {
  padding: 0.2em 0.5em;
}
.content-item .shiro-form-property .shiro-form-fields .shiro-form-field .route .route-id {
  margin-left: 0.5em;
  font-size: 0.75em;
}
.content-item .shiro-form-property .shiro-form-fields .shiro-form-field .shiro-form-value {
  flex: 1 1 70%;
  border: 1px solid #c8c9ca;
  border-radius: 4px;
  display: flex;
  justify-content: space-between;
  width: 100%;
  background-color: #ffffff;
}
.content-item .shiro-form-property .shiro-form-fields .shiro-form-field .shiro-form-value > span {
  width: 100%;
  display: flex;
  align-items: center;
  padding: 0.25em 0.75em;
}
.content-item .shiro-form-property .shiro-form-fields .shiro-form-field .shiro-form-value > textarea, .content-item .shiro-form-property .shiro-form-fields .shiro-form-field .shiro-form-value > select, .content-item .shiro-form-property .shiro-form-fields .shiro-form-field .shiro-form-value > input, .content-item .shiro-form-property .shiro-form-fields .shiro-form-field .shiro-form-value > .plain-text > input, .content-item .shiro-form-property .shiro-form-fields .shiro-form-field .shiro-form-value > .plain-text > textarea {
  width: 100%;
  border: 0;
  outline: 0;
  background: transparent;
  padding: 0.25em 0.75em;
  font-weight: 700;
  color: #333333;
}
.content-item .shiro-form-property .shiro-form-fields .shiro-form-field .shiro-form-value > .plain-text > textarea {
  min-height: 15em;
  padding-right: 5em;
  min-width: 100%;
  font-weight: 600;
}
.content-item .shiro-form-property .shiro-form-fields .shiro-form-field .shiro-form-value > input[readonly=true] {
  color: #666666;
  font-weight: 400;
}
.content-item .shiro-form-property .shiro-form-fields .shiro-form-field .shiro-form-value.checkbox {
  border-color: transparent;
  background-color: transparent;
  padding: 0.25em 0.5em;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
  gap: 0.5em 1em;
}
.content-item .shiro-form-property .shiro-form-fields .shiro-form-field .shiro-form-value.checkbox input[type=checkbox] {
  display: none;
}
.content-item .shiro-form-property .shiro-form-fields .shiro-form-field .shiro-form-value.checkbox input[type=checkbox] + label {
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  position: relative;
  font-size: 0.85em;
  cursor: pointer;
}
.content-item .shiro-form-property .shiro-form-fields .shiro-form-field .shiro-form-value.checkbox input[type=checkbox] + label::before {
  content: "";
  display: inline-block;
  width: 0.9em;
  height: 0.9em;
  margin-right: 0.5em;
  border: 1px solid #888888;
  background-color: #ffffff;
  border-radius: 3px;
}
.content-item .shiro-form-property .shiro-form-fields .shiro-form-field .shiro-form-value.checkbox input[type=checkbox]:checked + label::after {
  content: "\e808";
  font-size: 1.2em;
  font-family: "shiro-icon";
  display: inline-block;
  position: absolute;
  left: 0.1em;
  top: 0;
  color: hsl(182, 58%, 42%);
  text-shadow: -1px -1px 0 #ffffff, 1px -1px 0 #ffffff, -1px 1px 0 #ffffff, 1px 1px 0 #ffffff;
}
.content-item .shiro-form-property .shiro-form-fields .shiro-form-field .shiro-form-value.checkbox input[type=text] {
  border: 1px solid #a8a8a8;
  border-radius: 3px;
  padding: 0 0.5em;
  width: 100%;
}
.content-item .shiro-form-property .shiro-form-fields .shiro-form-field .shiro-form-value.radio {
  border-color: transparent;
  background-color: transparent;
  padding: 0.25em 0.5em;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
  gap: 1em;
}
.content-item .shiro-form-property .shiro-form-fields .shiro-form-field .shiro-form-value.radio input[type=radio] {
  display: none;
}
.content-item .shiro-form-property .shiro-form-fields .shiro-form-field .shiro-form-value.radio input[type=radio] + label {
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  position: relative;
  font-size: 0.85em;
  display: flex;
  cursor: pointer;
}
.content-item .shiro-form-property .shiro-form-fields .shiro-form-field .shiro-form-value.radio input[type=radio] + label::before {
  content: "";
  display: inline-block;
  width: 1em;
  height: 1em;
  margin-right: 0.5em;
  border: 1px solid #888888;
  background-color: #ffffff;
  border-radius: 50%;
}
.content-item .shiro-form-property .shiro-form-fields .shiro-form-field .shiro-form-value.radio input[type=radio]:checked + label::after {
  content: "";
  display: inline-block;
  width: 0.6em;
  height: 0.6em;
  background-color: hsl(182, 58%, 42%);
  border-radius: 50%;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translate(50%, -50%);
}
.content-item .shiro-form-property .shiro-form-fields .shiro-form-field .shiro-form-value.boolean {
  border: 0;
  padding: 0.25em 0;
}
.content-item .shiro-form-property .shiro-form-fields .shiro-form-field .shiro-form-value.boolean label {
  content: " ";
  display: inline-block;
  position: relative;
  width: 2.3em;
  height: 1.2em;
  border-radius: 1em;
  border: 0.2em solid #e0e0e0;
  background: #e0e0e0;
  cursor: pointer;
}
.content-item .shiro-form-property .shiro-form-fields .shiro-form-field .shiro-form-value.boolean input[type=checkbox] {
  display: none;
}
.content-item .shiro-form-property .shiro-form-fields .shiro-form-field .shiro-form-value.boolean input[type=checkbox] + label::after {
  background: #ffffff;
  content: " ";
  display: inline-block;
  width: 0.8em;
  height: 0.8em;
  border-radius: 1em;
  position: absolute;
  left: 0;
  top: 0;
  transition: all 0.3s ease;
}
.content-item .shiro-form-property .shiro-form-fields .shiro-form-field .shiro-form-value.boolean input[type=checkbox]:checked + label {
  background: hsl(182, 58%, 42%);
  border-color: hsl(182, 58%, 42%);
  transition: all 0.3s ease;
}
.content-item .shiro-form-property .shiro-form-fields .shiro-form-field .shiro-form-value.boolean input[type=checkbox]:checked + label::after {
  left: auto;
  right: 0;
}
.content-item .shiro-form-property .shiro-form-fields .shiro-form-field .shiro-form-value .shiro-form-tools {
  flex: 1;
  white-space: nowrap;
  background-color: rgba(224, 224, 224, 0.9);
  padding: 0 0.25em;
  display: flex;
  align-items: center;
  border-left: 1px solid #c8c9ca;
}
.content-item .shiro-form-property .shiro-form-fields .shiro-form-field .shiro-form-value .shiro-form-tools span, .content-item .shiro-form-property .shiro-form-fields .shiro-form-field .shiro-form-value .shiro-form-tools button {
  line-height: 2;
  color: #888888;
  font-size: 0.9em;
  font-weight: 700;
  display: inline-block;
  text-align: center;
  background-color: transparent;
}
.content-item .shiro-form-property .shiro-form-fields .shiro-form-field .shiro-form-value .shiro-form-tools span.language,
.content-item .shiro-form-property .shiro-form-fields .shiro-form-field .shiro-form-value .shiro-form-tools button.language {
  font-size: 0.6em;
  letter-spacing: 1px;
  text-transform: uppercase;
}
.content-item .shiro-form-property .shiro-form-fields .shiro-form-field .shiro-form-value .shiro-form-tools button:hover {
  color: #333333;
}
.content-item .shiro-form-property .shiro-form-fields .shiro-form-field .shiro-form-value .pop-tools {
  position: absolute;
  top: 0;
  right: 0;
  border: 1px solid #c8c9ca;
  border-radius: 0 4px 0 6px;
  display: flex;
  background-color: #fff;
  z-index: 9;
  overflow: hidden;
}
.content-item .shiro-form-property .shiro-form-fields .shiro-form-field .shiro-form-value .pop-tools .shiro-form-attr {
  border: 0;
}
.content-item .shiro-form-property .shiro-form-fields .shiro-form-field .shiro-form-value .pop-tools .shiro-form-tools {
  padding: 0.2em 0.4em;
}
.content-item .shiro-form-property .shiro-form-fields .shiro-form-field .shiro-form-value .shiro-form-attr {
  flex: 1;
  white-space: nowrap;
  background-color: rgba(224, 224, 224, 0.9);
  background-color: transparent;
  display: flex;
  align-items: center;
  border-left: 1px solid #c8c9ca;
  margin-right: -1px;
}
.content-item .shiro-form-property .shiro-form-fields .shiro-form-field .shiro-form-value .shiro-form-attr .pillbox {
  border: 1px solid #ccc;
  border-radius: 1em;
  font-size: 0.65rem;
  margin: 0 0.3em 0 0.3em;
  padding: 0.2em 0.5em;
  display: flex;
  flex-wrap: nowrap;
  max-width: 15em !important;
}
.content-item .shiro-form-property .shiro-form-fields .shiro-form-field .shiro-form-value .shiro-form-attr .pillbox span {
  overflow: hidden !important;
  text-overflow: ellipsis;
}
.content-item .shiro-form-property .shiro-form-fields .shiro-form-field .shiro-form-value .shiro-form-attr .pillbox button {
  padding: 0;
  color: #ccc !important;
}
.content-item .shiro-form-property .shiro-form-fields .shiro-form-field .shiro-form-value .shiro-form-attr .pillbox button:hover {
  color: #000 !important;
}
.content-item .shiro-form-property .shiro-form-fields .shiro-form-field .shiro-form-value .shiro-form-attr button {
  color: #c8c9ca;
  font-size: 0.9em;
  font-weight: 700;
  transition: all 1s ease;
  padding: 0 0.3em;
}
.content-item .shiro-form-property .shiro-form-fields .shiro-form-field .shiro-form-value .shiro-form-attr button > span {
  margin-left: 0.35em;
  font-size: 0.9em;
  font-weight: 600;
}
.content-item .shiro-form-property .shiro-form-fields .shiro-form-field .shiro-form-value .shiro-form-attr > span {
  color: #888888;
  font-size: 0.9em;
  font-weight: 700;
  text-align: center;
  transition: all 2s ease;
}
.content-item .shiro-form-property .shiro-form-fields .shiro-form-field .shiro-form-value .shiro-form-attr > span:not(.active) {
  max-width: 0px;
  overflow: hidden;
}
.content-item .shiro-form-property .shiro-form-fields .shiro-form-field .shiro-form-value .shiro-form-attr > span.active button {
  color: #666666;
}
.content-item .shiro-form-property .shiro-form-fields .shiro-form-field .shiro-form-value .shiro-form-attr > span button:hover {
  color: #111111;
}
.content-item .shiro-form-property .shiro-form-fields .shiro-form-field .shiro-form-value .shiro-form-relation {
  display: flex;
  text-decoration: none;
  align-items: center;
  width: 100%;
  border: 0;
  outline: 0;
  background: transparent;
  font-weight: 700;
  color: #333333;
}
.content-item .shiro-form-property .shiro-form-fields .shiro-form-field .shiro-form-value .shiro-form-relation--thumb {
  position: relative;
  background: #e0e0e0;
  display: flex;
  width: 100%;
  max-width: 4em;
  flex-shrink: 0;
}
.content-item .shiro-form-property .shiro-form-fields .shiro-form-field .shiro-form-value .shiro-form-relation--thumb img {
  position: absolute;
  inset: 0 0 0 0;
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.content-item .shiro-form-property .shiro-form-fields .shiro-form-field .shiro-form-value .shiro-form-relation--thumb button.shiro-btn-zoom {
  inset: 5% 0 0 0;
  font-size: 1.2em;
}
.content-item .shiro-form-property .shiro-form-fields .shiro-form-field .shiro-form-value .shiro-form-relation--name {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  padding: 0.25em 0 0.25em 0.75em;
}
.content-item .shiro-form-property .shiro-form-fields .shiro-form-field .shiro-form-value .shiro-form-relation--name.taxonomy {
  direction: rtl;
}
.content-item .shiro-form-property .shiro-form-fields .shiro-form-field .shiro-form-value .shiro-form-relation--name.taxonomy .taxonomy--path {
  font-size: 0.8em;
  font-weight: 600;
  white-space: nowrap;
  text-overflow: ellipsis;
  color: #a8a8a8;
}
.content-item .shiro-form-property .shiro-form-fields .shiro-form-field .shiro-form-value .shiro-form-relation--name.taxonomy .taxonomy--path i {
  opacity: 0.5;
}
.content-item .shiro-form-property .shiro-form-fields .shiro-form-field .shiro-form-value .shiro-form-relation--type {
  color: hsl(182, 58%, 42%);
  text-transform: uppercase;
  font-size: 0.6em;
  padding: 0.25em 0.5em;
  white-space: nowrap;
}
.content-item .shiro-form-property .shiro-form-fields .shiro-form-field .shiro-form-value .shiro-form-relation:has(.shiro-form-relation--date) {
  justify-content: space-between;
}
.content-item .shiro-form-property .shiro-form-fields .shiro-form-field .shiro-form-value .shiro-form-relation--date {
  display: flex;
  flex-grow: 10;
  justify-content: end;
  color: #666666;
  font-size: 0.75em;
  padding: 0.25em 1em;
}
.content-item .shiro-form-property .shiro-form-fields .shiro-form-field .shiro-form-value .shiro-form-relation--date i {
  color: #a8a8a8;
}
.content-item .shiro-form-property .shiro-form-fields .shiro-form-field .shiro-form-value.borderless {
  border: none;
}
.content-item .shiro-form-property .shiro-form-fields .shiro-form-field.active .shiro-form-attr span, .content-item .shiro-form-property .shiro-form-fields .shiro-form-field:hover .shiro-form-attr span {
  max-width: 300px !important;
}
.content-item .shiro-form-property .shiro-form-fields .shiro-form-field details > summary {
  list-style: none;
  position: relative;
  cursor: pointer;
  outline: 0;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  display: inline-block;
}
.content-item .shiro-form-property .shiro-form-fields .shiro-form-field details > summary::marker, .content-item .shiro-form-property .shiro-form-fields .shiro-form-field details > summary::-webkit-details-marker {
  display: none;
}
.content-item .shiro-form-property .shiro-form-fields .shiro-form-field details > summary::after {
  content: "\e800";
  width: 25px;
  height: 25px;
  font-family: "shiro-icon";
  font-style: normal;
  font-weight: normal;
  font-size: 1em;
  line-height: 1.5em;
  text-align: center;
  margin-left: 0.5em;
  color: #4B4F55;
  transition: color 0.3s ease;
}
.content-item .shiro-form-property .shiro-form-fields .shiro-form-field details > summary .title {
  font-weight: 700;
}
.content-item .shiro-form-property .shiro-form-fields .shiro-form-field details > summary .total {
  font-size: 0.9em;
  color: #4B4F55;
  margin-left: 0.5em;
}
.content-item .shiro-form-property .shiro-form-fields .shiro-form-field details[open] > summary::after {
  content: "\e803";
}
@media all and (min-width: 1024px) {
  .content-item .shiro-form-property {
    grid-template-columns: minmax(200px, 1fr) 4fr;
  }
  .content-item .shiro-form-property .shiro-form-label:empty + .shiro-form-fields,
  .content-item .shiro-form-property > div:only-child {
    grid-column: span 2 !important;
  }
}
.content-item .shiro-form-sticky {
  position: sticky;
  top: 6em;
  width: 100%;
}
.content-item .shiro-form-sticky .shiro-view-selection {
  position: absolute;
  top: -0.5em;
  right: 0;
  z-index: 5;
  transform: translateY(-100%);
  display: flex;
  gap: 0.5em;
  font-size: 1.3em;
}
.content-item .shiro-form-sticky .shiro-view-selection button {
  color: #c8c9ca;
}
.content-item .shiro-form-sticky .shiro-view-selection button.active, .content-item .shiro-form-sticky .shiro-view-selection button:hover {
  color: #000000;
}
.content-item .shiro-form-sticky .shiro-view-selection button span {
  display: none;
}
.content-item .shiro-form-sticky .shiro-view-selection--form::before {
  font-family: "shiro-icon";
  content: "\e805";
}
.content-item .shiro-form-sticky .shiro-view-selection--taxonomy::before {
  font-family: "shiro-icon";
  content: "\e837";
  font-size: 0.9em;
}
.content-item .shiro-form-sticky .shiro-view-selection--tracks::before {
  font-family: "shiro-icon";
  content: "\e849";
}
@media all and (min-width: 640px) {
  .content-item .shiro-form-sidebar {
    display: flex;
    flex-flow: row wrap;
    justify-content: space-between;
  }
}
.content-item .shiro-form-sidebar {
  width: 100%;
  background-color: #ffffff;
  box-shadow: rgba(0, 0, 0, 0.3) 0px 3px 7px -3px;
}
.content-item .shiro-form-sidebar > :nth-child(1) {
  flex: 1 0 15%;
  min-width: 250px;
}
.content-item .shiro-form-sidebar > :nth-child(2) {
  flex: 3 1 50%;
  width: 100%;
  min-width: 1px;
}
.content-item .shiro-form-sidebar:not(:empty) {
  margin-bottom: 2em;
}
.content-item .shiro-form-field {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  flex-wrap: nowrap;
  position: relative;
}
.content-item .shiro-form-field > button.shiro-form-delete, .content-item .shiro-form-field > span {
  opacity: 0;
  color: #111111;
  transition: all 0.3s ease;
}
.content-item .shiro-form-field > button.shiro-form-undo {
  opacity: 0.3;
  transition: all 0.3s ease;
}
.content-item .shiro-form-field:hover > button, .content-item .shiro-form-field:hover > span {
  opacity: 0.5;
}
.content-item .shiro-form-field > button:hover, .content-item .shiro-form-field > span:hover {
  opacity: 1;
}
.content-item .shiro-form-field > span.shiro-form-drag {
  position: absolute;
  top: 50%;
  left: 0;
  transform: translate(-100%, -50%);
  cursor: grab;
}
.content-item .shiro-form-field > button.shiro-form-undo, .content-item .shiro-form-field > button.shiro-form-delete {
  position: absolute;
  top: 50%;
  right: 0;
  transform: translate(105%, -50%);
}
.content-item .shiro-form-field .plain-text {
  background: #fff;
}
.content-item .shiro-form-field .shiro-form-value {
  flex: 1 1 70%;
  border: 1px solid #c8c9ca;
  border-radius: 4px;
  display: flex;
  justify-content: space-between;
}
.content-item .shiro-form-field .shiro-form-value > textarea, .content-item .shiro-form-field .shiro-form-value > select, .content-item .shiro-form-field .shiro-form-value > input {
  width: 100%;
  border: 0;
  outline: 0;
  background: transparent;
  padding: 0.25em 0.75em;
  font-weight: 700;
  font-family: inherit;
  color: #333333;
}
.content-item .shiro-form-field .shiro-form-value .shiro-form-relation {
  display: flex;
  text-decoration: none;
  align-items: center;
  border: 0;
  outline: 0;
  background-color: yellow;
  font-weight: 700;
  color: #333333;
  width: 100%;
  min-width: 0;
}
.content-item .shiro-form-field .shiro-form-value .shiro-form-relation--thumb {
  position: relative;
  background: #e0e0e0;
  display: block;
  width: 100%;
  max-width: 4em;
}
.content-item .shiro-form-field .shiro-form-value .shiro-form-relation--thumb::before {
  content: "";
  display: block;
  width: 1px;
  padding-top: 75%;
}
.content-item .shiro-form-field .shiro-form-value .shiro-form-relation--thumb img {
  position: absolute;
  inset: 0 0 0 0;
  display: block;
}
.content-item .shiro-form-field .shiro-form-value .shiro-form-relation--thumb button.shiro-btn-zoom {
  inset: 5% 0 0 0;
  font-size: 1.2em;
}
.content-item .shiro-form-field .shiro-form-value .shiro-form-relation--name {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  padding: 0.25em 0 0.25em 0.75em;
}
.content-item .shiro-form-field .shiro-form-value .shiro-form-relation--name.taxonomy {
  direction: rtl;
}
.content-item .shiro-form-field .shiro-form-value .shiro-form-relation--name.taxonomy span {
  font-weight: 400;
  white-space: nowrap;
  text-overflow: ellipsis;
}
.content-item .shiro-form-field .shiro-form-value .shiro-form-relation--type {
  color: hsl(182, 58%, 42%);
  text-transform: uppercase;
  font-size: 0.6em;
  padding: 0.25em 1em;
}
.content-item .shiro-form-field .shiro-form-value .shiro-form-tools {
  flex: 0;
  white-space: nowrap;
  background-color: rgba(224, 224, 224, 0.9);
  padding: 0 0.25em;
  display: flex;
  align-items: center;
  border-left: 1px solid #c8c9ca;
}
.content-item .shiro-form-field .shiro-form-value .shiro-form-tools span, .content-item .shiro-form-field .shiro-form-value .shiro-form-tools button {
  line-height: 2;
  color: #888888;
  font-size: 0.9em;
  font-weight: 700;
  display: inline-block;
  text-align: center;
}
.content-item .shiro-form-field .shiro-form-value .shiro-form-tools button.language {
  font-size: 0.6em;
  letter-spacing: 1px;
}
.content-item .shiro-form-field .shiro-form-value .shiro-form-tools button:hover {
  color: #333333;
}
.content-item .shiro-form-field .shiro-form-value .shiro-form-attr {
  flex: 0;
  white-space: nowrap;
  background-color: rgba(224, 224, 224, 0.9);
  background-color: transparent;
  display: flex;
  align-items: center;
  border-left: 1px solid #c8c9ca;
  margin-right: -1px;
}
.content-item .shiro-form-field .shiro-form-value .shiro-form-attr button {
  color: #c8c9ca;
  font-size: 0.9em;
  font-weight: 700;
  transition: all 1s ease;
  padding: 0 0.3em;
}
.content-item .shiro-form-field .shiro-form-value .shiro-form-attr button > span {
  margin-left: 0.35em;
  font-size: 0.9em;
  font-weight: 600;
}
.content-item .shiro-form-field .shiro-form-value .shiro-form-attr > span {
  color: #888888;
  font-size: 0.9em;
  font-weight: 700;
  text-align: center;
  transition: all 2s ease;
}
.content-item .shiro-form-field .shiro-form-value .shiro-form-attr > span:not(.active) {
  max-width: 0px;
  overflow: hidden;
}
.content-item .shiro-form-field .shiro-form-value .shiro-form-attr > span.active button {
  color: #666666;
}
.content-item .shiro-form-field .shiro-form-value .shiro-form-attr > span button:hover {
  color: #111111;
}
.content-item .shiro-form-field .shiro-form-value > section {
  padding: 0.5em 1em 0 1em;
  width: 100%;
}
.content-item .shiro-form-field:hover .shiro-form-attr span {
  max-width: 300px !important;
}
.content-item .shiro-form-thumb {
  position: relative;
  background: #e0e0e0;
  display: flex;
  width: 100%;
  justify-content: center;
  align-items: center;
}
.content-item .shiro-form-thumb.empty::before {
  content: "";
  display: block;
  width: 1px;
  padding-top: 75%;
}
.content-item .shiro-form-thumb img {
  max-width: 100%;
  height: 100%;
  display: block;
  max-height: 50vh;
  -o-object-fit: contain;
     object-fit: contain;
}
.content-item .shiro-form-thumb button {
  font-size: 2em;
  top: 55%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.content-item .shiro-form-thumb:hover button {
  opacity: 0.5;
}
.content-item .shiro-form-info {
  padding: 1em 1.5em;
}
.content-item .shiro-form-info .shiro-form-property {
  display: block;
  margin: 0 0 0.5em 0;
  border: 0;
  padding: 0.5em 0 0 0;
}
.content-item .shiro-form-info .shiro-form-info-fields {
  margin: 1.5em 0 1em 0;
}
.content-item .shiro-form-info .shiro-form-info-field {
  display: grid;
  grid-template-columns: 2fr 3fr;
  margin: 0.2em 0;
  gap: 0.5em;
}
.content-item .shiro-form-info .shiro-form-info-field .shiro-form-info-fields--label {
  text-transform: uppercase;
  font-size: 0.6em;
  font-weight: 600;
  line-height: 2;
}
.content-item .shiro-form-info .shiro-form-info-field .shiro-form-info-fields--value {
  font-size: 0.8em;
  line-height: 1.4;
  color: #4B4F55;
  font-weight: 700;
}
.content-item .shiro-form-info .shiro-form-info-field .shiro-form-info-fields--item a {
  color: #4B4F55;
  text-decoration: none;
}
.content-item .shiro-form-info .shiro-form-info-field .shiro-form-info-fields--item a:hover {
  color: #000000;
}
.content-item .shiro-form-info .shiro-form-info-field .shiro-form-info-fields--item.granted {
  padding: 5px 0;
}
.content-item .shiro-form-info .shiro-form-info-field .shiro-form-info-fields--item.granted span {
  padding: 1px 0.4em;
  background: #eee;
  border-radius: 3px;
  color: #aaa;
}
.content-item .shiro-form-info .shiro-form-info-field .shiro-form-info-fields--item.deleted i {
  color: #aaa;
}
.content-item .shiro-form-info .shiro-form-info-field .shiro-form-info-fields--item.deleted span {
  opacity: 0.5;
  text-decoration: line-through;
}
.content-item .shiro-form-info .shiro-form-info-field .shiro-form-info-fields--item button {
  opacity: 0;
}
.content-item .shiro-form-info .shiro-form-info-field .shiro-form-info-fields--item:hover button {
  opacity: 1;
}
.content-item .shiro-form-info .shiro-form-info-field .shiro-form-info-fields--item .context {
  display: inline-block;
  margin-bottom: 0.3em;
  background: #f3f3f3;
  border-radius: 6px;
  padding: 0 0.5em;
}
.content-item .shiro-form-info hr {
  margin: 0.75em 0;
  border: 0;
  border-bottom: 1px solid #c8c9ca;
}
.content-item .shiro-form-info .shiro-form-info-button {
  padding: 1em 0 0.25em 0;
  text-align: center;
}

/* ----  DROPDOWN  ---- */
.dropdown {
  width: 100%;
  flex-wrap: wrap;
  margin: 0;
  padding: 0;
}
.dropdown input {
  display: block;
  width: 100%;
  margin: 0;
  padding: 10px;
  box-sizing: border-box;
  border: none;
  cursor: pointer;
}
.dropdown input::before {
  display: block;
  width: 25px;
  height: 25px;
  background: red;
}
.dropdown .results {
  position: absolute;
  display: none;
  width: 100%;
  margin: 0;
  padding: 0;
  list-style: none;
  background: #FFF;
  border: solid 1px #999;
  z-index: 500;
}
.dropdown .results.open {
  display: block;
}
.dropdown .results li {
  margin: 0;
  padding: 0;
}
.dropdown .results li button {
  display: block;
  width: 100%;
  margin: 0;
  padding: 5px 10px;
  background: #FFF;
  border: none;
  cursor: pointer;
  text-align: left;
}
.dropdown .results li button:hover {
  background: #CCC;
}
.dropdown .results li button span {
  float: right;
  padding: 0 5px;
  background: #999;
  color: #FFF;
  font-style: italic;
}
.dropdown .results li.selected button {
  background: #DDD;
}

/* -- autocomplete -- */
.autocomplete-component {
  white-space: nowrap;
}
.autocomplete-component::after {
  position: absolute;
  display: none;
}
.autocomplete-component .autocomplete-component-query-select {
  background-color: transparent;
  direction: rtl;
}
.autocomplete-component .autocomplete-component-query-select option {
  direction: ltr;
}
.autocomplete-component:not(.open) .autocomplete-component-results {
  display: none;
}

.autocomplete-component-results {
  position: absolute;
  z-index: 99;
  background: #ffffff;
  border: 1px solid #888888;
  width: -webkit-fill-available;
  max-height: 300px;
  overflow-y: auto;
  overflow-x: none;
  gap: 0.5em;
  margin-top: 0.25em;
}
.autocomplete-component-results:empty {
  display: none;
}
.autocomplete-component-results .i-autocomplete-item {
  padding: 0.5em 0.75em;
  display: flex;
  gap: 1em;
  justify-content: space-between;
  align-items: baseline;
}
.autocomplete-component-results .i-autocomplete-item .label {
  flex: 1;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  line-height: 1.2;
}
.autocomplete-component-results .i-autocomplete-item .type {
  text-transform: uppercase;
  font-size: 0.6em;
  letter-spacing: 0.5px;
  font-weight: 700;
  color: hsl(182, 58%, 42%);
}
.autocomplete-component-results .i-autocomplete-item:not(:first-child) {
  border-top: 1px solid #a8a8a8;
}
.autocomplete-component-results .i-autocomplete-item.selected {
  background-color: #f3f3f3;
}
.autocomplete-component-results .i-autocomplete-item:hover {
  background-color: #e0e0e0;
  cursor: pointer;
}

/* -- autocomplete -- */
main.table section {
  max-width: 1400px;
}
main.table section .shiro-table .table {
  position: relative;
}
main.table section .shiro-table .table div.loading {
  position: absolute;
  top: 50%;
  left: 50%;
}
main.table section .shiro-table .search-result--filter {
  margin: 2em 0 1em;
}
main.table section .shiro-table .user-tools {
  display: flex;
  align-items: center;
  margin-bottom: 1em;
}
main.table section .shiro-table .user-tools i {
  margin-right: 1em;
}

main.table table {
  width: 100%;
  border-collapse: collapse;
}
main.table table th {
  text-align: left;
  border-bottom: 2px solid hsl(182, 58%, 42%);
  padding: 0.5em 1rem;
  font-size: 0.8em;
  font-weight: 700;
  text-transform: uppercase;
  color: hsl(182, 58%, 42%);
}
main.table table th.small {
  width: 75px;
}
main.table table th.medium {
  width: 150px;
}
main.table table th button {
  white-space: nowrap;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: hsl(182, 58%, 42%);
}
main.table table th button:hover {
  color: hsl(182, 58%, 35%);
}
main.table table th button.ordered.up::after {
  content: "\e803";
  font-family: "shiro-icon";
  margin-left: 0.5em;
}
main.table table th button.ordered.down::after {
  content: "\e800";
  font-family: "shiro-icon";
  margin-left: 0.5em;
}
main.table table tr td {
  padding: 0.75em 1rem;
  background: #ffffff;
  border-bottom: 1px solid #e0e0e0;
  transition: all 0.3 ease;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
main.table table tr td.min {
  width: 1%;
}
main.table table tr td.max {
  width: 50%;
}
main.table table tr td a {
  font-weight: 700;
  text-decoration: none;
  color: #333333;
}
main.table table tr td a:hover {
  color: #000000;
}
main.table table tr td.loading {
  content: "&nbsp;";
}
main.table table tr td .table-cell-actions {
  margin-left: 0.75em;
  font-size: 0.9em;
}
main.table table tr td .table-cell-actions button, main.table table tr td .table-cell-actions span {
  color: #a8a8a8;
}
main.table table tr td .tag {
  background: #EEE;
  border-radius: 4px;
  margin-right: 0.75em;
  padding: 0.2em 0.35em;
  font-size: 0.75em;
}
main.table table tr td.error {
  color: #EC4949;
  font-weight: bold;
}
main.table table tr td button.clipboard {
  display: inline;
  margin-left: 0.8em;
}
main.table table tr td button.clipboard i {
  color: #888888;
}
main.table table tr td input.clipboard {
  width: 100px;
  overflow: hidden;
  border: none;
  background: none;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  pointer-events: none;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
main.table table tr:hover td {
  background: #f3f3f3;
}
main.table table tr.loading {
  opacity: 0.7;
  color: #ffffff;
  pointer-events: none;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}

@media print {
  html {
    font-size: 0.8em;
  }
  .tool-bar,
  .tool-bar-functions,
  .shiro-frame--topbar,
  .shiro-frame--sidenav,
  button.shiro-btn-add {
    display: none;
  }
  .shiro-frame {
    position: inherit;
  }
  .shiro-frame--main {
    position: inherit;
    height: inherit;
    overflow: auto;
  }
  #shiro-main {
    height: 100%;
  }
  .shiro-form-sidebar,
  .content-item fieldset {
    box-shadow: none !important;
    border: 1px solid #ddd;
  }
}/*# sourceMappingURL=style.css.map */