.wrap_search_widget {
  position: relative;
}

#search_popup {
  position: absolute;
  max-height: 500px;
  overflow-y: auto;
  left: 0;
  top: 47px;
  width: 350px;
  background: #fff;
  z-index: 999;
  border-radius: 6px;
  box-shadow: 0px 5px 15px 0px rgba(0, 0, 0, 0.4);
}

#search_popup .wrap_item {
  padding: 10px;
}

#search_popup .wrap_item .product {
  display: flex;
  align-items: center;
  border-bottom: 1px solid #e4e4e4;
  transition: 0.3s ease-in-out;
}
#search_popup .wrap_item .product:hover {
  background: #fbfbfb;

}
#search_popup .wrap_item .product:last-child {
  border-bottom: none;
}

#search_popup .wrap_item .product:last-child {
  margin-bottom: 0;
}

#search_popup .product .search_img {
  width: 80px;
  min-width: 80px
}

#search_popup .product .search_img img {
  max-width: 100%;
  height: auto;
}

#search_popup .search_info {
  width: 100%;
}

#search_popup .search_info .product_name {
  font-size: 14px;
  font-weight: 500;
  color: #1D2C47;
}

#search_popup .search_info .price {
  display: block;
  font-size: 14px;
  color: rgba(0,0,0,0.5);
  font-weight: 400;
}
@media (max-width: 576px) {
  #search_popup {
    max-width: 475px;
    max-height: 500px;
    overflow-y: auto;
  }
}
@media (max-width: 425px) {
  #search_popup {
    max-width: 375px;
    max-height: 350px;
  }
}
@media (max-width: 380px) {
  #search_popup {
    max-width: 320px;
    max-height: 350px;
  }
}