.C_select_container {
    position: relative; 
    font-family: 'Open Sans', sans-serif;
    max-width: 300px;
    margin: auto; text-align: center;
    margin-top: 25%;
 }



 select {
    -webkit-appearance:none;
    -moz-appearance:none;
    -ms-appearance:none;
    appearance:none;
    outline:0;
    box-shadow:none;
    border:0!important;
    background: #e0e0e0;
    background-image: none;
    flex: 1;
    padding: 10px;
    border-radius: 5px;
    color:#323232;
    cursor:pointer;
    font-size: 1em;
    font-family: 'Open Sans', sans-serif;
    position: relative; max-width: 300px; margin: auto;
 }
 select::-ms-expand {
    display: none;
 }
 .C_select {
    position: relative;
    display: flex;
    width: 20em;
    height: 3em;
    line-height: 3;
    background: #a0a0a0;
    overflow: hidden;
    border-radius: .25em;
    border: 1px solid #323232;
    margin: 5px;
 }
 .C_select::after {
    content: '\25BC';
    position: absolute;
    top: 0;
    right: 0;
    padding: 0 1em;
    background: #a0a0a0;
    cursor:pointer;
    pointer-events:none;
    transition:.25s all ease;
 }
 .C_select:hover::after {
    color: #c0c0c0;
 }


.C_select_wrapper {
    margin-left: 50px;
}

 .C_select_wrapper .select {
    float: left; margin: 5px; text-align: center;
}