/*----------------------------
    The file upload form
-----------------------------*/
.upload-form {
    padding: 0;
}

.drop-area {
	margin-bottom: 10px;
	border: 2px dashed; #7f858a;
	padding: 20px;
	border-radius: 3px;
	text-align: center;
	color: #7f858a;
	background-color: #fff;
}

.drop-area input{
    display:none;
}


.upload-form ul{
    list-style:none;
    margin:0 -30px;
    border-top:1px solid #2b2e31;
    border-bottom:1px solid #3d4043;
}

.upload-form ul li{

    border-top:1px solid #3d4043;
    border-bottom:1px solid #2b2e31;

    padding:15px;
    height: 72px;

    position: relative;
}

.upload-form ul li input{
    display: none;
}

.upload-form ul li p{
    width: 144px;
    overflow: hidden;
    white-space: nowrap;
    color: #EEE;
    font-size: 16px;
    font-weight: bold;
    position: absolute;
    top: 20px;
    left: 100px;
}

.upload-form ul li i{
    font-weight: normal;
    font-style:normal;
    color:#7f7f7f;
    display:block;
}

.upload-form ul li canvas{
    top: 15px;
    left: 32px;
    position: absolute;
}

.upload-form ul li span{
    width: 15px;
    height: 12px;
    background: url('../img/icons-upload.png') no-repeat;
    position: absolute;
    top: 34px;
    right: 33px;
    cursor:pointer;
}

.upload-form ul li.working span{
    height: 16px;
    background-position: 0 -12px;
}

.upload-form ul li.error p{
    color:red;
}
