#wa-step-region-section .wa-city-wrapper {
    width: 100%;
    max-width: 520px;
    overflow: visible;
}

#wa-step-region-section .js-city-autocomplete,
#wa-step-region-section .js-pp-city-input {
    width: 100%;
    box-sizing: border-box;
}

.pp-city-box {
    position: relative;
    width: 100%;
}

.pp-city-drop {
    position: fixed;
    z-index: 2147483646;
    max-height: 280px;
    overflow-y: auto;
    overflow-x: hidden;
    padding: 4px 0;
    border: 1px solid #d8dde6;
    border-radius: 8px;
    box-shadow: 0 8px 24px rgba(20, 30, 50, 0.16);
    background: #fff;
}

.pp-city-drop[hidden] {
    display: none !important;
}

.pp-city-item {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 12px;
    width: 100%;
    margin: 0;
    padding: 8px 12px;
    border: 0;
    background: transparent;
    font: inherit;
    font-size: 14px;
    line-height: 1.3;
    text-align: left;
    cursor: pointer;
}

.pp-city-item__name {
    min-width: 0;
    font-weight: 600;
    color: #1a1a1a;
}

.pp-city-item__reg {
    flex: 0 1 auto;
    color: #6b7280;
    font-size: 13px;
    text-align: right;
    white-space: nowrap;
}

.pp-city-item:hover,
.pp-city-item.is-active {
    background: #eef4ff;
}

.pp-city-item:hover .pp-city-item__name,
.pp-city-item.is-active .pp-city-item__name {
    color: #1a73e8;
}

@media (max-width: 560px) {
    .pp-city-item {
        flex-direction: column;
        gap: 2px;
    }
    .pp-city-item__reg {
        text-align: left;
        white-space: normal;
    }
}
