.th-search-box > form{
    display: none; visibility: hidden;
}

.product-search {
    position: relative;
    /* padding: 24px;
    border-radius: 4px;
    box-shadow:0px 0px 24px 0px rgba(0, 0, 0, 0.08);
    border:1px solid #e0e0e0;
    background: #f5f5f5; */
}

.product-search form input{
    width: 220px;
    height: 35px;
    padding: 0 35px 0 8px;
    font-size: 13px;
    border: none;
    border-radius: 0px 0px 4px 4px;
    border-bottom: 1px solid #A8DDF5;
    display: block;
}
 
.product-search .search-results{
    display: none;
    position: absolute;
    width: 100%;
    background: #ffffff;
    padding:10px;
    /* border: 1px solid #e0e0e0; */
    z-index: 15;
    transform: translateY(-1px);
}
 
.search-results.active {
    display: block;
}
 
.product-search .search-results ul {
    list-style: none;
    margin:0 !important;
    padding: 0 !important;
}
 
.product-search .search-results ul li {
    display: block;
    padding: 0;
    position: relative;
    /* border-bottom: 1px dashed #e0e0e0; */
    padding: 5px 10px;
    /* height: 30px; */
    /* overflow: hidden; */
    /* text-overflow: ellipsis; */

}
/* 
.product-search .search-results ul.group-product li:not(.group-title){
    border-radius: 24px;
    border: 1px solid #BCBDBC;
} */
 
.product-search .search-results ul li:last-child {
    border-bottom: none;
}
 
.product-search .search-results ul li a {
    display: table;
    width: 100%;
    font-size: 13px;
    color: #858585;
}
 
.product-search .search-results ul li a > * {
    display: table-cell;
    vertical-align: top;
}
 
.product-search .search-results .product-image {
    width: 32px;
    max-width: 32px;
}
 
.product-data {
    padding-left: 24px;
}
 
.product-search .search-results h3 {
    display: block;
    margin-bottom: 0;
    font-size: 13px;
    color: #0056B8;
}
 
.product-data div:not(.product-categories) {
    display: inline-block;
    vertical-align: middle;
}
 
.product-data .product-price {
    position: absolute;
    top: 12px;
    right: 0;
}
 
.product-data .product-stock {
    padding: 4px 8px;
    background: #eeeeee;
    border-radius: 4px;
    position: absolute;
    bottom: 12px;
    right: 0;
}
 
/* .product-categories > span {
    display: inline-block;
    margin-right: 4px;
}
 
.product-categories > span:after {
    content: ",";
}
 
.product-categories > span:last-child:after {
    content: "";
}
 
.product-categories > span:last-child {
    margin-right:0;
} */
 
/* .product-search select {
    width: 100% !important;
    min-height: 40px !important;
    margin-bottom: 16px;
} */
 
.product-search select,
.product-search input {
    background: #ffffff;
    border:1px solid #e0e0e0;
}
 
.search-wrapper {
    position: relative;
}
 
.search-wrapper input {
    padding-right: 35px !important;
}
 
.search-wrapper svg {
    position: absolute;
    top: 10px;
    right: 30px;
    width: 20px;
    height: 20px;
    fill:#bdbdbd;
    animation: loading 500ms 0ms infinite normal linear;
    transform-origin: center;
    opacity: 0; visibility: hidden;
}
 
.search-wrapper.loading svg {
    opacity:1; visibility: visible;
}
 
@keyframes loading {
    from {transform: rotate(0deg);}
    to {transform: rotate(360deg);}
}