
/*----------------------------
    The file upload form
-----------------------------*/


.upload_style {
    font-family:'PT Sans Narrow', sans-serif;


    width:100%;
    padding:0px;
    border-radius:3px;

    margin:auto ;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
}

.drop_style {
    background-color: white;
    padding: 0px 0px;
    margin-bottom: 0px;
    border: 20px solid rgba(0, 0, 0, 0);
    //border-radius: 3px;
    //border-image: url('../img/border-image.png') 25 repeat;
    text-align: center;
    text-transform: uppercase;

    font-size:14px;
    font-weight:bold;
    color:#7f858a;
}

.drop a{
    background-color:#e19918;
    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;
}

.drop input{
    display:none;
}

.upload ul{
    list-style:none;
    margin:0 0px;
    padding:0;
}

.upload ul li{


    border-top:1px solid #e19918;
    padding:0px;
    height: 110px;

    position: relative;
}

.upload ul li input{
    display: none;
}

.upload ul li p{
    width: 100%;
    overflow: hidden;
    white-space: nowrap;
    color: #EEE;
    font-size: 16px;
    font-weight: bold;
    position: absolute;
    padding:0 3px;
    top: 50px;
    left: 0px;
}

.upload ul li i{
    font-weight: normal;
    font-style:normal;
    color:#7f7f7f;
    display:block;
}

.upload ul li canvas{
    top: 15px;
    left: 32px;
    position: absolute;
}

.upload ul li span{
    width: 15px;
    height: 12px;
    background: url('../img/icons.png') no-repeat;
    position: absolute;
    top: 34px;
    right: 33px;
    cursor:pointer;
}

.upload ul li.working span{
    height: 16px;
    background-position: 0 -12px;
}

.upload ul li.error p{
    color:red;
}
