ul.search-results-list img {
    width: 175px;
    height: 175px;
    object-fit: contain;
    max-width: unset;
    background: #fff;
    padding: 10px;
    border-radius: 5px;
}
ul.search-results-list li a {
    display: flex;
    gap: 10px;
    align-content: center;
    align-items: center;
}

#search-lightbox {
    font-size: 1.5em;
    margin: 0 auto;
    max-width: 800px;
}

.live-search-results {
    height: 700px;
    overflow: auto;
    top: 20px;
    position: relative;
}
#loading-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 9999;
    justify-content: center;
    align-items: center;
    color: white;
    font-size: 2rem;
}
ul.search-results-list {
    background: #0000009c;
    padding: 9px;
    list-style-type: none;
}
@media only screen and (max-width: 48em) {

    /*************** ADD MOBILE ONLY CSS HERE  ***************/
    ul.search-results-list img {
        width: 130px !important;
        height: 130px !important;
        object-fit: cover;
        max-width: unset;
    }
	.live-search-results {
		height: unset;
		overflow: auto;
		top: 20px;
		position: relative;
	}
}