.file-wrap{
    width       : 100%;
    display     : flex;
    align-items : center;
    flex-wrap   : wrap; 
    .input-box{
        position: relative;
        .placeholder{
            width       : 100%;
            display     : flex;
            align-items : center;
            position    : absolute;
            left        : 10px;
            color       : #ccc;
            .placeholder-icon{
                width        : 35px;
                height       : 35px;
                margin-right : 10px;
                font-size    : 1.3em;
                display      : inline-flex;
                align-items  : center;
                justify-content: center;
            }
        }
        input{
            position    : relative;
            z-index     : 2;
            opacity     : 0;
        }
    }
    .loading-preview{
        width           : 100%;
        padding         : 10px;
        display         : flex;
        justify-content : center;
        align-items     : center;
        border          : 1px dashed #ccc;
        margin-bottom   : 10px;
        img{
            width         : 80%;
            max-width     : 200px;
        }
    }
}