.ts-wrapper {
  position: relative;
  display: flex;
  width: 100%;
  padding: 0 !important;
  margin: 0;
}

.ts-wrapper.single .ts-control,
.ts-wrapper.multi .ts-control {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.25rem;
  width: 100%;
  min-height: 50px;
  padding: 12px 16px;
  background-color: rgba(39, 39, 42, 0.5);
  border: 1px solid rgb(63, 63, 70);
  border-radius: 0.75rem;
  color: white;
  font-size: 0.875rem;
  cursor: pointer;
  box-sizing: border-box;
}

.ts-wrapper.single .ts-control:focus,
.ts-wrapper.single .ts-control.focus,
.ts-wrapper.multi .ts-control:focus,
.ts-wrapper.multi .ts-control.focus {
  border-color: rgb(161, 161, 170);
  outline: none;
}

.ts-wrapper .ts-control > input {
  flex: 1 1 auto;
  min-width: 50px;
  background: transparent !important;
  border: none !important;
  outline: none !important;
  box-shadow: none !important;
  color: white !important;
  font-size: 0.875rem;
  padding: 0 !important;
  margin: 0 !important;
}

.ts-wrapper .ts-control > input::placeholder {
  color: rgb(161, 161, 170);
}

.ts-wrapper.single.has-items .ts-control > input {
  width: 0 !important;
  min-width: 0 !important;
  opacity: 0;
  position: absolute;
}

.ts-wrapper .ts-control .item {
  display: inline-flex;
  align-items: center;
  background-color: rgb(63, 63, 70);
  color: white;
  border-radius: 0.25rem;
  padding: 0.125rem 0.5rem;
  font-size: 0.875rem;
}

.ts-dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  z-index: 100;
  margin-top: 0.25rem;
  background-color: rgb(39, 39, 42);
  border: 1px solid rgb(63, 63, 70);
  border-radius: 0.5rem;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.3);
  max-height: 300px;
  overflow-y: auto;
}

.ts-dropdown .ts-dropdown-content {
  padding: 0.25rem 0;
}

.ts-dropdown .option {
  padding: 0.5rem 0.75rem;
  color: rgb(212, 212, 216);
  cursor: pointer;
  font-size: 0.875rem;
}

.ts-dropdown .option:hover,
.ts-dropdown .option.active {
  background-color: rgb(63, 63, 70);
  color: white;
}

.ts-dropdown .option.selected {
  background-color: rgb(82, 82, 91);
  color: white;
}

.ts-dropdown .no-results {
  padding: 0.5rem 0.75rem;
  color: rgb(161, 161, 170);
  font-size: 0.875rem;
}

.ts-dropdown .optgroup-header {
  padding: 0.5rem 0.75rem;
  color: rgb(161, 161, 170);
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.ts-dropdown .optgroup:not(:first-child) .optgroup-header {
  border-top: 1px solid rgb(63, 63, 70);
  margin-top: 0.25rem;
  padding-top: 0.75rem;
}

.ts-wrapper.plugin-clear_button .ts-control {
  padding-right: 2rem;
}

.ts-wrapper.plugin-clear_button .clear-button {
  position: absolute;
  right: 0.75rem;
  top: 50%;
  transform: translateY(-65%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgb(161, 161, 170);
  cursor: pointer;
  opacity: 1;
  z-index: 10;
  font-size: 1.25rem;
  line-height: 1;
  width: 1.25rem;
  height: 1.25rem;
}

.ts-wrapper.plugin-clear_button .clear-button:hover {
  color: white;
}

.ts-hidden-accessible {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

.ts-wrapper.loading .ts-control::after {
  content: "";
  position: absolute;
  right: 0.75rem;
  top: 50%;
  transform: translateY(-50%);
  width: 1rem;
  height: 1rem;
  border: 2px solid rgb(63, 63, 70);
  border-top-color: rgb(249, 115, 22);
  border-radius: 50%;
  animation: ts-spinner 0.6s linear infinite;
}

.ts-wrapper.loading.plugin-clear_button .ts-control::after {
  right: 2.25rem;
}

@keyframes ts-spinner {
  to {
    transform: translateY(-50%) rotate(360deg);
  }
}

/*# sourceMappingURL=template.output.css.map */
