@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");
[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;
}

[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;
}

/* 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 */