.drop-zone-file{
    opacity:0;
}

.drop-zone-info{
    position: absolute;
    top: 35%;
    width:100%;
    text-align:center;
    white-space: nowrap;
    padding-left: 20px;
    padding-right: 20px;
    text-overflow: ellipsis;
    overflow: hidden;
}

.drop-zone {
    width: 100%;
    height: 100%;
    min-height:100px;
    position:absolute;
    border: 1px dashed rgba(0, 0, 0, 0.3);
    border-radius: 5px;
    font-family: Arial;
    text-align: center;
    position: relative;
    font-size: 20px;
    color: rgba(0,0,0,.3);
    background-color: #f7f7f7;
}

.drop-zone input {
    position: absolute;
    cursor: pointer;
    left: 0px;
    top: -40px;
}

.drop-zone.mouse-over {
    border: 1px dashed rgba(0,0,0,.5);
    color: rgba(0,0,0,.5);
}

.dropzoneUpload {
    text-align: center;
    top: 35%;
    position: absolute;
    width: 100%;
    left: 0;
  }
  
.dropzoneUpload img {
    height: 30px;
    width: 30px;
    -webkit-animation-name: spin;
    -webkit-animation-duration: 1500ms;
    -webkit-animation-iteration-count: infinite;
    -webkit-animation-timing-function: linear;
    -moz-animation-name: spin;
    -moz-animation-duration: 1500ms;
    -moz-animation-iteration-count: infinite;
    -moz-animation-timing-function: linear;
    -ms-animation-name: spin;
    -ms-animation-duration: 1500ms;
    -ms-animation-iteration-count: infinite;
    -ms-animation-timing-function: linear;
    animation-name: spin;
    animation-duration: 1500ms;
    animation-iteration-count: infinite;
    animation-timing-function: linear;
}