.quote-autocomplete__list {
    position: absolute;
    z-index: 20;
    top: 100%;
    left: 0;
    right: 0;
    margin: 4px 0 0;
    padding: 6px 0;
    list-style: none;
    background-color: #fff;
    border: 1px solid rgba(0, 0, 0, 0.15);
    border-radius: 6px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);
    max-height: 260px;
    overflow-y: auto;
    text-align: left;
}

.quote-autocomplete__item {
    display: flex;
    flex-direction: column;
    gap: 2px;
    padding: 8px 20px;
    cursor: pointer;
    font-size: 14px;
    line-height: 1.3;
}

.quote-autocomplete__item:hover,
.quote-autocomplete__item.is-active {
    background-color: rgba(0, 0, 0, 0.05);
}

.quote-autocomplete__item-main {
    color: #222;
    font-weight: 500;
}

.quote-autocomplete__item-secondary {
    color: #777;
    font-size: 12px;
}
