.list-found-items {
    background-color: #ffffff;
    box-shadow: rgba(0, 0, 0, 0.52) 0 11px 15px -5px;
    overflow-y: auto; 
	width: 100%;
	padding: 10px;
}

.live_search_item, a.live_search_item:hover {
    display: flex;
    text-decoration: none;
    color: #333;
    transition: background-color 0.2s;
    padding: 5px 0;
}
.live_search_item:hover .live_search_box_item {
    background-color: #d8b26621;
    border-radius: 10px;
}
.live_search_box_item {
	display: grid;
    gap: 0px 10px;
    grid-template-columns: 80px 115px 1fr auto;
    grid-template-areas:
        "imgSearch codeSearch codeSearch priceSearch"
        "imgSearch nameSearch nameSearch priceSearch";
    width: 100%;
    margin: 0;
    padding: 0;
}
.img_search_box {
    grid-area: imgSearch;
}
.live-catalog-name {
    display: flex;
    align-items: center;
    font-weight: 600;
}
.code_search_box {
    display: grid;
    align-items: end;
    font-size: 12px;
    grid-area: codeSearch;
}
.name_search_box {
    grid-area: nameSearch;
    color: #000;
    font-size: 17px;
}
.price_search_box {
    grid-area: priceSearch;
    color: #000;
    font-size: 17px;
    font-weight: 500;
    display: grid;
    align-content: center;
    align-items: center;
    justify-content: end;
}
.live_search_box_item img {
    width: 80px;
    height: 80px;
    object-fit: cover;
	border-radius: 10px;
}
.price_search_box .price-page-old {
    font-size: 13px;
	margin-left: auto;
    margin-right: 5px;
}
.live_search_no_results {
    color: #000000;
    text-align: left;
    padding: 10px 4%;
    font-weight: 100;
}
.suggestions-list {
    border-top-left-radius: 0;
    top: 43px;
    border: solid 3px #00000000;
    border-top-right-radius: 0;
    border-bottom-left-radius: 10px;
    width: 100%;
    z-index: 1;
    max-height: 450px;
    overflow-y: auto;
    box-shadow: rgb(0 0 0 / 14%) 0 11px 15px 3px;
    position: absolute;
    margin: 0;
    padding: 0;
    left: 0;
}
.live_search_box_item.cat_box_item {
    display: flex;
}
.list-found-items h4 {
    font-size: 19px;
    text-align: right;
    color: #7f2461;
    border-bottom: dotted 1px #ccc;
    margin-bottom: 10px;
    padding-bottom: 5px;
}
.search-container {
    position: relative;
    display: inline-block;
}
#clear-btn {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    border: none;
    cursor: pointer;
    display: none;
    background: #fcfafb;
    width: 25px;
    height: 25px;
    border-radius: 50%;
    font-weight: bolder;
    color: #fff;
    align-items: center;
    justify-content: center;
}
.box-real-search {
    position: relative;
	background: #7f2461;
}
button#clear-btn::after {
    content: "";
    position: absolute;
    height: 1px;
    transform: rotate(315deg);
    top: 0;
    background-color: #000000;
    width: 15px;
    bottom: 0;
    margin: auto;
}
button#clear-btn::before {
    content: "";
    position: absolute;
    height: 1px;
    transform: rotate(45deg);
    top: 0;
    background-color: #000000;
    width: 15px;
    bottom: 0;
    margin: auto;
}
@media (max-width: 1230px) {
	.form-search-filter-tab {
		position: revert;
	}
	.des-header {
		position: relative;
	}	
}
@media (max-width: 960px) {
	.form-search-filter-tab {
		position: relative;
	}
	#clear-btn {
		right: 5px;	
	}
}
@media (max-width: 660px) {
	.form-search-filter-tab {
		position: revert;
	}
}
@media (max-width: 480px) {
	.contact {
		position: relative;
	}	
	.form-search-filter-tab,.des-header,.form-search-filter-cont {
		position: revert;
	}
	
}