.ares-select{
    position: relative;
    box-sizing: border-box;
    -moz-box-sizing: border-box;
    width: 100%;
    height: 60px;
    display: inline-block;
    vertical-align: top;
    overflow: hidden;
    background: #edeff1;
}
.ares-select:after{
    content: '';
    position: absolute;
    background: url("../img/ares-select__triangle.png") no-repeat;
    right: 20px;
    width: 10px;
    height: 7px;
    top: 27px;
}
.ares-select__item {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 20px;
    box-sizing: border-box;
    -moz-box-sizing: border-box;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    text-align: left;
    font-size: 16px;
    color: #aaacad !important;
    font-family: "proximanova-semibold", sans-serif;
    padding: 18px 20px 0;
    letter-spacing: 3.1px;
}
.ares-select_mobile select {
    position: absolute;
    top: 0;
    left: 1px;
    width: 100%;
    bottom: -1px;
}
.ares-select_custom select{
    position: absolute;
    left: -100000px;
}
.ares-select__popup {
    position: absolute;
    box-sizing: border-box;
    -moz-box-sizing: border-box;
    border: 1px solid #C5C5C5;
    overflow: hidden;
    z-index: 10;
    font-family: "proximanova-semibold", sans-serif;
    background: #edeff1;
}
.ares-select__popup ul {
    z-index: 1;
    padding: 10px 0;
    margin: 0;
}
.ares-select__popup li{
    white-space: nowrap;
    overflow: hidden;
    cursor: pointer;
    -webkit-transition: background 0.3s ease, color 0.3s ease;
    transition: background 0.3s ease, color 0.3s ease;
    padding: 5px 20px;
    font-size: 16px;
    color: #aaacad;
    letter-spacing: 3.1px;
}
.ares-select__popup li.active {
    color: #fff;
    background: #ed3e33;
}
.ares-select__popup li:hover {
    background: #ed3e33;
    color: #fff;
}
.ares-select__popup .iScrollVerticalScrollbar {
    position: absolute;
    width: 15px;
    top: 0;
    bottom: 0;
    background: #ccc;
    right: 0;
    z-index: 3;
    -webkit-transform: translateZ(0);
}
.ares-select__popup .iScrollIndicator {
    background: #aaa;
}