#spotlight {
  --spotlight-height: 50px;
  --spotlight-text-color: var(--color-text-dark-primary);
  --spotlight-background: rgb(255 255 255 / 40%);
  --spotlight-border: grey;
  --spotlight-button-bg: #0000001a;
  --spotlight-button-hover: #00000029;
  --spotlight-li-hover: #00000033;
  --spotlight-border-hr: var(--color-border-dark-4);
  --spotlight-scrollbar: var(--color-text-dark-4);
  --spotlight-filter-bg: var(--spotlight-button-bg);
  --spotlight-filter-border: var(--spotlight-border);
  border-radius: 10px;
  overflow: hidden;
  font-family: "Roboto", sans-serif;
  transition: opacity 0.2s ease-in-out;
  border: 1px solid var(--spotlight-border);
}
#spotlight.to-taskbar {
  bottom: 50px !important;
  top: auto !important;
  max-height: 70vh !important;
}
#spotlight.dark {
  --spotlight-text-color: var(--color-text-light-4);
  --spotlight-background: rgb(0 0 0 / 40%);
  --spotlight-border: #2d2d2d;
  --spotlight-button-bg: #ffffff1a;
  --spotlight-button-hover: #ffffff29;
  --spotlight-li-hover: #ffffff29;
  --spotlight-border-hr: var(--color-border-light-4);
  --spotlight-scrollbar: var(--color-text-light-4);
}
#spotlight.dark .window-content::before {
  filter: none;
}
#spotlight.compact .search-info {
  font-size: 1rem;
}
#spotlight.compact .search-info p {
  display: none;
}
#spotlight.compact main section #search-result li {
  padding: 0.1rem 0.2rem;
  gap: 0.3rem;
}
#spotlight.compact main section #search-result li img {
  width: 24px;
  height: 24px;
}
#spotlight.compact main section #search-result li .search-entry-name {
  font-weight: bold;
}
#spotlight.compact main section #search-result li i {
  font-size: 1rem;
}
#spotlight.compact main section #search-result li .clear-recent i {
  font-size: 0.7rem;
}
#spotlight.force-opacity {
  opacity: 1 !important;
}
#spotlight .key {
  flex: none;
  padding: 0 4px;
  min-width: 24px;
  background: rgba(255, 255, 255, 0.25);
  border: 1px solid var(--color-border-light-2);
  border-radius: 5px;
  box-shadow: 1px 1px #444;
  text-align: center;
  margin-right: 0.5rem;
  padding: 0.2rem 0.5rem;
}
#spotlight ::-webkit-scrollbar-thumb {
  background: var(--spotlight-scrollbar);
  border: none;
}
#spotlight ::-webkit-scrollbar-track {
  background: transparent;
  border: none;
}
#spotlight.dragging {
  pointer-events: none;
  opacity: 0.1;
}
#spotlight hr {
  border-color: var(--spotlight-border-hr);
}
#spotlight .window-header {
  position: absolute;
  height: var(--spotlight-height);
  width: var(--spotlight-height);
  opacity: 0;
  z-index: 1;
}
#spotlight .window-header h4,
#spotlight .window-header a {
  display: none;
}
#spotlight .window-content {
  margin: 0;
  padding: 0;
  background: transparent;
  color: var(--spotlight-text-color);
  overflow: hidden;
}
#spotlight .window-content::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--spotlight-background);
  filter: brightness(3);
  backdrop-filter: blur(10px);
  z-index: -1;
}
#spotlight.inverted main {
  flex-direction: column-reverse;
}
#spotlight.inverted main header {
  border-bottom: none;
  border-top: 1px solid var(--spotlight-border);
}
#spotlight.inverted .window-header {
  bottom: 0;
}
#spotlight main {
  height: auto;
  display: flex;
  flex-direction: column;
}
#spotlight main:has(.no-results) header {
  border: none;
}
#spotlight main .filters-help {
  display: flex;
  flex-wrap: wrap;
  gap: 0.3rem;
}
#spotlight main .filters-help .filter {
  pointer-events: none;
}
#spotlight main .filter {
  font-size: 1.2rem;
  padding: 0 0.3rem;
  border: 1px solid var(--spotlight-filter-border);
  background: var(--spotlight-filter-bg);
  border-radius: 5px;
  text-transform: uppercase;
  font-weight: bold;
  cursor: pointer;
  height: 100%;
  display: flex;
  align-items: center;
}
#spotlight main header {
  height: var(--spotlight-height);
  display: flex;
  gap: 0.5rem;
  align-items: center;
  width: 100%;
  padding: 0 1rem;
  border-bottom: 1px solid var(--spotlight-border);
}
#spotlight main header .filters-container {
  display: flex;
  align-items: center;
  gap: 0.3rem;
  height: 65%;
}
#spotlight main header i {
  font-size: 1.5rem;
}
#spotlight main header .input-wrapper {
  width: 100%;
  position: relative;
  display: flex;
  align-items: center;
  height: 100%;
}
#spotlight main header .input-wrapper span.input-spacer {
  opacity: 0;
}
#spotlight main header .input-wrapper span.input-suggestion {
  font-size: 1.8rem;
  height: 65%;
  width: 100%;
  position: absolute;
  padding: 0px 3px;
  margin-bottom: 1px;
  border-radius: 3px;
  line-height: inherit;
  opacity: 0.5;
  pointer-events: none;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
#spotlight main header input[type=search] {
  font-size: 1.8rem;
  height: 65%;
  flex: 1;
  border: none;
  background: none;
  color: var(--spotlight-text-color);
}
#spotlight main header input[type=search].matched-filter {
  color: var(--color-border-highlight);
}
#spotlight main header input[type=search]:focus, #spotlight main header input[type=search]:hover {
  box-shadow: none;
}
#spotlight main section {
  padding: 1rem;
  overflow-y: auto;
  max-height: 40vh;
}
#spotlight main section.no-results {
  display: none;
}
#spotlight main section #search-result {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}
#spotlight main section #search-result li {
  font-size: 1.5rem;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 1rem;
  transition: background 0.2s ease-in-out;
  padding: 0.3rem 0.5rem;
  border-radius: 5px;
}
#spotlight main section #search-result li.type-header {
  font-size: x-small;
  pointer-events: none;
  font-weight: bold;
  padding: 0;
  border-bottom: 1px solid;
  border-radius: 0;
  text-transform: uppercase;
}
#spotlight main section #search-result li:hover, #spotlight main section #search-result li.selected {
  background: rgba(0, 0, 0, 0.2);
}
#spotlight main section #search-result li img {
  width: 32px;
  height: 32px;
  border: none;
  object-fit: cover;
}
#spotlight main section #search-result li .search-item-actions {
  padding: 0.2em 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.2rem;
}
#spotlight main section #search-result li .search-item-actions button {
  display: flex;
  justify-content: center;
  align-items: center;
  width: auto;
  background: var(--spotlight-button-bg);
  transition: all 0.2s ease-in-out;
  border: none;
  line-height: inherit;
  padding: 0.2em 0.2em;
  font-weight: bold;
  color: var(--spotlight-text-color);
  white-space: nowrap;
}
#spotlight main section #search-result li .search-item-actions button i {
  order: -1;
  margin: 0;
  width: 1.5rem;
}
#spotlight main section #search-result li .search-item-actions button:focus, #spotlight main section #search-result li .search-item-actions button:hover, #spotlight main section #search-result li .search-item-actions button.selected {
  box-shadow: none;
  background: var(--spotlight-button-hover);
}
#spotlight main section #search-result li .search-info {
  flex: 1;
}
#spotlight main section #search-result li .search-info:has(.search-entry-name-wrapper) {
  overflow: hidden;
}
#spotlight main section #search-result li .search-info:has(.search-entry-name-wrapper) .search-item-actions {
  flex-wrap: nowrap;
}
#spotlight main section #search-result li .search-info .search-entry-name-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
#spotlight main section #search-result li .search-info .search-entry-name-wrapper .search-entry-name {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
#spotlight main section #search-result li .search-info:has(.s-toggle-setting) span {
  display: flex;
  align-items: center;
}
#spotlight main section #search-result li .search-info:has(.s-toggle-setting) i {
  display: inline;
  margin-left: auto;
  margin-right: 0.3rem;
  cursor: pointer;
  transition: color 0.5s ease-in-out;
}
#spotlight main section #search-result li .search-info p {
  font-size: 1rem;
  opacity: 0.7;
  margin: 0;
}
#spotlight main section #search-result li i {
  width: 1.2rem;
  display: flex;
  justify-content: center;
  align-items: center;
}
#spotlight main section #search-result li.multi-icons i {
  order: 999;
}
#spotlight main section #search-result li.special-app {
  border: 2px solid var(--color-border-dark-4);
  background: var(--spotlight-button-hover);
  padding: 1rem;
  border-radius: 10px;
  margin-bottom: 1rem;
}
#spotlight main section #search-result li.special-app .tracker-container {
  --so-color-success: var(--color-level-info);
  --so-color-fail: var(--color-border-highlight);
  --so-tracker-dot-size: 1.9rem;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 0.4rem;
  padding: 1rem;
  align-items: center;
  justify-content: center;
}
#spotlight main section #search-result li.special-app .tracker-container .tracker-slash {
  font-size: calc(var(--so-tracker-dot-size) * 1.5);
}
#spotlight main section #search-result li.special-app .tracker-container .tracker-dot {
  width: var(--so-tracker-dot-size);
  height: var(--so-tracker-dot-size);
  border-radius: 5px;
  border: 2px solid;
  transition: background-color 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
  filter: sepia(0.4);
}
#spotlight main section #search-result li.special-app .tracker-container .tracker-dot.success {
  box-shadow: 0 0 5px inset var(--so-color-success);
}
#spotlight main section #search-result li.special-app .tracker-container .tracker-dot.success.checked {
  background-color: var(--so-color-success);
  box-shadow: 0 0 5px inset;
}
#spotlight main section #search-result li.special-app .tracker-container .tracker-dot.fail {
  box-shadow: 0 0 5px inset var(--so-color-fail);
}
#spotlight main section #search-result li.special-app .tracker-container .tracker-dot.fail.checked {
  background-color: var(--so-color-fail);
  box-shadow: 0 0 5px inset;
}
#spotlight main section #search-result li.special-app .counter-container {
  --so-counter-text-size: 3rem;
  display: flex;
  gap: 1rem;
  margin-top: 1rem;
  flex-wrap: wrap;
}
#spotlight main section #search-result li.special-app .counter-container .counter-input-container {
  display: flex;
  gap: 1rem;
}
#spotlight main section #search-result li.special-app .counter-container .counter-input-container input {
  min-width: 0;
  width: calc(var(--so-counter-text-size) * 2);
  height: var(--so-counter-text-size);
  font-size: var(--so-counter-text-size);
  text-align: right;
  background-color: transparent;
  color: var(--spotlight-text-color);
  border: none;
}
#spotlight main section #search-result li.special-app .counter-container .counter-input-container input:focus, #spotlight main section #search-result li.special-app .counter-container .counter-input-container input:active {
  box-shadow: none;
}
#spotlight main section #search-result li.special-app .counter-container .up-down-container i:hover {
  cursor: pointer;
  text-shadow: 0 0 5px;
}
#spotlight main section #search-result li.special-app .unit-converter-result {
  display: flex;
  gap: 1rem;
  font-size: 2rem;
  font-weight: bold;
  align-items: center;
}
#spotlight main section #search-result li.special-app .unit-converter-result i {
  font-size: 1.5rem;
}
#spotlight main section #search-result li.special-app .unit-converter-result span:first-child {
  font-size: 1rem;
  font-weight: normal;
}
#spotlight main section #search-result li.special-app > i {
  font-size: 3rem;
  width: 2rem;
}
#spotlight main section #search-result li.special-app ul {
  margin: 0;
  padding: 0;
}
#spotlight main section #search-result li.special-app ul li {
  font-size: smaller;
  border-bottom: 1px solid;
  border-radius: 0;
}
#spotlight main section #search-result li.special-app ul li:last-child {
  border-bottom: none;
}/*# sourceMappingURL=module.css.map */