input.search-form_input {
    background: url(../images/search.svg) no-repeat center;
    background-color: var(--grey-color);
    background-size: 23px;
    background-position-x: 15px;
    border: none;
    box-shadow: none;
    width: 100%;
    padding: 15px 15px 15px 50px;
    border-radius: 4px;
    transition: .2s all;
    outline: solid 2px transparent;

    &.mobile-search-input {
        background-color: #fff;
    }
}

input.search-form_input:focus {
    outline: solid 2px var(--blue-color);
}

input.search-form_input::placeholder {
    font-style: normal;
}

.site-search {
    .aw-grid-search-results {
        position: absolute;
    }
}

.clerk-instant-search-title {
    border-bottom: solid 1px #e2e2e2;
}

.clerk-instant-search-product-name {
    margin: 0;
    font-weight: 600;
    font-size: 14px;
    color: var(--black-color);
}

.clerk-instant-search-product-price {
    color: var(--black-color);
    font-weight: normal;
}

.clerk-instant-search-link {
    align-items: center;
}

.clerk-instant-search-product-image {
    width: 3em;
    height: 3em;
    border: solid 1px var(--grey-color);
    border-radius: 4px;
    background-color: var(--white-color);
}

.clerk-instant-search-product:not(:last-of-type) {
    border-bottom: solid 1px var(--grey-color);
    padding: 10px;
    margin: 0;
}

.clerk-instant-search-product {
    transition: .1s ease;
}

.clerk-instant-search-product:hover {
    background-color: var(--grey-color);
}

.clerk-instant-search-product:last-of-type {
    margin-bottom: 20px;
}

.clerk-instant-search-more-results {
    background: none;
}

.clerk-instant-search-more-results a {
    background: var(--black-color);
    width: 100%;
    display: flex;
    height: auto;
    padding: 15px;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    border-radius: 4px;
    transition: .2s ease;
}

.clerk-instant-search-more-results a u {
    text-decoration: none;
}

.clerk-instant-search-more-results a:hover {
    color: var(--white-color);
    background: var(--blue-color);
}

.clerk-instant-search-category {
    margin: 0;
    border: none;
    padding: 0;
    font-size: 14px;
    font-weight: 600;
}

.clerk-instant-search-category a {
    padding: 5px 10px;
    background: #eee;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: .2s ease;
    border-radius: 100px;
}

.clerk-instant-search-category a:hover {
    background: var(--blue-color);
    color: var(--white-color);
}

.clerk-instant-search-categories,
.clerk-instant-search-suggestions {
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
}

.clerk-instant-search-title {
    flex-basis: 100%;
}