
#fileslbl {
  cursor: pointer;
  position: absolute;
  top: 0px;
  left: 0px;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #fff;
  color: black;
  font-weight: bold;
  bottom: 0px;
  right: 0px;
  padding: 5px;
  text-align: center;
  transition: .5s;
animation-duration: 1s;
animation-fill-mode: forwards;
animation-iteration-count: infinite;
}
#filesfld {
  display: none;
}
#progress {
 font-size: 10px;
 
}
@keyframes dropbox {
0% {
background-image: repeating-linear-gradient(30deg, green 1%, green 3%, darkgreen 5%, darkgreen 5%);
}
50% {
background-image: repeating-linear-gradient(30deg, darkgreen 1%, darkgreen 3%, green 5%, green 5%);
}
100% {
background-image: repeating-linear-gradient(30deg, green 1%, green 3%, darkgreen 5%, darkgreen 5%);
}
}