/*----------------------------
    The file upload form
-----------------------------*/


#upload{

    border: 1px solid #e1e1e1;
    background: linear-gradient(#fdfdfd, #d8d8d8);
    
    width:440px;
    height: 275px;
    padding:30px;
    
    border-radius: 10px;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;

    margin: 50px auto 20px;

}

#drop{
    padding: 0;
    margin-bottom: 30px;
    border: 20px solid rgba(0, 0, 0, 0);
    border-radius: 3px;
    text-align: center;

    font-size:16px;
    font-weight:bold;
    color:#a0a0a0;
}

#drop a {
    background-color:#099ec8;
    padding:12px 26px;
    color:#fff;
    font-size:14px;
    border-radius:2px;
    cursor:pointer;
    display:inline-block;
    margin-top:12px;
    line-height:1;
    border-radius: 5px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
}

#drop a:hover{
    background-color:#0e7892;
}

#drop input{
    display:none;
}

#upload ul{
    list-style:none;
    margin: -20px -30px;
    overflow-y: scroll;
    height: 180px;
}

#upload ul li{

    border: none;
    padding:15px;
    height: 24px;

    position: relative;

    list-style-type: none;
}

#upload ul li input{
    display: none;
}

#upload ul li p {
    width: 80%;
    overflow: hidden;
    white-space: nowrap;
    font-size: 14px;
    font-weight: bold;
    position: absolute;
    top: 10px;
    left: 20px;
}

#upload ul li i{
    font-weight: normal;
    font-style:normal;
    display:block;
}

#upload ul li canvas{
    width: 0;
    height: 0;
    display: none;
    position: absolute;
}

#upload ul li span{
    width: 15px;
    height: 12px;
    background: url('../img/icons.png') no-repeat;
    position: absolute;
    top: 14px;
    right: 33px;
    cursor:pointer;
}

#upload ul li.working span{
    height: 16px;
    background-position: 0 -12px;
}

#upload ul li.error p{
    color:#fff;
}