.livesearch {
  position: relative;
}
.livesearch:hover {
    color: #F2B600; text-decoration:none;
}


.livesearch-result {
  position: absolute;
  top: 37px;
  left: 0;
  right: 0;
  width: 150%;
  max-height: 400px;
  border-radius: 0 0 4px 4px;
  background-color: #fff;
  overflow-y: auto;
  z-index: 9999;
}
.livesearch-result:hover {
    color: #188704; text-decoration:none;
}
.livesearch-cat {
  padding: 5px 15px;
  font-size: 16px;
  font-weight: 700;
  background-color: #eee;
  pointer-events: none;
  color: #000;
}
.livesearch-product {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 5px 0;
  padding: 5px 15px;
  font-size: 16px;
  font-weight: 400;
}
.livesearch-product:hover {
    color: #188704; text-decoration:none; background-color: #F9F9F9;
}
.livesearch-product__name {
  display: flex;
  align-items: center;
}
.livesearch-product__image {
  margin: 0 10px 0 0;
  max-width: 40px;
}
.livesearch-product__price {
    min-width: 70px;
  margin-left: 15px;
    text-align: right;
}


.livesearch-product.livesearch-active {
  
	background-color: #F9F9F9;
 
	color: #188704;

}


.livesearch-result.keyboard-nav .livesearch-product:hover {

    background-color: transparent;
    color: inherit;

}