.city-search {
    position: relative;
    width: 320px;
    font-family: inherit;
}

/* SEARCH BOX */
.city-search-box {
    display: flex;
    align-items: center;

    background: #fff;

    border: 1px solid #d9d9d9;
    border-radius: 14px;

    padding: 0 14px;

    height: 48px;

    transition: all 0.2s ease;
}

/* HOVER */
.city-search-box:hover {
    border-color: #111;
}

/* FOCUS */
.city-search-box:focus-within {
    border-color: #111;

    box-shadow: 0 0 0 4px rgba(0,0,0,.04);
}

/* ICON */
.city-search-icon {
    width: 18px;
    height: 18px;

    color: #777;

    margin-right: 10px;

    flex-shrink: 0;
}

/* INPUT */
#city-search {
    border: none;
    outline: none;

    width: 100%;
    height: 46px;

    font-size: 15px;

    background: transparent;

    color: #111;
}

/* DROPDOWN */
#city-results {
    position: absolute;

    top: 56px;
    left: 0;
    right: 0;

    background: white;

    border: 1px solid #ececec;
    border-radius: 14px;

    padding: 8px;
    margin: 0;

    list-style: none;

    box-shadow: 0 10px 30px rgba(0,0,0,.08);

    z-index: 9999;

    /* 🔥 IMPORTANT: caché par défaut */
    display: none;
}

/* ACTIVE STATE */
#city-results.active {
    display: block;
}

/* RESULT */
#city-results li {
    padding: 12px 14px;

    border-radius: 10px;

    cursor: pointer;

    transition: all .15s ease;

    color: #111;

    font-size: 14px;
}

/* HOVER */
#city-results li:hover {
    background: #cbccf7;
}

/* BOLD */
#city-results strong {
    font-weight: 600;
}