/* --------------- ares-select --------------- */
.ares-select{
    display: inline-block;
    vertical-align: top;
    position: relative;
    z-index: 10;
    width: 100%;
    height: 30px;
    padding: 0 18px;
    font-size: 16px;
    line-height: 16px;
    cursor: pointer;
    text-transform: uppercase;
    font-family: "Roboto", sans-serif;
    font-weight: 500;
    color: #b5b5b5;
    background: #fff;
    border: none;
    -webkit-transition: border-radius .3s ease-in-out;
    transition: border-radius .3s ease-in-out;
    text-align: center;
}
.ares-select.active {
    z-index: 100;
}
.ares-select:after{
    position: absolute;
    z-index: 12;
    top: 50%;
    right: 7px;
    width: 6px;
    height: 6px;
    margin-top: -7px;
    border-style: solid;
    border-width: 2px 2px 0 0;
    border-color: #b5b5b5 #b5b5b5 transparent transparent;
    -webkit-transition: transform .3s ease-in-out, top .3s ease-in-out;
    transition: transform .3s ease-in-out, top .3s ease-in-out;
    -webkit-transform: rotate(135deg);
    transform: rotate(135deg);
    content: '';
}
.ares-select.active:after {
    top: 62%;
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
}
.ares-select__item {
    position: absolute;
    z-index: 12;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    padding: 8px 16px 8px 13px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    text-align: center;
    background: #fff;
}
.ares-select_mobile select {
    position: absolute;
    top: 0;
    left: 1px;
    bottom: -1px;
    z-index: 13;
    width: 100%;
}
.ares-select_custom select{
    position: absolute;
    left: -100000px;
    width: 100%;
}
.ares-select__popup {
    position: absolute;
    top: 0 !important;
    overflow: hidden;
    padding: 56px 0 8px;
    background: #fff;
    z-index: 11;
    border-top: none;
    box-shadow: 0.5px 1px 25px -5px rgba( 0, 0, 0, .4);
}
.ares-select__popup ul {
    z-index: 1;
}
.ares-select__popup li{
    white-space: nowrap;
    overflow: hidden;
    cursor: pointer;
    padding: 11px 13px 11px;
    margin: 0 0 2px;
    font-family: "Roboto", sans-serif;
    font-weight: 500;
    height: 36px;
    font-size: 14px;
    line-height: 16px;
    text-align: center;
    -webkit-transition: background .3s, color .3s;
    transition: background .3s, color .3s;
}
.ares-select__popup li:hover ,
.ares-select__popup li.active {
    background: #ffdc1a;
    color: #000;
}
.ares-select__popup li.active {
    cursor: default;
}
.ares-select_1{
    margin: 0 0 18px;
    height: 53px;
    background: #ffdc1a;
    color: #000;
    text-align: center;
}
.ares-select_1:after{
    right: 44px;
    border-color: #000;
}
.ares-select_1 .ares-select__item{
    text-align: center;
    padding: 20px 55px 20px 37px;
    background: #ffdc1a;
}
.ares-select_1 .ares-select__popup {
    top: 0 !important;
    padding: 59px 13px 8px;
    background: #ffdc1a;
}
.ares-select_1 .ares-select__popup li{
    text-align: center;
    text-transform: none;
}
/* --------------- /ares-select --------------- */

@media (min-width: 768px) {

    /* --------------- ares-select --------------- */
    .ares-select{
        padding: 0 18px;
        border-left: 1px solid #f3f3f3;
        border-right: 1px solid #f3f3f3;
    }
    .ares-select__item {
        right: 0;
        padding: 8px 21px 8px 21px;
        text-align: center;
    }
    .ares-select:after{
        right: 33px;
    }
    .ares-select__popup {
        padding: 37px 17px 8px;
    }
    .ares-select__popup li{
        padding: 11px 5px;
        text-align: center;
    }
    .ares-select_1{
        width: 231px;
    }
    .ares-select_1 .ares-select__item {
        padding: 20px 51px 20px 37px;
    }
    .ares-select_1 .ares-select:after {
        right: 41px;
    }
    .ares-select_1 .ares-select__popup{
        padding: 59px 17px 8px;
    }
    .ares-select_1 .ares-select__popup li:hover,
    .ares-select_1 .ares-select__popup li.active{
        background: #ffee8d;
    }
    /* --------------- /ares-select --------------- */

}