.custom-live-search {
    width: 100%;
}

.custom-live-search-input-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    width: 100%;
}

.custom-live-search-input {
    width: stretch;
    height: 48px;
    padding: 0 45px;
    border: 1px solid #d5d8dc;
    border-radius: 3px;
    background: #fff;
    font-size: 16px;
    outline: none;
    box-sizing: border-box;
}

.custom-live-search-input:focus {
    border-color: #999;
}

.custom-live-search-icon {
    position: absolute;
    left: 15px;
    width: 18px;
    height: 18px;
    pointer-events: none;
}

.custom-live-search-icon svg {
    width: 18px;
    height: 18px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
}

.custom-live-search-clear {
    position: absolute;
    right: 12px;
    border: 0;
    background: transparent;
    font-size: 24px;
    line-height: 1;
    cursor: pointer;
}

.custom-live-search-loader {
    padding: 10px 0;
    font-size: 13px;
    opacity: .6;
}


/**
 * =========================================================
 * PRODUITS
 * =========================================================
 */

.custom-live-search-products-grid {
    display: grid;
    grid-template-columns: repeat(
        var(--columns),
        minmax(0, 1fr)
    );
    gap: 20px;
}

.custom-live-search-products-grid .product {
    width: auto !important;
    margin: 0 !important;
}


@media (max-width: 767px) {

    .custom-live-search-products-grid {
        grid-template-columns: repeat(
            2,
            minmax(0, 1fr)
        );
    }

}
