/*
Theme Name: Softfocus
Theme URI:	https://softfocus.com.br/
Author: Rafael Forcadell
Version: 1.0
*/


/*
Lazy
--------------------------------------------
*/


img.lazy,
img.lazy-processando,
.lazy-processando video { position: absolute; width: 100%; visibility: hidden; }
img.lazy-carregado { max-width: 100%; }
.lazy-carregado,
.lazy-carregado video { animation: fade-in 200ms ease-in-out; animation-fill-mode: both; }

.video div.lazy-carregando { position: absolute; top: 0; left: 0; width: 100%; height: 100%; }
div.lazy-carregando { background-color: rgba(0,0,0,.1); }
div.lazy-carregando.transparente { background-color: transparent; }
div.lazy-carregando:before { position: absolute; z-index: 1; top: 50%; left: 50%; width: 20px; height: 20px; margin: -10px; background-image: url(../imagens/lazy/carregando.svg); background-repeat: no-repeat; background-position: center; background-size: contain; opacity: .2; animation: lazy-carregando 500ms linear infinite; content: ""; }

@-webkit-keyframes lazy-carregando{
	100%{ transform:rotate(360deg); }
}
@keyframes lazy-carregando{
	100%{ transform:rotate(360deg); }
}


