.upload-dropzone {
    position: relative;
    border: 1px dashed #ccc;
    transition: all 0.3s ease-in-out;
    cursor: pointer;
}
.upload-dropzone:hover {
    border-color: #999;
}
.upload-dropzone .dropzone-hint {
    display: table;
    margin: 1.25em 46px 1.25em 1.25em;
}
.upload-dropzone .dropzone-hint .dropzone-hint-media {
    display: table-cell;
    vertical-align: middle;
    padding-right: 1em;
}
.upload-dropzone .dropzone-hint .dropzone-hint-media .dropzone-hint-icon {
    height: 40px;
    width: 40px;
    text-align: center;
    line-height: 40px;
    font-size: 16px;
    background-color: #eee;
    border-radius: 50%;
    font-family: "Font Awesome 5 Pro";
    transform: translate(0, 0);
}
.upload-dropzone .dropzone-hint .dropzone-hint-media .dropzone-hint-icon:before {
    content: "\f093";
}
.upload-dropzone .dropzone-hint .dropzone-hint-body {
    display: table-cell;
    vertical-align: middle;
}
.upload-dropzone .dropzone-hint .dropzone-hint-body:first-child {
    margin-top: 0;
}
.upload-dropzone .dropzone-hint .dropzone-hint-body:last-child {
    margin-bottom: 0;
}
.upload-dropzone .dropzone-hint .dropzone-hint-title {
    font-size: 12px;
    font-weight: 700;
    margin-bottom: 0.25em;
}
.dropzone-previews {
    display: table;
    width: 100%;
    margin-bottom: 1rem;
    transition: all 0.3s ease-in-out;
}
.dropzone-previews .dz-preview {
    word-break: break-all;
    position: relative;
}
.dropzone-previews .dz-preview:nth-child(odd) {
    background: #f9f9f9;
}
.dropzone-previews .dz-preview .dz-details {
    width: 100%;
    border-top: 1px solid #ddd;
}
.dropzone-previews .dz-preview > div {
    padding: 8px;
}
.dropzone-previews .dz-preview .dz-error-message {
    color: #dc3545;
    font-style: italic;
}
.dropzone-previews .dz-preview .dz-success-mark, .dropzone-previews .dz-preview .dz-error-mark, .dropzone-previews .dz-preview .dz-image {
    display: none;
}
.dropzone-previews .dz-preview .dz-remove {
    position: absolute;
    top: 5px;
    right: 5px;
    height: 26px;
    width: 26px;
    font-family: "Font Awesome 5 Pro";
    font-size: 14px;
    line-height: 26px;
    text-align: center;
    transform: translate(0, 0);
    overflow: hidden;
}
.dropzone-previews .dz-preview .dz-remove:before {
    content: "\f00d";
}
.dropzone-previews .dz-preview .dz-remove:hover {
    color: #fff;
    background-color: #25872d;
}
.dropzone-previews .dz-preview .dz-progress {
    margin: 0 8px;
    padding: 0;
    height: 5px;
    width: 200px;
    background-color: #e9ecef;
    border-radius: 0.25rem;
    overflow: hidden;
}
.dropzone-previews .dz-preview .dz-progress .dz-upload {
    display: block;
    height: 100%;
    width: 0;
    background-color: #25872d;
}
.dz-default {
    display: none;
}
