#upload {
    width: 100%;
    border-radius: 3px;
}

#drop {
    background-color: #EBEFF1;
    padding: 10px 20px;
    margin-bottom: 30px;
    border: 20px solid rgba(0, 0, 0, 0);
    border-radius: 3px;
    border-image: url('border-image.png') 25 repeat;
    text-align: center;
    text-transform: uppercase;

    font-size: 16px;
    font-weight: bold;
    color: #7f858a;
}

#drop a {
    background-color: #383838;
    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: #4C4C4C;
}

#drop input {
    display: none;
}

#upload ul {
    list-style: none;
    border-top: 1px solid transparent;
    border-bottom: 1px solid transparent;
}

#upload ul li {
    border-top: 1px solid transparent;
    border-bottom: 1px solid transparent;
    padding: 15px;
    height: 85px;
    position: relative;
}

#upload ul li input {
    display: none;
}

#upload ul li p {
    overflow: hidden;
    color: #37474f;
    font-size: 14px;
    font-weight: bold;
    position: absolute;
    top: 20px;
    left: 100px;
}

#upload ul li i {
    font-weight: normal;
    font-style:normal;
    color: #37474f;
    display:block;
}

#upload ul li canvas {
    top: 15px;
    left: 32px;
    position: absolute;
}

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

#upload ul li.working span {
    height: 16px;

}

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