#upload-tool {
    margin-bottom: 10px;
}
.wrapper {
    text-align: center;
    width: 500px;
    margin-left: auto;
    margin-right: auto;
    padding-bottom: 25px;
    padding-top: 25px;
}
#upload-ready {
    /*display: none;*/
    padding-top: 10px;
    margin-left: auto;
    margin-right: auto;
    width: 500px; 
}
#upload-description {
    text-align: justify;
}
#pre-upload {
    display: block;
}
#upload-progress {
    display: none;
    text-align: justify;
}
#upload-progress .progress-text {
    text-align: center;
    font-size: 18px;
    font-weight: bold;
    opacity: 1;
    animation: fade 6s linear infinite;
}
.dot {
    animation: showHideDot 2.5s ease-in-out infinite;
}
.dot.one {
    animation-delay: 0.2s;
}
.dot.two {
    animation-delay: 0.4s;
}
.dot.three {
    animation-delay: 0.6s;
}
#upload-message {
    margin-top: 10px;
    min-width: 500px;
    min-height: 200px;
}
#submit-all {
    margin-top: 10px;
}
#upload-finished {
    display: none;
    padding-top: 10px;
    margin-left: auto;
    margin-right: auto;
    width: 500px;
    text-align: left;
}
.dropzone {
    border: 0.25rem dashed #A5A5C7;
}
.dropzone .dz-preview .dz-progress {
    top: 75%;
}
.dropzone .dz-message {
    /*border-bottom: 1px solid #444444; */
    display: inline-block;
    font-family: Unna;
    font-size: 24px;
    font-weight: 600;
    margin: 40px 0;
    text-transform: uppercase;
}
.dropzone.dz-started .dz-message {
    display: block;
}
.dropzone.dz-drag-hover {
    background-color: #f5f5ef;
}

@keyframes showHideDot {
  0% { opacity: 0; }
  50% { opacity: 1; }
  60% { opacity: 1; }
  100% { opacity: 0; }
}
@keyframes fade {
  0%,100% { opacity: .2 }
  50% { opacity: 1 }
}