body.noscroll{
    overflow: hidden;
}

.change-button{
    display: none;
    position: absolute;
    box-shadow: 0px 2px 8px rgba(3, 97, 237, 0.15);
    padding: 10px;
    background: #fff;
    font-size: 1.5rem;
    z-index: 5;
    left: 0;
    width: 270px;
    top: 14px;
    font-weight: 300;
    right: 0;
    margin: auto;
}

.change-button span{
    color: #eb5757;
    font-weight: 700;
    font-size: 1.6rem;
}

.change-button button{
    background: #0361ed;
    border: none;
    outline: none;
    color: #fff;
    font-weight: 700;
    display: inline-block;
    width: 55px;
    text-align: center;
    height: 30px;
    border-radius: 5px;
    margin-top: 5px;
    padding: 0;
    font-size: 1.4rem;
    transition: all 0.2s ease 0s;
}

.change-button button:hover{
    opacity: 0.8;
}

.change-button button+button{
    margin-left: 5px;
}

.city-choose-block{
    width: 200px;
    text-align: center;
}

.current-city:not(.wr-city){
    display: inline-block;
    cursor: pointer;
    position: relative;
    padding-left: 18px;
    transition: all 0.2s ease .1s;
    -webkit-transition: all 0.2s ease .1s;
    font-size: 1.4rem;
}
.current-city:hover{
    opacity: 0.8;
}
.current-city:not(.wr-city):before{
    content: "";
    display: block;
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    margin: auto;
    width: 11px;
    height: 16px;
    background: url('/wp-content/themes/university-hub/img/map.svg') no-repeat 0 0/100%;
}

.all-city {
    visibility: hidden;
    position: fixed;
    width: 65%;
    height: 0;
    min-width: 300px;
    height: 0;
    background: #fff;
    top: 0;
    left: 0;
    right: 0;
    z-index: -100;
    bottom: 0;
    color: #000;
    box-sizing: border-box;
    overflow: auto;
    transition: all 0.2s ease .1s;
    -webkit-transition: all 0.2s ease .1s;
    margin: auto;
    font-size: 1.6rem;
    text-align: left;
}

.all-city.show-all-city{
    display: block;  
    height: 90%;
    z-index: 999999;
    visibility: visible;
    padding: 25px;
}

.title-choose{
    text-align: center;
    font-weight: 700;
    margin-bottom: 15px;
}

.all-city ul{
    display: flex;
    flex-wrap: wrap;
    overflow-y: auto;
    list-style-type: none;
}

.all-city ul li{
    width: 33.33%;
    padding-right: 15px;
    box-sizing: border-box;
    padding-bottom: 10px;
}

.all-city ul li a{
    color: #000;
}

.all-city a:hover,
.close-all-city:hover{
    color: #003077;
}

.close-all-city{
    position: absolute;
    right: 20px;
    top: 20px;
    font-size: 25px;
    line-height: 1;
    cursor: pointer;
}

.top-head-wrap .all-city-desc{
    text-align: center;
    border-top: 1px solid #cdcd;
    padding-top: 10px;
}

.top-head-wrap .all-city-desc a{
    color: #003077;
    cursor: pointer;
    border-bottom: 1px dashed;
}

@media only screen and (max-width:1420px) {
    .current-city:not(.wr-city) {
        position: absolute;
        left: 156px;
        bottom: 15px;
    }
    .change-button {
        padding: 13px 10px;
        left: 150px;
        top: 90px;
        margin: auto;
        right: auto;
    }
}

@media only screen and (max-width:1120px) {
    .current-city:not(.wr-city){
        left: 117px;
        bottom: 14px;
    }
    .change-button {
        left: 116px;
        top: 98px;
    }
}

@media only screen and (max-width:1000px) {
    .all-city ul li {
        width: 50%;
        padding: 5px;
    }
    .all-city {
        width: 90%;
    }
    .current-city:not(.wr-city){
        margin-left: 0;
        left: 100px;
        bottom: 17px;
        color: #fff;
        white-space: nowrap;
    }
    .change-button {
        padding: 7px 10px;
        left: 95px;
        top: 55px;
    }
}

@media only screen and (max-width:550px) {
    .current-city:not(.wr-city){
        left: auto;
        right: 24px;
        bottom: -9px;
    }
    .change-button {
        left: auto;
        top: 80px;
        right: 0;
    }
}

@media only screen and (max-width:400px) {
    .current-city:not(.wr-city){
        bottom: -15px;
    }
}

@media only screen and (max-width:340px) {
    .current-city:not(.wr-city){
        font-size: 12px;
    }
}