.city-autocomplete {
    width: 100%;
    position: relative;
    display: block;
}

.city-autocomplete > input[type="text"] {
    width: 100%;
}

.city-autocomplete__suggestions {
    position: absolute;
    z-index: 100;
    top: calc(100% + 6px);
    right: 0;
    left: 0;
    max-height: 240px;
    overflow-y: auto;
    border: 1px solid rgba(255, 255, 255, 0.35);
    overflow: hidden;
    border-radius: 14px;
    background: #fff;
    box-shadow: 0 14px 35px rgba(20, 40, 35, 0.18);
}

.city-autocomplete__option {
    width: 100%;
    min-height: 42px;
    padding: 8px 12px;
    border: 0;
    border-bottom: 1px solid #e5ece9;
    display: block;
    color: #173932;
    background: transparent;
    font-family: var(--portal-font, inherit);
    font-size: 12px;
    line-height: 1.4;
    font-weight: 550;
    text-align: left;
    cursor: pointer;
}

.city-autocomplete__option:last-child {
    border-bottom: 0;
}

.city-autocomplete__source {
    padding: 7px 10px;
    display: block;
    color: #64736e;
    font-size: 10px;
    text-align: right;
}

.city-autocomplete__option:hover,
.city-autocomplete__option:focus-visible,
.city-autocomplete__option.is-active {
    background: #eff8f5;
    outline: none;
}
