.fixed-product-search {
    display: flex;
    align-items: stretch;
    position: relative;
}

.fixed-product-search .search-field {
    width: 200px;
    height: 50px;
    border: 0;
    background: #f2f2f2;
    padding: 0 20px;
    box-sizing: border-box;
}

.fixed-product-search .search-submit {
    width: 50px;
    height: 50px;
    border: 0;
    margin: 0;
    padding: 0;
    background: #c79a6b;
    cursor: pointer;
    position: relative;
    z-index: 99;
    pointer-events: auto;
}

.fixed-product-search .search-submit::before {
    content: "\f002";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    color: #fff;
    font-size: 16px;
    line-height: 50px;
    display: block;
    text-align: center;
    pointer-events: none;
}