.current_city {
    display: block;
    border-bottom: 1px dashed #1472bc;
    line-height: normal;
}
.adress_popover {
	position: relative;
	z-index: 100;
	cursor: pointer;
	display: inline-block;
}
.city_popover {
    display: none;
    width: 230px;
    float: left;
    font-size: 16px;
    background-color: #fff;
    position: absolute;
    color: #000;
    top: 100%;
    left: 50%;
    box-sizing: border-box;
    padding: 15px;
    text-align: center;
    background: #fff;
    border-radius: 5px;
    margin-top: 35px;
    opacity: 0;
    line-height: normal;
}
.city_popover .city_name {
    font-weight: bold;
}
.city_popover:after {
    content: "";
    display: block;
    position: absolute;
    right: 50%;
    margin-right: -3px;
    top: -11px;
    border-style: solid;
    border: 6px solid #fff;
    border-bottom: 5px solid #FFFFFF;
    border-left-color: transparent;
    border-right-color: transparent;
    border-top-color: transparent;
    width: 0;
    height: 0;
    z-index: -1;
}
.city_popover a {
    display: inline-block;
    margin: 10px 20px 0 !important;
}
.city_modal {
    width: 500px;
    /* height: 300px; */
    background: #fff;
    position: fixed;
    top: 5%;
    left: 50%;
    /*margin-top: -150px;*/
    margin-left: -200px;
    display: none;
    opacity: 0;
    z-index: 121;
    box-sizing: border-box;
    padding: 30px;
	border-bottom: 5px solid #1b73bb;
}
.city_modal .city_modal_close {
    width: 21px;
    height: 21px;
    position: absolute;
    top: -22px;
    right: -24px;
    cursor: pointer;
    display: block;
    color: #fff;
    font-size: 40px;
}
.city_overlay {
	z-index:120; /* пoдлoжкa дoлжнa быть выше слoев элементoв сaйтa, нo ниже слoя мoдaльнoгo oкнa */
	position:fixed; /* всегдa перекрывaет весь сaйт */
	background-color:#000; /* чернaя */
	opacity:0.5; /* нo немнoгo прoзрaчнa */
	-moz-opacity:0.5; /* фикс прозрачности для старых браузеров */
	filter:alpha(opacity=50);
	width:100%; 
	height:100%; /* рaзмерoм вo весь экрaн */
	top:0; /* сверху и слевa 0, oбязaтельные свoйствa! */
	left:0;
	cursor:pointer;
	display:none; /* в oбычнoм сoстoянии её нет) */
}
.choose_city_title {
    font-size: 24px;
    text-align: center;
    margin: 0 0 20px 0;
    color: #1b73bb;
    display: block;
}
.city_modal a {
    display: inline-block;
    color: #333;
    margin: 0 20px 10px 0px;
    padding-bottom: 5px;
    font-size: 16px;
    border-bottom: 1px dashed #333;
    text-decoration: none;
}
.city_modal a:hover {
	color: #000;
}