﻿/* Reset Select */
select {
    -webkit-appearance: none;
    -moz-appearance: none;
    -ms-appearance: none;
    appearance: none;
    outline: 0;
    box-shadow: none;
    border: 0 !important;
    background: White;
    background-image: none;
}
    /* Remove IE arrow */
    select::-ms-expand {
        display: none;
    }
/* Custom Select */
.select {
    position: relative;
    display: flex;
    height: 3em;
    width: 20em;
    line-height: 3;
    background: White;
    overflow: hidden;
    border-radius: .25em;
}

select {
    /*flex: 1;*/
    padding: 0 .5em;
    color: #159dd7;
    cursor: pointer;
}
/* Arrow */
.select::after {
    content: '\25BC';
    position: absolute;
    top: 0;
    right: 0;
    padding: 0 1em;
    background: #34495e;
    cursor: pointer;
    pointer-events: none;
    -webkit-transition: .25s all ease;
    -o-transition: .25s all ease;
    transition: .25s all ease;
}
/* Transition */
.select:hover::after {
    color: #f39c12;
}

.DropDownWhite {
    width:90%;
}

input {
    color: #159dd7;
    padding-left:10px;
}
