
/*--------------------  Estilos para el loader -- GrupoLeader ---------------------*/
#contenedor_carga{background:var(--blanco);height: 100%;width: 100%;position:fixed;-webkit-transition: all 1s ease;-o-transition: all 1s ease;transition: all 1s ease;z-index: 1000000000000000000000000;}
#carga{
border:1px solid var(--blanco);
border-bottom-color:var(--celeste);
border-top-color:var(--azul);
height:80px;
width:80px;
border-radius: 100px;
position:absolute;
top:0;
left:0;
right:0;
bottom:0;
margin:auto;
-webkit-animation: girar 1s linear infinite;
-o-animation: girar 1s linear infinite;
animation: girar 1s linear infinite;
}

@keyframes girar{
  from {transform: rotate(0deg);}
  to {transform: rotate(360deg);}
}
