.js-simple-uploader-dropzone {
    display: table-cell;
    vertical-align: middle;
    width: 100%;
    height: 80px;
    max-height: 100px;
    text-align: center;
    border: 1px dashed #aaa;
    padding: 30px;
}
.js-simple-uploader-progress {
    overflow: hidden;
    height: 20px;
    margin-bottom: 20px;
    background-color: #f5f5f5;
    border-radius: 4px;
    box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1);
}
.js-simple-uploader-progress-bar {
    float: left;
    width: 0%;
    height: 100%;
    font-size: 12px;
    line-height: 20px;
    color: #fff;
    text-align: center;
    background-color: #6a6c6e;
    box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.15);
    transition: width 0.6s ease;
}
.js-simple-uploader-progress-striped .js-simple-uploader-progress-bar {
    background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
    background-size: 40px 40px;
}
.js-simple-uploader-record--preview > img {
    min-width: 100px;
}