JSFiddle - React, Tailwind, and code Playground

HTML

<div class="drop_select">
    <select>
        <option>1</option>
        <option>2</option>
        <option>3</option>
    </select>

CSS

.drop_select {
    width:180px;
    height: 34px;
    overflow: hidden;
    background: url(http://s22.postimg.org/liq7aghz5/select_icons.png) no-repeat 148px -165px #000000;
    border-radius: 10px;
    margin-bottom: 5px;
    transition: background 0.3s ease-in-out;
    -moz-transition: background 0.3s ease-in-out;
    -webkit-transition: background 0.3s ease-in-out;
    -ms-transition: background 0.3s ease-in-out;
}
.drop_select:hover {
    background-position: 148px -115px;
}
.drop_select select {
    background: rgba(0, 0, 0, 0);
    -moz-background: transparent;
    -webkit-background: transparent;
    width: 202px;
    padding: 8px 0px 8px 8px;
    font: 20px arial;
    border: 0;
    border-radius: 0;
    height: 34px;
    -webkit-appearance: none;
    -o-appearance: none;
    -moz-appearance:none;
    color: #ffffff;
    -o-background: #000000;
}
.drop_select:hover select {
    color: #ebb52d;
}
.drop_select select > option {
    color: #fff;
    padding: 7px 0px 7px 3px;
    background: #000;
    border-bottom: dotted 1px #515151;
    transition: background 0.5s ease-in-out;
 
}
.drop_select select option:hover, .drop_select select option:focus, .drop_select select option:active {
    background: #515151 !important;
    color: #dfb52d;
}