.search-box {
    position: relative;
}

.no-results {
    padding: 8px;
}

.searching {
    padding: 8px;
    display: none;
}

.rs-search-result-item{
    padding: 8px;
    cursor: pointer;
}

.rs-search-box .rs-search-box-input {
    border-radius: 7px;
    border: #f2f3f7 solid 1px !important;
    background: #f2f3f7;
    height: 50px;
    overflow: hidden;
    width: 100%;
    z-index: 10;
    display: block;
}

.rs-search-box .rs-search-box-input input[type="search"],
.rs-search-box .rs-search-box-input input[type="text"] {
    background: transparent;
    line-height: 50px;
    position: relative;
    padding: 0 10px 0 1px;
    z-index: 2;
    display: block;
    width: 100%;
    border: 0;
    transition: all 0.6s ease 0.1s;
    color: #292929;
}



.rs-search-box .rs-search-box-result {
    position: absolute;
    width: 100%;
    top: 51px;
    padding: 15px;
    background: #fff;
    border-radius: 0 0 7px 7px;
    z-index: 10;
    box-shadow: 0 3px 10px -2px rgb(0 0 0 / 28%);
    transition: all 0.6s ease 0.1s;
    text-align: right;
    max-height: 415px;
    overflow-y: auto;
    display: flex;
    flex-wrap: wrap;
}

.loading-active{
    display: unset !important;
}
.rs-search-title span{
    cursor: pointer;
}
.rs-search-box .rs-search-box-result .rs-search-item {
    flex: 0 0 23%;
    width: auto;
    margin-bottom: 10px;
    background: #fff;
    border-radius: 7px;
    box-shadow: 0 3px 10px -2px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-right: 5px;
}

.rs-search-box .rs-search-box-result .rs-search-item .rs-search-image{
    display: flex;
    justify-content: center;
}

.rs-search-box .rs-search-box-result .rs-search-item .rs-search-image img{
    max-width: 100%;
    max-height: 100%
}