div#city_ask_popup {
    display:none;
    border: 1px solid #505050;
    background: #fff;
    width: 300px;
    height: 100px;
    border-radius: 15px;
    color: #000;
    padding: 20px 10px 10px;
    text-align: center;
    line-height: 1;
    max-height: 70%;
    max-width: 90%;

    font-size: 18px;
    position:fixed;
    top:50%;
    left:50%;
    transform:translate(-50%, -50%);
    z-index: 1000;
}
div#city_ask_popup .city_ask_buttons_block {
    height: 70px;
    margin: 20px;
}
div#city_ask_popup .city_ask_button {
    color: #ffffff;
    background-color: #505050;
    padding: 5px;
    margin: 10px;
    border: 1px solid #000;
    border-radius: 5px;
}
div#city_popup {
    display:none;
    /*position: absolute;*/
    /*top: 80px;*/
    /*right:20px;*/
    border: 1px solid #505050;
    background: #fff;
    width: 500px;
    max-width: 90%;
    height: 500px;
    max-height: 80%;
    border-radius: 15px;
    color: #000;
    padding: 20px 10px 10px;


    position:fixed;
    top:50%;
    left:50%;
    transform:translate(-50%, -50%);
    z-index: 1000;
}
div#city_popup a, div#city_popup ul li a,
div#city_popup a:hover, div#city_popup ul li a:hover {
    color:#505050;
    text-decoration: none;
    border: none;
}
.city_popup_close {
    position: absolute;    right: 15px;    top: 5px;    cursor: pointer;
}
div#city_popup > ul {
    overflow-y: auto;height: 100%;
}
div#city_popup ul li {
    display: inline-block;
    padding: 0;
    font-size: 14px;
    margin: 0;
    width: 32%;
}
@media (max-width: 500px) {
    div#city_popup ul li {
        width: 48%;
    }
}
div#city_popup ul li.main_city {
    display: block;
    width: 100%;
    font-size: 16px;
    text-align: center;
    border-bottom: 1px solid #505050;
    margin-bottom: 5px;
    padding-bottom: 5px;
}