
/*----------------------------
    The file upload form
-----------------------------*/


#upload{
    /*font-family:'PT Sans Narrow', sans-serif; */
    /*background-color:#eeeeee;*/
/*
    background-image:-webkit-linear-gradient(top, #373a3d, #313437);
    background-image:-moz-linear-gradient(top, #373a3d, #313437);
    background-image:linear-gradient(top, #373a3d, #313437);
*/ 
    width:300px;
    border-radius:3px;

    margin:20px;
   /* box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);*/
}

#drop{
    background-color: #616366;
    padding: 5px;
    margin-bottom: 10px;
    border-radius: 3px;
   /* border-image: url('../img/border-image.png') 25 repeat; */
    text-align: center;
    font-size:12px;
    color:#fff;
}

#drop a{
    background-color:#4b7c4b;
    padding:8px;
    color:#fff;
    font-size:12px;
    border-radius:2px;
    cursor:pointer;
    display:inline-block;
    margin-top:6px;
    line-height:1;
}

#drop a:hover{
    background-color:#78bf78;
}

#drop input{
    display:none;
}

#upload ul{
    list-style:none;
    border-top:1px solid #eeeeee;
    border-bottom:1px solid #eeeeee;
}

#upload ul li{ /* Item de la lista */

    /*background-color:#eeee00;*/ 
/*
    background-image:-webkit-linear-gradient(top, #333639, #303335);
    background-image:-moz-linear-gradient(top, #333639, #303335);
    background-image:linear-gradient(top, #333639, #303335);
*/
    border-top:1px solid #eeeeee;
    border-bottom:1px solid #eeeeee;
    height: 30px;

    position: relative;
}

#upload ul li input{
    display: none;
}

#upload ul li p{ /* Nombre del archivo */
    overflow: hidden;
    white-space: nowrap;
    color: #b4b4b4;
    font-size: 10px;
    position: absolute;
    top: -7px;
}

#upload ul li i{
    font-weight: normal;
    font-style:normal;
    color:#cccccc;
    display:block;
}

#upload ul li canvas{ /* posicion de la ruedita */
    top: 5px;
    left: -35px;
    position: absolute;
}

#upload ul li span{ 
    top: 5px;
    right: -10px;
    width: 55px;
    height: 12px;
    background: url('../img/icons.png') no-repeat;
    position: absolute;
    cursor:pointer;
}
#upload ul li span:hover{ 
    background-position: 0 -13px;
}

#upload ul li.working span{
    background-position: 0 -13px; 
}

#upload ul li.error p{
    color:red;
}

.dotted {
    border: 3px dashed #ccc;
    padding: 5px;
    cursor: pointer;
}
.dotted2 {
    border: 3px dashed #ccc;
    padding: 5px;
    cursor: pointer;
    background-color: #65a75c;
}



@media only screen and (max-width: 639px) {
    
    #upload {
        width:100px;
        margin-top: 20px;
        margin-left: 0px;
    }
    
}
