.hg-live-search-host {
    position: relative;
}

.hg-live-search {
    position: absolute;
    z-index: 1080;
    top: calc(100% + .4rem);
    right: 0;
    left: 0;
    overflow: hidden;
    max-height: min(70vh, 36rem);
    overflow-y: auto;
    border: 1px solid rgba(0, 0, 0, .14);
    border-radius: .65rem;
    background: var(--body-bg, #fff);
    color: var(--body-color, #222);
    box-shadow: 0 .75rem 2rem rgba(0, 0, 0, .18);
}

.hg-live-search[hidden] {
    display: none !important;
}

.hg-live-search__item {
    display: grid;
    grid-template-columns: 3.5rem minmax(0, 1fr) auto;
    gap: .75rem;
    align-items: center;
    min-height: 4.5rem;
    padding: .55rem .75rem;
    border-bottom: 1px solid rgba(127, 127, 127, .18);
    color: inherit;
    text-decoration: none;
}

.hg-live-search__item:hover,
.hg-live-search__item:focus,
.hg-live-search__item.is-active {
    background: rgba(45, 125, 62, .12);
    color: inherit;
    outline: none;
}

.hg-live-search__image-wrap {
    display: grid;
    width: 3.5rem;
    height: 3.5rem;
    place-items: center;
    overflow: hidden;
    border-radius: .4rem;
    background: #fff;
}

.hg-live-search__image {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.hg-live-search__details {
    display: flex;
    min-width: 0;
    flex-direction: column;
    line-height: 1.25;
}

.hg-live-search__details strong {
    overflow: hidden;
    text-overflow: ellipsis;
}

.hg-live-search__details small {
    margin-top: .2rem;
    color: currentColor;
    opacity: .65;
}

.hg-live-search__price {
    padding-left: .5rem;
    font-weight: 700;
    white-space: nowrap;
}

.hg-live-search__all,
.hg-live-search__empty,
.hg-live-search__loading {
    display: block;
    padding: .8rem 1rem;
    text-align: center;
}

.hg-live-search__all {
    color: var(--primary, #2d7d3e);
    font-weight: 700;
}

html[data-hg-theme="dark"] .hg-live-search {
    border-color: rgba(102, 219, 122, .35);
    background: #07150b;
    color: #ecf7ee;
    box-shadow: 0 .75rem 2rem rgba(0, 0, 0, .55);
}

html[data-hg-theme="dark"] .hg-live-search__item {
    border-bottom-color: rgba(102, 219, 122, .18);
    color: #ecf7ee !important;
}

html[data-hg-theme="dark"] .hg-live-search__details strong,
html[data-hg-theme="dark"] .hg-live-search__details small,
html[data-hg-theme="dark"] .hg-live-search__price {
    color: inherit !important;
}

html[data-hg-theme="dark"] .hg-live-search__item:hover,
html[data-hg-theme="dark"] .hg-live-search__item:focus,
html[data-hg-theme="dark"] .hg-live-search__item.is-active {
    background: rgba(45, 180, 68, .2);
}

html[data-hg-theme="dark"] .hg-live-search__all {
    color: #72df84;
}

@media (max-width: 575.98px) {
    .hg-live-search {
        position: fixed;
        top: var(--hg-live-search-mobile-top, 4.5rem);
        right: .5rem;
        left: .5rem;
        max-height: calc(100dvh - 5rem);
    }

    .hg-live-search__item {
        grid-template-columns: 3rem minmax(0, 1fr);
        min-height: 4rem;
        padding: .5rem;
    }

    .hg-live-search__image-wrap {
        width: 3rem;
        height: 3rem;
    }

    .hg-live-search__price {
        grid-column: 2;
        padding-left: 0;
    }
}
