
.myselect {
    height:35px;
    line-height:34px;
    background:#494F57;
    cursor:pointer;
    color:#fff;
    padding:0 30px 0 10px;
    font-size:11pt;
    transition:background 0.3s ease-in-out;
    border-radius:4px;
    box-shadow:0 1px 3px 0 rgba(0,0,0,0.22);
}

.myselect:after {
    display:inline-block;
    content:'';
    position:absolute;
    top:15px;
    right:10px;
    cursor:pointer;

    border-top:7px solid #fff;
    border-left:5px solid transparent;
    border-right:5px solid transparent;
    border-bottom:0px;

    transition:border 0.3s ease-in-out;
}

.myselect:hover {
    background:#607ea7;
}

/*.myselect:hover:after {
    border-top:7px solid #fff;
}
*/
.myselect b {
    font-weight:normal;
    display:block;
    height:35px;
    line-height:35px;
    overflow:hidden;
    white-space:nowrap;
    border-radius:4px;
}

.myselect .drop {
    visibility:hidden;
    position:absolute;
    top:36px;
    left:0;
    right:0;
    z-index:1000;
    opacity:0;
    transition:opacity 0.2s ease-in-out 0s, visibility 0s step-end 0.2s;
    box-shadow: 0 2px 10px 1px rgba(0,0,0,0.4);
    overflow:hidden;
    border-radius:4px;
}

.myselect.shown .drop {
    visibility:visible;
    opacity:1;
    transition:opacity 0.2s ease-in-out 0s, visibility 0s step-start 0s;
}

.myselect .drop span {
    display:block;
    line-height:30px;
    padding:0 10px;
    background:#434A54;
    transition:background 0.3s ease-in-out;
    cursor:pointer;
    white-space: nowrap;
}

.myselect .drop span.cur {
    color:rgba(255,255,255,0.4);
    background:#363B43;
}

.myselect .drop span:not(.cur):hover {
    background:#5A616C;
}