/* Life Horoscope - "Place of Birth" city suggestion panel */

.lh-birthplace-suggest {
    position: absolute;
    z-index: 100000;
    max-height: 260px;
    min-width: 220px;
    overflow-y: auto;
    padding: 6px;
    border: 1px solid #e8ecf1;
    border-radius: 12px;
    background: #ffffff;
    box-shadow: 0 12px 34px rgba(11, 31, 77, 0.16);
    font-family: 'Segoe UI', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 14px;
    line-height: 1.35;
    color: #2c3e50;
}

.lh-birthplace-suggest[hidden] {
    display: none;
}

.lh-birthplace-option {
    padding: 9px 12px;
    border-radius: 8px;
    cursor: pointer;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.lh-birthplace-option:hover,
.lh-birthplace-option.is-active {
    background: #fdecea;
    color: #c0392b;
    font-weight: 600;
}

@media (max-width: 520px) {
    .lh-birthplace-suggest {
        max-height: 210px;
        font-size: 15px;
    }
}
