.fuzzyResults {
    display: block !important;
}
.form-card__inner {
    overflow: visible !important;
}
.search-names {
    padding: 1em 2em;
    width: 250px;
    background: #eee;
    display: inline-block;
    margin: auto;
    line-height: 1.6;
}
.search-names h3 {
    margin-bottom: 0;
}
.search-names a {
    color: #1da1f2;
}
.form-element {
    max-width: 900px;
    margin: auto;
}
.query-filter {
    position: relative;
}
.auto-complete {
    position: absolute;
    z-index: 1000;
    top: 100%;
    width: 100%;
    background: #fff;
    overflow-y: auto;
    max-height: 500px;
}
.auto-complete__options {
    border: 1px solid rgba(0, 0, 0, .1);
    display: none;
    margin: 0;
    padding: 0;
    list-style-type: none;
}
.auto-complete__options li {
    padding: 5px 10px;
    font-size: 14px;
    cursor: pointer;
}
.auto-complete__options li:hover {
    background: rgba(0, 0, 0, .05);
}
.auto-complete__options li:last-of-type {
    margin-bottom: 0;
}

.form-element.active .auto-complete__options {
    display: block;
}
