.searchbar-wrap {
	display: flex;
    justify-content: center;
}
.searchbar{
    display: block;
    position: relative;
    width: 370px;
}
.searchbar input{
    position: static;
    margin: 0;
    border-color: transparent;
    height: 40px;
    border-radius: 6px;
    width: 100%;
    padding: 10px 50px 10px 20px;
    border: 1px solid #ccc;
    outline: none;
    transition: box-shadow .3s ease;
    font-family: var(--main-family);
    font-weight: 500;
}
.searchbar input:focus{
    box-shadow: 0 0 10px #ccc7;
}
.searchbar i{
    position: absolute;
    right: 20px;
    top: 50%;
    translate: 0 -50%;
    pointer-events: none;
    color: #ccc;
    font-size: 14px;
}

.search-result-item a{
  display: flex;
  align-items: center;
  padding: 8px;
  gap: 10px;
  border-bottom: 1px solid #eee;
}

.search-result-item img.search-result-thumb {
  width: 40px;
  height: 40px;
  object-fit: cover;
  border-radius: 4px;
}

.search-result-title {
  font-size: 14px;
  color: #333;
}

.live-search-results {
  list-style: none;
  margin: 0;
  padding: 0;
  background: #fff;
  position: absolute;
  z-index: 1000;
  width: 100%;
}

.live-search-results li:hover {
  background-color: #f9f9f9;
}
