.select select{
    -webkit-appearance: none !important;
    appearance: none !important;
    background-color: transparent !important;
    padding: 0 35px 0 12px;
    line-height: 1.5;
    min-height: 44px;
    border: 1px solid #ddd;
    min-width: 180px;
    border-radius: 6px;
    font-size: 15px;
    min-height: 44px;
    cursor: pointer;
    position: relative;
    width: 100%;
}
.select select:hover:not(:focus), 
.neeos:hover:not(:focus){
    border-color: #d0d0d0 !important;
}
.select select:focus, .neeos:focus{
    box-shadow: 0 0 0 4px rgb(0 132 255 / 50%) !important;
    outline: 0 !important;
    transition: none !important;
}
.select{
    position: relative;
    background-color: #fff;
    border-radius: 16px;
    display: flex;
    box-sizing: border-box;
}
.select_dp{
    padding-right: 14px; 
    padding-top: 2px;
    position: absolute;
    bottom: 0;right: 0;top:0;
    display: flex;
    align-items: center;
}
.select_dp svg{
    color: #111;
    fill: currentColor;
    width: 11px;
    height: 11px;
}
/* TABLET */
@media only screen and (min-width: 768px) and (max-width: 991px){
    
}
/* SMARTPHONE */
@media only screen and (min-width: 0px) and (max-width: 767px){
    .select select{
        padding: 0 8px 0 8px;
        font-size: 20px;
    }
    .select_dp {
        padding-right: 8px;
    }
    .select_dp svg{
        width: 9px;
        height: 9px;
    }
}