.procesando-supercontainer {
position: fixed;
left: 0;
top: 0;
right: 0;
bottom: 0;
background-color: rgba(255,255,255,0.7);
z-index: 1100;
}
.modal .procesando-supercontainer{
position: absolute;
border-radius: 5px;
}
.procesando-supercontainer .procesando-container{
background-color: white;
border: 1px solid #ccc;
width: 300px;
height: auto;
box-shadow: 0 0 8px rgba(0, 0, 0, 0.4);
border-radius: 5px;
position: absolute;
top: 50%;
left: 50%;
margin-left: -150px;
margin-top: -45px;
text-align: center;
padding: 5px;
word-wrap: break-word;
}
.procesando-supercontainer .procesando-container h5{
color: #0E90D2;
text-shadow: 0 1px 0 rgba(0, 0, 0, 0.2);
margin: 5px 5px 10px 5px;
line-height: 13px;
}
.procesando-supercontainer .progress{
margin: 5px;
}
|