#product_list_web {
    /* position: fixed; */
    background-color: white;
    color: black;
    width: 100%;
    box-shadow: 0px 4px 20px rgba(0, 0, 0, 0.1);
    margin: 0;
}
.search-results-section {
    z-index: 1000;  
    position: fixed;
    width: 100%;
}
@media (min-width: 992px) {
    .search-results-section {
        margin-top: var(--search-results-top-margin); 
    } 
}
.mob-search-box {
    padding-top: 5px;
    padding-bottom: 5px;
    height: 42px !important;
    margin: 8px 15px;
    border-radius: 21px !important;
    background-color: #e9e9ec ;
}
.mob-search-box input[type="text"] {
    background-color: #e9e9ec;
}
.search-box {
    display: flex;
    border-radius: 5px;
    height: 42px;
    border-radius: 20px;
    background-color : var(--search-box-bg);
    border: 1px solid var(--search-box-border-color);
}
@media (max-width: 992px) {
    .search-box {
        border: 1px solid var(--search-box-bg-mob);
    }
}

.search-box input[type="text"] {
    border: none;
    margin-left: 20px;
    height: 20px;
    border: none;
    height: 40px;
    width: calc(100% - 30px);
    margin-right: 10px;
}
.rtl .search-box input[type="text"] {
    margin-left: 0px;
    margin-right: 20px;
}
.search-box img {
    margin-right: 20px;
    height: 20px;
}
.rtl .search-box img {
    margin-left: 20px;
    margin-right: 0px;
}
.search-title {
    font-weight: 600;
    font-size: 12px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    height: 50px;
}
.search_img {
    height: 140px;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}
.search_img img {
    max-height: 100px;
}
.search_product_sale {
    font-size: 14px;
    font-weight: 700;
    color: var(--theme-green);
    margin-right: 5px;
}
.rtl .search_product_sale {
    margin: 0 0 0 5px;
}
.search-ps {
    position: relative;
    font-weight: 600;
    font-size: 10px;
    color:   rgba(0, 0, 0, 0.5);
}
.search_offer {
    font-size: 12px;
    font-weight: 600;
    color: #e84506;
    margin-left: 5px;
}
.search_product {
    text-align: center;
}
/* mobile search  */
.mob_search_result {
    /* margin: 0px 18px; */
    box-shadow: 0px 4px 20px rgba(0, 0, 0, 0.1);
    position: absolute;
    background: #fff;
    z-index: 100;
    left: 20px;
    right: 20px;
}
.mob_search_result ul {
    padding: 0px;
}
.mob_search_result ul li {
    display: flex;
    align-items: center;
    /* margin-bottom: 5px; */
    padding: 5px 0;
}
.mob_search_result_img {
    max-height: 60px;
    min-width: 60px;
    max-width: 60px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #dae5ea;
    border-radius: 5px;
}
@media (max-width: 992px) {
    .mob_search_result_img img {
        width: 80%;
    }
}
.mob_search_title {
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    font-size: 14px;
    padding-left: 5px;
}
.rtl .mob_search_title {
    padding: 0 5px 0 0;
}
.saved_amount {
    color: #e84506;
    opacity: .8;
    font-weight: 500;
    padding-top: .25rem;
}
.show-all-btn {
    text-align: right;
    padding: 10px;
}
.show-all-btn a {
    padding: 5px 10px;  
    background-color: #e5e5ec;
    border-radius: 5px;
    margin-top: 10px;   
}