/*<div class="container-progress-black" id="progress-form-importarFacturas"><div><div class="row"><div class="col-md-3 col-sm-6"><div class="progress blue"><span class="progress-left"><span class="progress-bar"></span></span><span class="progress-right"><span class="progress-bar"></span></span><div class="progress-value-importarFacturas"></div></div></div></div></div></div>*/

.container-progress-black{
	z-index: 100001;
	position: absolute;
    left: 0px;
    top: 0px;
    width: 100%;
    height: 100%;
    background-color: #212121;
	display: flex;
	justify-content: center;
	align-items: center;
	font-size: 50px;
	color: #4CAF50;
	opacity: 0.7;
}
.container-progress-black .progress{
    width: 100px;
    height: 100px;
    line-height: 100px;
    background: none;
    margin: 0 auto;
    box-shadow: none;
    position: relative;
}
.container-progress-black .progress:after{
    content: "";
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 5px solid #fff;
    position: absolute;
    top: 0;
    left: 0;
}
.container-progress-black .progress > span{
    width: 50%;
    height: 100%;
    overflow: hidden;
    position: absolute;
    top: 0;
    z-index: 1;
}
.container-progress-black .progress .progress-left{
    left: 0;
}
.container-progress-black .progress .progress-bar{
    width: 100%;
    height: 100%;
    background: none;
    border-width: 5px;
    border-style: solid;
    position: absolute;
    top: 0;
}
.container-progress-black .progress .progress-left .progress-bar{
    left: 100%;
    border-top-right-radius: 80px;
    border-bottom-right-radius: 80px;
    border-left: 0;
    -webkit-transform-origin: center left;
    transform-origin: center left;
}
.container-progress-black .progress .progress-right{
    right: 0;
}
.container-progress-black .progress .progress-right .progress-bar{
    left: -100%;
    border-top-left-radius: 80px;
    border-bottom-left-radius: 80px;
    border-right: 0;
    -webkit-transform-origin: center right;
    transform-origin: center right;
    animation: loading-1 1.8s linear forwards;
}
.container-progress-black .progress .progress-value{
    width: 90%;
    height: 90%;
    border-radius: 50%;
    background-color: #212121;
    opacity: 0.7;
    font-size: 14px;
    color: #fff;
    line-height: 90px;
    text-align: center;
    position: absolute;
    top: 5%;
    left: 5%;
}
.container-progress-black .progress.blue .progress-bar{
    border-color: #049dff;
}
.container-progress-black .progress.blue .progress-left .progress-bar{
    animation: loading-1 1s linear forwards 1.8s;
}
@keyframes loading-1{
    0%{
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }
    100%{
        -webkit-transform: rotate(180deg);
        transform: rotate(180deg);
    }
}
@media only screen and (max-width: 990px){
    .container-progress-black .progress{ margin-bottom: 20px; }
}


.container-progres-black-lineal{
    margin: 0;
    background-color: #424242;
	color: #FFFFFF;
	border: 1px solid #616161 !important;
    height: 10px;
}