
/*----------------------------
    The file upload form
-----------------------------*/

#upload{
    background-color:#dddada;
    margin-bottom: 20px;
}

#drop{
    border: 2px dashed #b3aba8;
    border-radius: 3px;
    padding: 10px;
    text-align: center;
    text-transform: uppercase;
    font-size:16px;
    font-weight:bold;
    color:#7f858a;
}

#drop a{
    background-color:#007a96;
    padding:12px 26px;
    color:#fff;
    font-size:14px;
    border-radius:2px;
    cursor:pointer;
    display:inline-block;
    margin-top:12px;
    line-height:1;
}

#drop a:hover{
    background-color:#0986a3;
}

.upload ul{
    list-style:none;
    margin: 0;
    padding: 0;
}

.upload ul li{
    background-color:#f5f5f5;
    border-bottom:1px solid #cecece;
    padding:15px;
    height: 75px;
    position: relative;
}

.upload ul li input{
    display: none;
}

.upload ul li p{
    width: calc(95% - 100px);
    overflow: hidden;
    white-space: nowrap;
    color: #EEE;
    font-size: 11px;
    font-weight: bold;
    position: absolute;
    top: 20px;
    left: 72px;
}
.upload ul li .status_1{
    color: #fff;
}
.upload ul li .status_2{
    color: #f00;
}
.upload ul li i{
    font-weight: normal;
    font-style:normal;
    color:#7f7f7f;
    display:block;
}

.upload ul li canvas{
    top: 15px;
    position: absolute;
}

.upload ul li span{
    width: 15px;
    height: 12px;
    background: url('../img/icons.png') no-repeat;
    position: absolute;
    top: 42px;
    right: 33px;
    cursor:pointer;
}
.upload ul li span:hover{
    width: 15px;
    height: 12px;
    background: url('../img/icons.png') no-repeat;
    background-position: 0 -11px;
    position: absolute;
    top: 42px;
    right: 33px;
    cursor:pointer;
}
.upload ul li.working span{
    height: 16px;
    background-position: 0 -11px;
}
.upload ul li.error span{
    height: 16px;
    background-position: 0 -25px;
}
.upload ul li.error p{
    color:red;
}