
/*-------------------------
    Simple reset
--------------------------*/


*{
    margin:0;
    padding:0;
}



/*----------------------------
    The file upload form
-----------------------------*/


#upload{
	margin-top:20px;
	margin-bottom:20px;

}

#drop{
	
	padding-top: 40px;
	padding-bottom: 50px;
    margin-bottom: 20px;
    
	border:dashed 3px #acacac;
    background-color:#f0f0f0;
	 
	border-radius: 5px;
  
    text-align: center;

    font-size:16px;
    color:#7b818c;
	
}

#drop a{
	background-color: #13a983;
    padding:12px 26px;
    color:#fff;
    font-size:14px;
    border-radius:5px;
    cursor:pointer;
    display:inline-block;
    margin-top:12px;
    text-transform: uppercase;
    line-height:1;
	transition: 0.5s;	
	
}

#drop a:hover{
    background-color:#f08b82;
}

#drop input{
    display:none;
}

#upload ul{
    list-style:none;
}

#upload ul li{ 
    height: 60px;
    position: relative;
}


#upload ul li input{
    display: none;
}

#upload ul li p{
	
    top: 10px;
    left: 50px;
	
    overflow: hidden;
	
    white-space: nowrap;
	
    color: #545961;
    font-size: 14px;
	line-height:18px;
	
    position: absolute;
	
}

#upload ul li i{
    font-weight: normal;
    font-style:normal;
    color:#6a717f;
    font-size: 12px;
    display:block;
}


#upload ul li canvas{
    top: 10px;
    left: 0px;
    position: absolute;
}

#upload ul li span{
    width: 15px;
    height: 12px;
    background: url('../img/icons.png') no-repeat;
    position: absolute;
    top: 20px;
    right: 0px;
    cursor:pointer;
}

#upload ul li.working span{
    height: 16px;
    background-position: 0 -12px;
}

#upload ul li.error p{
    color:red;
}
