.geo-search-container {
    position: relative;
    width: 100%;
}
.geo-search-block input {
    width: 100%;
    padding: 10px;
    border: none;
    /*border-radius: 4px;*/
    font-size: 16px;
    outline: none;
}
.geo-search-block {
    display: flex;
    width: 100%;
}
.geo-search-block button {
    height: 40px;
    margin: 5px;
}
.geo-clear-button {
    width: 24px;
    cursor: pointer;
    background: none;
    border: none;
    font-size: 12px;
    color: #888;
    flex-shrink: 0;
}
.geo-dropdown {
    position: fixed;
    /*width: 400px;*/
    max-height: 200px;
    overflow-y: auto;
    background: #fff;
    border: 1px solid #ccc;
    border-radius: 4px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    display: none;
    z-index: 1000;
}
.geo-dropdown-item {
    padding: 10px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    font-size: 12px;
}
.geo-dropdown-item:hover,
.geo-dropdown-item.selected {
    background: #f0f0f0;
}
.geo-dropdown-item-text {
    font-weight: bold;
    flex-shrink: 0;
}
.geo-dropdown-item-hint {
    color: #888;
    text-align: right;
}
.geo-search-container:focus-within #dropdown {
    display: block;
}

.common-cities {

}
.common-cities ul {
    display: flex;
    column-gap: 10px;
    row-gap: 7px;
    flex-wrap: wrap;
    margin-top: 6px;
}
.common-cities li {
    margin: 0 0;
    line-height: 1;
    /*height: 0;*/
}
.common-cities a {
    cursor: pointer;
    font-size: 14px;
    text-decoration: underline;
    margin: 0 0;
}

.dialog .geo-search-container {
    border: 1px solid #d0d0d0;
    border-radius: 10px;
}
.dialog .geo-search-container input {
    background-color: transparent;
}

@media (max-width: 768px) {
    .geo-dropdown {
        width: 100%;
    }
}


.dropdown-control {
    position: relative;
    width: 100%;
}
.dropdown-control .search-block input {
    width: 100%;
    padding: 10px;
    border: none;
    /*border-radius: 4px;*/
    font-size: 16px;
    outline: none;
}
.dropdown-control .search-block {
    display: flex;
    width: 100%;
}
.dropdown-control .search-block .clear-button {
    width: 24px;
    cursor: pointer;
    background: none;
    border: none;
    font-size: 12px;
    color: #888;
    flex-shrink: 0;
}
.dropdown-control .dropdown-list {
    position: fixed;
    /*width: 400px;*/
    max-height: 200px;
    overflow-y: auto;
    background: #fff;
    border: 1px solid #ccc;
    border-radius: 4px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    display: none;
    z-index: 1000;
}
.dropdown-control .dropdown-list .dropdown-item {
    padding: 10px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    font-size: 12px;
    color: #000;
    font-weight: 500;
}
.dropdown-control .dropdown-list .dropdown-item:hover,
.dropdown-control .dropdown-list .dropdown-item.selected {
    background: #f0f0f0;
}
.dropdown-control .dropdown-list .dropdown-item-text {
    font-weight: bold;
    flex-shrink: 0;
}
.dropdown-control .dropdown-list .dropdown-item-hint {
    color: #888;
    text-align: right;
}
.dropdown-control .dropdown-control:focus-within .dropdown-list {
    display: block;
}
