.live-search {
    z-index: 999;
}

.live-search__ul {
    position: absolute;
    left: 0;
    z-index: 1000;
    top: 80px;
    width: 100%;
    max-height: 80vh;
    overflow-y: auto;
    list-style: none;
    padding: 15px;
    background: #fff;
    border-radius: 3px;
    border: solid 1px rgba(0, 0, 0, .12);
    box-shadow: 0 6px 12px rgba(0, 0, 0, .2)
}

.live-search__section {
    margin: 0 0 5px;
    font-weight: 500;
    text-transform: uppercase
}

.live-search__category {
    padding: 5px 0;
    font-size: .95em;
    font-weight: 500;
    cursor: pointer;
}

.live-search__category:hover {
    background: rgba(0, 0, 0, .03)
}

.live-search__category:before {
    margin: 0 5px 0 0;
    content: "\2022";
    font-size: .75em;
    color: #aaa
}

.live-search__category + .live-search__section {
    margin-top: 15px
}


.live-search__item {
    display: flex;
    align-items: center;
    padding: 10px 5px;
    cursor: pointer;
}

.live-search__item:hover {
    background: rgba(0, 0, 0, .03)
}

.live-search__item + .live-search__item {
    border-top: solid 1px rgba(0, 0, 0, .07)
}

.live-search__image {
    padding: 0 10px;
    text-align: center
}

.live-search__wrapper {
    width: 100%;
    padding: 0 10px
}

.live-search__name {
    margin: 0 0 5px;
    font-size: .95em;
    font-weight: 500
}

.live-search__description {
    color: #888;
    font-size: .85em
}

.live-search__rating {
    display: block;
    margin: 3px 0 0
}

.live-search__price {
    flex-wrap: wrap;
    width: 100px;
    white-space: nowrap
}

.live-search__price span {
    display: block;
    margin: 0 0 5px !important
}

.live-search__more {
    justify-content: center;
    margin: 5px 0 0;
    font-weight: 500;
    line-height: 30px;
    border: none !important;
    background: #f7f7f7
}

.live-search__loading {
    height: 34px
}

.live-search__loading:before {
    position: absolute;
    top: 50%;
    left: 50%;
    display: block;
    width: 20px;
    height: 20px;
    margin: -10px auto auto -10px;
    content: '';
    border: solid 3px;
    border-color: #f6846a #f6846a transparent;
    border-radius: 100%;
    animation: spin 1s infinite linear
}

@media (max-width: 768px) {
    .live-search__ul {
        max-height: calc(100vh - 150px);
        width: unset
    }

    .live-search__description {
        display: none
    }
}