/* Custom Select — Selectric replacement
   Native <select> with custom arrow styling
   ---------------------------------------- */
select.jt_selectric {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    display: block;
    width: 100%;
    border: 1px solid #DDD;
    background: #F8F8F8;
    font-size: 12px;
    line-height: 38px;
    height: 38px;
    color: #444;
    padding: 0 38px 0 10px;
    cursor: pointer;
    outline: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='8' height='4' viewBox='0 0 8 4'%3E%3Cpath fill='%23BBB' d='M0 0l4 4 4-4z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 15px center;
}
select.jt_selectric:hover {
    border-color: #c4c4c4;
}
select.jt_selectric:focus {
    border-color: #aaaaaa;
}
select.jt_selectric:disabled {
    opacity: 0.5;
    cursor: default;
}

/* IE hide native arrow */
select.jt_selectric::-ms-expand {
    display: none;
}
