﻿
.DivCarga{
    background-color: black;
	left: 0px;
	height: 100%;
	position: fixed;
	top: 0px;
	width: 100%;
	z-index: 1030;
}
.centered{
    background-color: black;
	position: fixed;
	z-index: 1030;

	width:400px;
	height:400px;
	top:50%;
	left:50%;
	transform:translate(-50%,-50%);
	filter: blur(10px) contrast(20);
}
.blob-1,.blob-2{
	width:60px;
	height:60px;
	position:absolute;
	background:#FFF;
	border-radius:50%;
	top:50%;left:50%;
	transform:translate(-50%,-50%);
}
.blob-1{
	left:20%;
	animation:osc-l 2.5s ease infinite;
}
.blob-2{
	left:80%;
	animation:osc-r 2.5s ease infinite;
	background:#ff0;
}
@keyframes osc-l{
	0%{left:20%;}
	50%{left:50%;}
	100%{left:20%;}
}
@keyframes osc-r{
	0%{left:80%;}
	50%{left:50%;}
	100%{left:80%;}
}