/*----------------------------
    The file upload form
-----------------------------*/

.file-upload{
    width:250px;
    border-radius:3px;
    font-size:12px;
    text-align:center;
}

.file-drop{
    padding: 40px 50px;
    margin-bottom: 30px;
    text-align: center;
    text-transform: uppercase;
    font-weight:bold;
    color:#7f858a;
}

.drop a{
    padding:12px 26px;
    color:#fff;
    border-radius:2px;
    cursor:pointer;
    display:inline-block;
    margin-top:12px;
    line-height:1;
}

.file-drop a:hover{
}

.file-drop input{
    display:none;
}

.file-upload ul{
    list-style:none;
    padding: 0px;
}

.file-upload ul li{
    padding: 2px;
    position: relative;
    margin:7px 2px;
    
}

.file-upload img.preview{
	width:60%;
}

.file-upload div.file-data{
    padding: 5px;
    background-color:#994C6E;
}

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

.file-upload ul li p{
    background-color:#994C6E;
    width: 90%;
    overflow: hidden;
    white-space: nowrap;
    color: #EEE;
    font-weight: bold;
    left: 100px;
    margin: 0px;
}

.file-upload ul li i{
    font-weight: normal;
    font-style:normal;
    color:#ddd;
}

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

.file-upload ul li span{
    width: 15px;
    height: 12px;
    background: url('../img/icons.png') no-repeat;
    position: absolute;
    bottom: 8px;
    right: 6px;
    cursor:pointer;
}

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

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

/**
 * (C)Leanest CSS spinner ever
 */
.upload-progress {
	border-bottom: 6px solid rgba(0, 0, 0, .1);
	border-left: 6px solid rgba(0, 0, 0, .1);
	border-right: 6px solid rgba(0, 0, 0, .1);
	border-top: 6px solid rgba(0, 0, 0, .4);
	border-radius: 100%;
	height: 50px;
	width: 50px;
	animation: rot .6s infinite linear;
}
@keyframes rot {
	from {transform: rotate(0deg);}
	to {transform: rotate(359deg);}
}
