.select_box > .event-type-selector {
    margin: 0.5em 0 2em 0;
}

.city_select {
    position: relative;

    display: inline-block;
    float: left;

    max-width: 47%;
    height: 30px;
    padding: 0 20px 0 30px;

    text-decoration: none;

    color: #838a9d;

    font-size: 14px;
    line-height: 30px;
}

.city_select:before {
    position: absolute;
    top: 0;
    left: 0;

    display: inline-block;

    width: 25px;
    height: 25px;

    content: '';

    background: url(../svg/ico_city.svg) center no-repeat;
    background-size: cover;
}

.city_select:after {
    position: absolute;
    top: 50%;
    right: 0;

    display: inline-block;

    width: 16px;
    height: 5px;
    margin-top: -2px;

    content: '';

    background: url(../svg/arrow_gray_down.svg) center no-repeat;
    background-size: cover;
}

/* Small Devices, Tablets */
@media (min-width : 720px) {
    .city_select {
        height: 44px;
        padding: 0 34px 0 60px;

        font-size: 20px;
        line-height: 44px;
    }

    .city_select:before {
        width: 44px;
        height: 44px;
    }

    .city_select:after {
        width: 24px;
        height: 10px;
        margin-top: -3px;
    }
}

/* Large Devices, Wide Screens */
@media only screen and (min-width : 1020px) {
    .city_select {
        height: 32px;
        padding: 0 26px 0 45px;

        font-size: 14px;
        line-height: 32px;
    }

    .city_select:before {
        width: 32px;
        height: 32px;
    }

    .city_select:after {
        right: 0;

        width: 14px;
        height: 7px;
        margin-top: -3px;
    }
}
