/* --------------- ares-select --------------- */
.ares-select{
    display: block;
    position: relative;
    z-index: 10;
    width: 100%;
    cursor: pointer;
    text-align: center;
    height: 55px;
    line-height: 55px;
    border: 1px solid #E4E4E4 !important;
    border-radius: 5px;
    padding: 0 30px;
    font-size: 15px;
    font-family: 'Open Sans', sans-serif;
    -webkit-transition: border 0.3s ease;
    transition: border 0.3s ease;
}
.ares-select.site-form__error {
    border: 1px solid #ff0000 !important;
}
.ares-select.active {
    z-index: 100;
}
.ares-select:after{
    position: absolute;
    z-index: 12;
    top: 50%;
    right: 20px;
    width: 5px;
    height: 5px;
    margin-top: -4px;
    border-style: solid;
    border-width: 2px 2px 0 0;
    border-color: #fff #fff 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;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    text-align: left;
    padding: 0 30px;
    height: inherit;
    line-height: inherit;
}
.ares-select_mobile select {
    position: absolute;
    top: 0;
    left: 1px;
    bottom: -1px;
    z-index: 13;
    width: 100%;
}
.ares-select__popup {
    position: absolute;
    top: 100% !important;
    margin-top: 1px;
    overflow: hidden;
    overflow-y: auto;
    background: #fff;
    z-index: 11;
    border: 1px solid #E4E4E4 !important;
    border-radius: 5px;
}
.ares-select__popup ul {
    z-index: 1;
}
.ares-select__popup li {
    white-space: nowrap;
    overflow: hidden;
    cursor: pointer;
    padding: 0 30px;
    height: 38px;
    font-size: 13px;
    line-height: 38px;
    text-align: left;
    font-family: 'Rubik', sans-serif;
    -webkit-transition: background .2s, color .2s;
    transition: background .2s, color .2s;
}
.ares-select__popup li.active {
    background: var(--btn-bg-1);
    color: var(--btn-color-1);
    font-weight: 700;
}
/* --------------- /ares-select --------------- */

@media screen and (min-width: 1024px) {

    /* ------------ ares-select ------------ */
    .ares-select__popup li:not(.active):hover {
        background: rgba(253,193,61,0.5);
        color: var(--btn-color-1);
    }
    /* ------------ /ares-select ------------ */

}