
select {
    -webkit-appearance: none;
    -moz-appearance: none;
    -ms-appearance: none;
    appearance: none;
    outline: 0;
    box-shadow: none;
    border: 0 !important;
    background: #c890ae;
    background-image: none;
    flex: 1;
    padding: 0 .5em;
    color: #444;
    cursor:pointer
}

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

.select {
    position: relative;
    display: flex;
    height: 45px;
    line-height: 45px;
    background: #c890ae;
    overflow: hidden;
    border-radius: 30px;
    font-size: 16px;
    margin-left:20px
}

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

.select:hover::after {
    color: #fff
}