/* temp */

.popupCity,
.popupCity * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* /temp */

/* desktop */

.popupCity {
    background-color: #fff;
    font-family: Source Sans Pro;
    width: 95%;
    max-width: 664px;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 24px 40px 32px 40px;
    position: fixed;
    top: 50%;
    left: 50%;
    z-index: 9999999;
    transform: translate(-50%, -50%);
    -webkit-box-shadow: 0px 0px 4px 100vw rgba(0,0,0,0.6);
    -moz-box-shadow: 0px 0px 4px 100vw rgba(0,0,0,0.6);
    box-shadow: 0px 0px 4px 100vw rgba(0,0,0,0.6);
}

.popupCity__logo {
    margin-bottom: 24px;
    max-width: 100px;
    max-height: 30px;
}
.popupCity__logo img {
    width: 100px;
    height: 30px;
}

.popupCity__title,
.popupCity__logo,
.popupCity__txt,
.popupCity__citySelect {
    margin-bottom: 24px;
}


.popupCity__citySelect {
    display: flex;
}

.popupCity__citySelect__select__select {
    width: 202px;
    height: 36px;
    margin-right: 16px;
    border: 2px solid #333;
    color: #333333;
    background: #ffffff;
}
.popupCity__citySelect__select__select option {
    color: #333333;
}

.popupCity__citySelect__select__select,
.popupCity__citySelect__select__select option {
    font-size: 16px;
}

.popupCity__title {
    font-weight: 600;
    font-size: 24px;
    line-height: 32px;
    color: #333;
}

.popupCity__txt {
    font-size: 20px;
    line-height: 32px;
    color: #333;
}

.popupCity__citySelect__confirmBtn {
    font-size: 14px;
    line-height: 20px;
    color: #fff;
    background-color: #00AFE4;
    border: none;
    border-radius: 2px;
    padding: 8px 16px;
    text-transform: uppercase;
    font-weight: 400;
    white-space: nowrap;
}

.popupCity__skip {
    font-size: 14px;
    line-height: 20px;
    color: #666;
    text-decoration: none;
}

/* /desktop */

/* mobile */

@media(max-width: 1000px) {
    .popupCity {
        padding: 24px 8px 32px 8px;
    }

    .popupCity__citySelect__select__select {
        margin-right: 8px;
    }
}

/* /mobile */