/*----------------------------
    The file upload form
-----------------------------*/


#upload{
    
}

#drop{
    padding: 5px;
    padding-bottom:7px;
    border: 1px dashed rgba(209, 209, 209, 1);
    margin-top:5px;
}

#drop a{
    
}

#drop a:hover{
    
}

#drop input{
    display:none;
}

#upload ul{
    list-style:none;
    margin:0;
}

#upload ul li{

    margin-top:5px;
    background-color:#ededed;
    padding:10px 0 0 20px;
    display:block;
    position: relative;
    font-size:14px;
    text-transform:none;
}

#upload ul li input{
    display: none;
}

#upload ul li p{
    white-space: nowrap;
    margin-bottom:0px;
    padding-bottom:10px;
}

#upload ul li i{
    display:block;
}

#upload ul li canvas{
    display:none;
}

#upload ul li span{
    width: 15px;
    height: 12px;
    background: url('../img/icons.png') no-repeat;
    position: absolute;
    top: 25px;
    right: 15px;
    cursor:pointer;
}

#upload ul li.working span{
    height: 16px;
    background-position: 0 -12px;
}

#upload ul li.error p{
    color:red;
}


