.search {
    max-height: 95vh;
    overflow-y: auto;
}

/* search form */
.search-form_wrapper {
    display: flex;
    flex-direction: row;
    padding: 6% 11% 4%;
    justify-content: space-between;
}

.search-form {
    display: flex;
    flex-direction: row-reverse;
    justify-content: flex-end;
    font-family: "Barlow Condensed", sans-serif;
    font-size: 20px;
    width: 100%;
    background-color: #fff;
}

.search-input {
    background-color: initial;
    color: hsl(38deg, 33%, 23%);
    border: none;
    overflow: hidden;
    width: 80%;
    margin-left: 1rem;
}

/* .search-input: */
/* input[type=text]:focus, */
/* input[type=email]:focus, */
.search-input:focus {
    border: none;
    outline: none;
}

.search-btn {
    background-color: initial;
    color: hsl(38deg, 33%, 23%);
    border: none;
    font-family: "Barlow Condensed", sans-serif;
}

.suggestions {
    /* padding: 1% 0 2% 10%; */
    transition: 400ms ease-out;
    /* initially when not active */
    max-height: 0;
    overflow: hidden;
    transition: 400ms ease-out;
}

.suggestions.active-suggest {
    padding: 1% 0 2% 10%;
}

.popular-searches {
    font-size: 14px;
}

.keyword-heading {
    font-family: "Barlow Condensed", sans-serif;
    font-size: 14px !important;
}

.keywords-wrapper {
    display: flex;
    flex-direction: row;
    overflow-y: auto;
    flex-wrap: nowrap;
    gap: 1rem;
    padding: 1rem 1rem 1rem 0;
}

.keyword a {
    word-break: keep-all;
    white-space: nowrap;
    text-decoration: none;
    color: inherit;
    border: 1px solid;
    padding: 5px 7px;
}

/* width */
.product_list::-webkit-scrollbar,
.keywords-wrapper::-webkit-scrollbar {
    height: 0px;
}

/* Track */
.keywords-wrapper::-webkit-scrollbar-track {
    background: #f1f1f1;
    width: 0;
}

/* Handle */
.keywords-wrapper::-webkit-scrollbar-thumb {
    background: #888;
    width: 0;
}

/* Handle on hover */
.keywords-wrapper::-webkit-scrollbar-thumb:hover {
    background: #555;
}

.trending-products {
    padding: 1rem 1rem 1rem 0;
}

.products-wrapper {}

.products-wrapper a {
    text-decoration: none !important;
    color: inherit !important;
}

.product_list {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    overflow-x: auto;
    margin-top: 0.5rem;
    column-gap: 1rem;
}

.product_list.flex-wrap {
    flex-wrap: wrap;
    row-gap: 1rem;
}

.product-item {
    min-width: 198px;
    max-width: 220px;
}

.product-item:not(:first-child) {
    /* margin-left: 1rem; */
}

.item-img {}

.item-img img {}

.item-title {
    font-family: "Barlow Condensed", sans-serif;
    font-size: 16px;
    padding-right: 4%;
    /* min-height: 38px; */
    padding-top: 10px;
    letter-spacing: 0.55px;
}

.item-price-info {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    color: hsl(38deg, 33%, 23%);
    font-weight: 600;
    padding: 0.25rem 0;
}

.currency {
    margin-right: 5px;
}

.value {}

.close-search {
    visibility: hidden;
    width: 18px;
    position: relative;
    left: 15px;
}

.close-icon {
    position: relative;
    display: inline-flex;
    align-items: center;
    /* initially */
}

.visible {
    visibility: visible;
}

.close-icon::before,
.close-icon::after {
    content: "";
    position: absolute;
    display: block;
    height: 1.5px;
    width: 16px;
    background-color: #000;
    background-color: currentColor;
}

.close-icon::before {
    transform: rotate(45deg);
}

.close-icon::after {
    transform: rotate(-45deg);
}

.container_h {
    /* position: relative; */
    position: absolute;
    z-index: 10;
    width: 100%;
    background-color: #fff;
    max-height: 0;
    overflow: hidden;
    /* top: 2rem; */
    transform: translateY(-40vh);
    transition: 700ms ease-in;
}

.container_h.active-search-bar {
    transform: translateY(6vh);
    position: fixed;
}

.container_h .search .close-search {
    display: none;
}

.container_h .suggestions.active-suggest {
    margin-bottom: 1rem;
}


#close-container_h {
    width: 18px;
    position: relative;
    left: 15px;
}