.livesearch {
  position: relative;
  z-index: 200;
}
.livesearch-results {
  margin-top: 1px;
  position: absolute;
  top: 100%;
  right: 0;
  left: 0;
  background: #fff;
  border-radius: var(--bs-border-radius);
  border: 1px solid #CFCFCF !important;
  max-height: 420px;
  overflow-y: auto;
  overflow-x: hidden;
}
.livesearch-result {
  display: flex;
  padding: 6px 10px;
  justify-content: flex-start;
  text-decoration: none;
}
.livesearch-result + .livesearch-result {
  border-top: 1px solid #CFCFCF;
}
.livesearch-result__image {
  width: 50px;
  height: auto;
}
.livesearch-result__name {
  text-decoration: none;
  padding: 6px 0 0 13.5px;
  font-size: 14px;
  color: #111;
}
@media screen and (max-width: 991px) {
  .livesearch-results {
    position: static;
    overflow-y: auto;
    max-height: calc(100vh - 58px);
    max-height: calc(100svh - 58px);
    border: 0 !important;
    border-radius: 0 !important;
    margin: 0 -10px !important;
  }
}