.pl-autocomplete {
  z-index: 1;
  position: relative;
}
.pl-autocomplete.in-edition {
  z-index: 2;
}
.pl-autocomplete.in-edition .pl-autocomplete-list {
  z-index: 11;
}
.pl-autocomplete .pl-autocomplete-selection {
  display: none;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  color: #C0C0C0;
  height: 38px;
  padding: 6px 10px;
  background-color: #fff;
  border: 1px solid #D1D1D1;
  box-shadow: none;
  box-sizing: border-box;
}
.pl-autocomplete .pl-autocomplete-selection.show {
  display: block;
}
.pl-autocomplete .pl-autocomplete-input {
  position: relative;
  z-index: 1;
  background: transparent;
}
.pl-autocomplete .pl-autocomplete-list {
  z-index: 10;
  box-sizing: border-box;
  position: absolute;
  left: 0;
  top: 0;
  overflow: hidden;
  background: white;
}
.pl-autocomplete .pl-autocomplete-list.open {
  border: 1px solid #D1D1D1;
  border-top: none;
  -webkit-transition: height 0.35s cubic-bezier(0.165, 0.84, 0.44, 1);
  -moz-transition: height 0.35s cubic-bezier(0.165, 0.84, 0.44, 1);
  -ms-transition: height 0.35s cubic-bezier(0.165, 0.84, 0.44, 1);
  -o-transition: height 0.35s cubic-bezier(0.165, 0.84, 0.44, 1);
  transition: height 0.35s cubic-bezier(0.165, 0.84, 0.44, 1);
}
.pl-autocomplete .pl-autocomplete-list.from-bottom.open {
  border: 1px solid #D1D1D1;
  border-bottom: none;
  -webkit-transition: height 0.35s cubic-bezier(0.165, 0.84, 0.44, 1), top 0.35s cubic-bezier(0.165, 0.84, 0.44, 1);
  -moz-transition: height 0.35s cubic-bezier(0.165, 0.84, 0.44, 1), top 0.35s cubic-bezier(0.165, 0.84, 0.44, 1);
  -ms-transition: height 0.35s cubic-bezier(0.165, 0.84, 0.44, 1), top 0.35s cubic-bezier(0.165, 0.84, 0.44, 1);
  -o-transition: height 0.35s cubic-bezier(0.165, 0.84, 0.44, 1), top 0.35s cubic-bezier(0.165, 0.84, 0.44, 1);
  transition: height 0.35s cubic-bezier(0.165, 0.84, 0.44, 1), top 0.35s cubic-bezier(0.165, 0.84, 0.44, 1);
}
.pl-autocomplete .pl-autocomplete-list .pl-autocomplete-list-content {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
}
.pl-autocomplete .pl-autocomplete-list .pl-autocomplete-list-item {
  cursor: pointer;
  padding: 0 1rem;
}
.pl-autocomplete .pl-autocomplete-list .pl-autocomplete-list-item.focused {
  background: #eee;
}
.pl-autocomplete .pl-autocomplete-list .pl-autocomplete-list-item strong {
  font-weight: 500;
}
