/**
 * Minified by jsDelivr using clean-css v5.3.3.
 * Original file: /npm/@tarekraafat/autocomplete.js@10.2.10/dist/css/autoComplete.css
 *
 * Do NOT use SRI with dynamically generated files! More information: https://www.jsdelivr.com/using-sri-with-dynamic-files
 */
.autoComplete_wrapper {
  display: flex;
  flex-direction: column;
  gap: .5em;
  width: 100%;
  display: inline-block;
  position: relative
}

.autoComplete_wrapper>input {
  height: 3rem;
  width: 100%;
  margin-bottom: .5em;
  padding: 0 1.5rem 0 1.5rem;
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  font-size: 1rem;
  text-overflow: ellipsis;
  color: var(--color);
  outline: 0;
  border-radius: 10rem;
  border: .05rem solid var(--border-input);
  /* background-image: url(images/search.svg);
  background-size: 1.4rem;
  background-position: left 1.05rem top .8rem;
  background-repeat: no-repeat;
  background-origin: border-box; */
  background-color: var(--bg-secondary);
  transition: all .4s ease;
  -webkit-transition: all -webkit-transform .4s ease
}

.autoComplete_wrapper>input::placeholder {
  color: var(--inert);
  transition: all .3s ease;
  -webkit-transition: all -webkit-transform .3s ease
}

.autoComplete_wrapper>input:hover::placeholder {
  color: var(--color);
  transition: all .3s ease;
  -webkit-transition: all -webkit-transform .3s ease
}

.autoComplete_wrapper>input:focus::placeholder {
  padding: .1rem .6rem;
  font-size: .95rem;
  color: var(--color);
}

.autoComplete_wrapper>input:focus::selection {
  background-color: rgba(255, 122, 122, .15)
}

.autoComplete_wrapper>input::selection {
  background-color: rgba(255, 122, 122, .15)
}

.autoComplete_wrapper>input:hover {
  color: var(--color);
  transition: all .3s ease;
  -webkit-transition: all -webkit-transform .3s ease
}

.autoComplete_wrapper>input:focus {
  color: var(--color);
  border: .06rem solid var(--border-input-focus);
}

.autoComplete_wrapper>ul {
  position: absolute;
  max-height: 226px;
  overflow-y: scroll;
  box-sizing: border-box;
  left: 0;
  right: 0;
  margin: .5rem 0 0 0;
  padding: 0;
  z-index: 1;
  list-style: none;
  border-radius: .6rem;
  background-color: var(--bg-secondary);
  border: 1px solid var(--border);
  box-shadow: 0 3px 6px rgba(149, 157, 165, .15);
  outline: 0;
  transition: opacity .15s ease-in-out;
  -moz-transition: opacity .15s ease-in-out;
  -webkit-transition: opacity .15s ease-in-out
}

.autoComplete_wrapper>ul:empty,
.autoComplete_wrapper>ul[hidden] {
  display: block;
  opacity: 0;
  transform: scale(0)
}

.autoComplete_wrapper>ul>li {
  margin: .3rem;
  padding: .3rem .5rem;
  text-align: left;
  font-size: 1rem;
  color: var(--color);
  border-radius: .35rem;
  background-color: var(--bg-primary);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  transition: all .2s ease
}

.autoComplete_wrapper>ul>li mark {
  background-color: transparent;
  color: #ff7a7a;
  font-weight: 700
}

.autoComplete_wrapper>ul>li:hover {
  cursor: pointer;
  background-color: rgba(28, 31, 59, 0.15)
}

.autoComplete_wrapper>ul>li[aria-selected=true] {
  background-color: rgba(132, 126, 163, 0.15)
}

@media only screen and (max-width:768px) {
  .autoComplete_wrapper>input {
    width: 100%
  }
}