.am-live-search-form {
    position: relative;
}

.am-live-search {
    position: absolute;
    z-index: 100100;
    top: calc(100% + 8px);
    right: 0;
    left: 0;
    overflow: hidden;
    max-height: min(72vh, 620px);
    overflow-y: auto;
    background: #fff;
    border-radius: 14px;
    box-shadow: 0 16px 48px rgba(31, 35, 40, .2);
    color: #353535;
    text-align: left;
    overscroll-behavior: contain;
}

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

.am-live-search__group + .am-live-search__group {
    border-top: 1px solid #e6e6e6;
}

.am-live-search__group-title {
    padding: 10px 13px 6px;
    color: #b92189;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: .04em;
    text-transform: uppercase;
}

.am-live-search__item {
    display: grid;
    grid-template-columns: 50px minmax(0, 1fr);
    gap: 11px;
    align-items: center;
    min-height: 60px;
    padding: 6px 13px;
    color: #353535;
    text-decoration: none;
}

.am-live-search__item:hover,
.am-live-search__item:focus,
.am-live-search__item.is-active {
    background: #f3f4f6;
    color: #353535;
    outline: none;
}

.am-live-search__thumb {
    display: block;
    width: 50px;
    height: 50px;
    object-fit: cover;
    background: #eef0f3;
    border: 1px solid rgba(185, 33, 137, .45);
    border-radius: 10px;
}

.am-live-search__thumb--empty::before {
    display: block;
    color: #b92189;
    font-size: 20px;
    line-height: 48px;
    text-align: center;
    content: "⌕";
}

.am-live-search__body {
    display: block;
    min-width: 0;
}

.am-live-search__title {
    display: -webkit-box;
    overflow: hidden;
    font-size: 13px;
    font-weight: 700;
    line-height: 1.25;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}

.am-live-search__meta {
    display: block;
    overflow: hidden;
    margin-top: 4px;
    color: #747980;
    font-size: 9px;
    line-height: 1.25;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.am-live-search__message {
    padding: 20px 14px;
    color: #747980;
    font-size: 12px;
    text-align: center;
}

.am-live-search__footer {
    display: block;
    padding: 10px 14px;
    background: #f3f4f6;
    color: #b92189;
    font-size: 11px;
    font-weight: 600;
    text-align: center;
    text-decoration: none;
}

.am-live-search__footer:hover,
.am-live-search__footer:focus-visible {
    background: rgba(185, 33, 137, .1);
    color: #b92189;
}

.search-screen .am-live-search {
    top: calc(100% + 12px);
}

@media (max-width: 575px) {
    .am-live-search {
        right: -4px;
        left: -4px;
        max-height: 64vh;
        border-radius: 12px;
    }

    .am-live-search__item {
        grid-template-columns: 46px minmax(0, 1fr);
        padding-right: 10px;
        padding-left: 10px;
    }

    .am-live-search__thumb {
        width: 46px;
        height: 46px;
    }
}
