.search-results{
    position: relative;
    width: 100%;
    height: auto;
    overflow: hidden;
    background: white;
    max-height: calc(100vh - 200px);
    overflow: auto;
    box-shadow: 0px 5px 16px rgba(0, 0, 0, 0.29);
}
.search-hit{
    position: relative;
    width: 100%;
    height: 70px;
    overflow: hidden;
    display: block;
    color: black;
    font-size: 12px;
    cursor:pointer;
    display: flex;
    flex-direction: row;
    align-items: center;
    border-bottom: 1px solid #d9d9db;
}
.search-hit:hover{
    background: rgba(37, 93, 180, 0.2);
}
.search-hit-img{
    position: relative;
    float: left;
    width: 50px;
    height: 50px;
    margin-left: 10px;
    margin-top: 10px;
    background-size:contain;
    background-position: center;
    background-repeat: no-repeat;
}
.search-hit-info{
    position: relative;
    float: left;
    width: calc(100% - 250px);
}
.search-hit-sku{
    position: relative;
    float: left;
    width: 100%;
    height: 15px;
    margin-left: 10px;
    margin-right: 10px;
    margin-top: 15px;
    font-weight: 600;
}
.search-hit-title{
    position: relative;
    float: left;
    width: 100%;
    height: 45px;
    margin-left: 10px;
    margin-right: 10px;
    font-size: 12px;
    line-height: 15px;
}
.search-hit-price{
    position: relative;
    float: left;
    color: black;
    font-weight: 600;
    width: 70px;
    text-align: right;
    margin-right: 15px;
}
.search-buy-button{
    position: relative;
    float: right;
    width: 75px;
    height: 22px;
    background: #ffaa00;
    color: black;
    text-transform: uppercase;
    line-height: 22px;
    text-align: center;
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.5px;
    margin-left: 10px;
}
.search-hit-view-all{
    position: relative;
    display: block;
    text-align: center;
    color: black;
    font-size: 12px;
    padding-top: 10px;
    padding-bottom: 10px;
    font-weight: 600;
    text-transform: lowercase;
}
.search-hit-view-all:hover{
    background: rgba(37, 93, 180, 0.2);
}
@media screen and (max-width:768px){
    .search-results{
        margin-top: 6px !important;
        max-height: calc(50vh);
        box-shadow: 0px 5px 16px rgb(0 0 0 / 69%);
    }
}