#animation-upload{
position: fixed;
width: 100%;
height: 100%;
top: 0;
left: 0;
z-index: -1;
opacity: 0;
transition: .3s;
background: rgba(0,0,0,.6)
} 
#animation-upload.upload{
opacity: 1;
z-index: 10000;
}
#animation-upload .text{
position: absolute;
width: 150px;
top: 50%;
left: 50%;
transform: translate(-50%,-50%);
}
#animation-upload .text img{
position: relative;
float: left;
width: 40px;
left: 50%;
transform: translateX(-50%);
margin-bottom: 15px;
filter: invert(1);
}
#animation-upload .text span{
position: relative;
float: left;
width: 100%;
font-size: 20px;
font-weight: 500;
text-align: center;
color: white;
}