.input-box{
    &.select{
        align-items: center;
        position   : relative;
    }
    .select-icon{
        width           : 30px;
        height          : 30px;
        display         : flex;
        align-items     : center;
        justify-content : center; 
        position        : absolute;
        z-index         : 1;
        right           : 10px;
        color           : #999;
        font-size       : 1.1em;
    }
    select{
        appearance      : none;
        width           : 100%;
        height          : 44px;
        padding-right   : 50px;
        padding-left    : 5px;
        border          : none;
        position        : relative;
        z-index         : 2; 
        background      : transparent;
        outline         : none; 
        font-size       : 1em;
        cursor          : pointer;
        option{
            height        : 30px;
            background    : #fff;
        }
    }
}