.dadata-suggestions {
    position: fixed;
    z-index: 10050;
    display: none;
    max-height: min(280px, 45vh);
    overflow-x: hidden;
    overflow-y: auto;
    margin: 4px 0 0;
    padding: 6px;
    border: 1px solid rgba(23, 32, 51, .14);
    border-radius: 12px;
    background: #fff;
    box-shadow: 0 14px 38px rgba(23, 32, 51, .18);
    color: #172033;
    font-family: Inter, Arial, sans-serif;
    font-size: 15px;
    line-height: 1.35;
}

.dadata-suggestions.is-open {
    display: block;
}

.dadata-suggestions__item {
    display: block;
    width: 100%;
    padding: 10px 12px;
    border: 0;
    border-radius: 8px;
    background: transparent;
    color: inherit;
    font: inherit;
    text-align: left;
    overflow-wrap: anywhere;
    cursor: pointer;
}

.dadata-suggestions__item:hover,
.dadata-suggestions__item.is-active {
    background: rgba(255, 74, 0, .1);
    color: #d83f00;
}

