.file-uploader {
    position: relative;
    overflow: hidden;
    width: 100%;
    height: 250px;
    cursor: pointer;
    background-size: contain;
    background-position: center center;
    background-color: #fff;
    background-repeat: no-repeat;
    border: 2px dashed rgba(0, 0, 0, 0.3);
    border-radius: 6px;
}
.file-uploader:hover {
    color: #999;
}
.drag-and-drop-file-input {
    display: none !important;
}
.file-uploader-text {
    z-index: 12;
    position: absolute;
    width: 100%;
    text-align: center;
    height: 100%;
    color: #A1A1A1;
}
.file-uploader-text > div {
    background: rgba(255, 255, 255, 0.8);
    position: absolute;
    width: 100%;
    text-align: center;
    height: 100%;
    color: #A1A1A1;
    padding-top: 8%;
}
.file-uploader-text a {
    color: #A1A1A1;
    text-decoration: underline;
}
.file-uploader-feedback i {
    font-size: 32px;
    padding-top: 5px;
}
.file-uploader-feedback .filename p {
    font-size: 18px;
    padding-top: 5px;
}
.file-uploader-feedback .info p {
    font-size: 14px;
    padding-top: 5px;
}