.dt-typeahead {
  position: relative;
  width: 300px;
  max-width: 100%;
  display: inline-block;
}
.dt-typeahead--disabled .dt-typeahead__trigger {
  background-color: #f4f7fc;
  cursor: not-allowed;
  pointer-events: none;
}
.dt-typeahead--loading .dt-typeahead__trigger {
  pointer-events: none;
}
.dt-typeahead--open .dt-typeahead__trigger {
  border-color: #f35625;
}
.dt-typeahead--open .dt-typeahead__trigger-arrow-icon {
  transform: rotate(180deg);
}
.dt-typeahead--full-width {
  display: block;
  width: 100%;
}
.dt-typeahead--xxs {
  --dt-typeahead-size: 20px;
  --dt-typeahead-font-size: 0.7rem;
}
.dt-typeahead--xs {
  --dt-typeahead-size: 24px;
  --dt-typeahead-font-size: 0.8rem;
}
.dt-typeahead--sm {
  --dt-typeahead-size: 32px;
  --dt-typeahead-font-size: 0.9rem;
}
.dt-typeahead--md {
  --dt-typeahead-size: 40px;
  --dt-typeahead-font-size: 1rem;
}
.dt-typeahead--lg {
  --dt-typeahead-size: 48px;
  --dt-typeahead-font-size: 1.1rem;
}
.dt-typeahead--xl {
  --dt-typeahead-size: 56px;
  --dt-typeahead-font-size: 1.2rem;
}
.dt-typeahead--xxl {
  --dt-typeahead-size: 60px;
  --dt-typeahead-font-size: 1.3rem;
}
.dt-typeahead--rounded-none {
  --border-radius: 0;
}
.dt-typeahead--rounded-xs {
  --border-radius: 0.28rem;
}
.dt-typeahead--rounded-sm {
  --border-radius: 0.42rem;
}
.dt-typeahead--rounded-md {
  --border-radius: 0.62rem;
}
.dt-typeahead--rounded-lg {
  --border-radius: 0.85rem;
}
.dt-typeahead--rounded-xl {
  --border-radius: 1.25rem;
}
.dt-typeahead--rounded-circle {
  --border-radius: calc(var(--dt-typeahead-size) / 2);
}
.dt-typeahead__trigger {
  cursor: pointer;
  user-select: none;
  display: flex;
  align-items: center;
  padding: 0.45em 1em;
  font-size: var(--dt-typeahead-font-size, 1rem);
  min-height: var(--dt-typeahead-size, 40px);
  transition: all 0.15s ease-in-out;
  color: #3f4254;
  line-height: 1.25em;
  vertical-align: middle;
  border-radius: var(--border-radius, 0.62rem);
  column-gap: 0.5em;
  width: 100%;
  background-color: #fff;
  border: 1px solid #ebedf3;
}
.dt-typeahead__trigger:hover, .dt-typeahead__trigger:focus-visible, .dt-typeahead__trigger:active {
  border-color: #f35625;
}
.dt-typeahead__trigger :where(.cdp-icon) {
  display: inline-flex;
  font-size: 1.5em;
  line-height: 0.7em;
}
.dt-typeahead__trigger-content {
  flex: 1;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.dt-typeahead__values-container {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  flex: 1;
  gap: 0.25rem;
  min-width: 0;
}
.dt-typeahead__value-container {
  font-weight: 400;
  line-height: 1.25em;
  flex: 1;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  text-align: left;
}
.dt-typeahead__placeholder {
  color: #7e8299;
  line-height: 1.25em;
}
.dt-typeahead .dt-typeahead__tag {
  margin: 0;
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
}
.dt-typeahead__tag-remove {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 18px;
  height: 18px;
  border: 0;
  border-radius: 4px;
  background: transparent;
  color: #7e8299;
  padding: 0;
  cursor: pointer;
}
.dt-typeahead__tag-remove:hover {
  background: #f3f6f9;
  color: #3f4254;
}
.dt-typeahead__trigger-separator {
  border-left: 1px solid #b5b4c3;
  height: calc(var(--dt-typeahead-size) - 2 * (0.45em + 1px));
}
.dt-typeahead .dt-typeahead__clear-button {
  --btn-size: calc(var(--dt-typeahead-size) - 2 * (0.45em + 1px));
  --btn-font-size: var(--dt-typeahead-font-size);
}
.dt-typeahead__trigger-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #b5b4c3;
}
.dt-typeahead .dt-typeahead__trigger-arrow-icon {
  transition: transform 0.15s ease-in-out;
}
.dt-typeahead__menu {
  height: 100%;
  width: 100%;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.dt-typeahead__search {
  border-bottom: 1px solid #dce2e9;
}
.dt-typeahead__search-input {
  width: 100%;
  border: 0;
  background: #fff;
  color: #3f4254;
  min-height: 40px;
  padding: 0.55rem 0.75rem;
  outline: none;
}
.dt-typeahead__options {
  overflow-y: auto;
  max-height: 100%;
  padding: 2px 4px;
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.dt-typeahead__option {
  height: 32px;
  display: flex;
  align-items: center;
  column-gap: 0.5em;
  width: 100%;
  padding: 6px 10px;
  border-radius: var(--border-radius, 0.42rem);
  clear: both;
  font-weight: 400;
  color: #5e6278;
  text-align: inherit;
  text-decoration: none;
  white-space: nowrap;
  background-color: transparent;
  border: 0;
  cursor: pointer;
  transition: background-color 0.15s ease, color 0.15s ease;
}
.dt-typeahead__option .dt-typeahead__option-check {
  font-size: 1.5em;
  line-height: 1;
  margin-left: auto;
  color: #f35625;
}
.dt-typeahead__option--selected {
  background-color: rgba(243, 86, 37, 0.05);
  color: #181c32;
}
.dt-typeahead__option:hover:not(.dt-typeahead__option--disabled), .dt-typeahead__option:focus-visible:not(.dt-typeahead__option--disabled), .dt-typeahead__option--active:not(.dt-typeahead__option--disabled) {
  outline: none;
  background-color: #eaedf2;
  color: #181c32;
}
.dt-typeahead__option--selected:where(:hover, :focus-visible, .dt-typeahead__option--active):not(:disabled) {
  background-color: #eaedf2;
  color: #181c32;
}
.dt-typeahead__option:disabled {
  pointer-events: none;
  opacity: 0.5;
  cursor: default;
}
.dt-typeahead__status {
  padding: 0.6rem 0.75rem;
  color: #7e8299;
}
.dt-typeahead__status--loading, .dt-typeahead__status--empty {
  text-align: left;
}
.dt-typeahead__footer {
  padding: 0.5rem 0.75rem;
  border-top: 1px solid #dce2e9;
}
