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

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

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