.custom-select {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    height: 57px;
    font-family:open-light;
    padding: 10px 38px 10px 35px;
    font-size:16px;
    color:#333;
    background: #fff;
    transition: border-color .1s ease-in-out,box-shadow .1s ease-in-out;
    border: 1px solid #e9e9e9;
    width:100%;
    border-radius: 3px;
}
.custom-select:hover {
    border: 1px solid #FDA10E;
}
/* remove default arrow in IE */
select::-ms-expand {
    display:none;
    }