/* Контейнер попапа со списком (в идеале лежит рядом с input place) */
.bc-city-suggest {
    position: absolute;
    left: 0;
    right: 0;
    top: calc(100% + 6px);

    z-index: 1000;
    background: #fff;
    border: 1px solid rgba(0, 0, 0, 0.12);
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);

    padding: 6px;
    max-height: 320px;
    overflow: auto;

    /* приятный скролл */
    scrollbar-width: thin;
}

/* Кнопка-элемент списка */
.bc-city-item {
    width: 100%;
    text-align: left;

    display: block;
    border: 0;
    background: transparent;
    cursor: pointer;

    padding: 10px 12px;
    border-radius: 10px;

    transition: background 120ms ease, transform 120ms ease;
}

/* Строка текста */
.bc-city-title {
    font-size: 14px;
    line-height: 18px;
    font-weight: 600;
    color: #111;

    /* если длинное */
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* Hover/active */
.bc-city-item:hover {
    background: rgba(0, 0, 0, 0.04);
}

.bc-city-item.is-active {
    background: rgba(0, 0, 0, 0.08);
}

/* Если нужно визуально подружить с инпутом */
.filters {
    position: relative; /* чтобы абсолютный попап привязался */
}
