
select {
    -webkit-appearance: none;
    -moz-appearance: none;
    -ms-appearance: none;
    appearance: none;
    outline: 0;
    box-shadow: none;
    border: 0 !important;
    background: #1e283d;
    flex: 1;
    padding: 0 .5em;
    color: #fff;
    cursor: pointer;
    font-size: 1em;
    font-family: 'Open Sans', sans-serif;
}

select::-ms-expand {
    display: none;
}

.select {
    position: relative;
    display: flex;
    height: 2.5em;
    line-height: 2.5;
    background: #1e283d;
    overflow: hidden;
    border-radius: .25em;
}

.select::after {
    content: '\25BC';
    position: absolute;
    top: 0;
    right: 0;
    padding: 0 1em;
    background: #e91e63;
    cursor: pointer;
    pointer-events: none;
    transition: .25s all ease;
}

.select:hover::after {
    background: #1e283d;
    color: #e91e63;
}

.select > label {
    font-size: 0.875rem;
    font-weight: 400;
    /* margin-bottom: 0.5rem; */
    color: #7b809a;
    margin-left: 0.25rem;
    line-height: 3;
}