/**
	* Child-Theme RED WINE Background Style
*/

/* Color Set
	Vermelho: 	#BA2229
	Preto: 		#1A1919
*/

.bglbc-redwine {
  position: relative;
  width: 100vw;
  height: 100vh;
  background: #1A1919;
  overflow: hidden;
}
.bglbc-redwine-circles {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  pointer-events: none;
}
.background-movement {
  width: 50vmin;
  height: 50vmin;
  border-radius: 50%;
  position: absolute;
  backface-visibility: hidden;
  background-color: rgba(186, 34, 41, 0.8);
  filter: blur(110px);
  /* O JS vai controlar a posição */
  will-change: transform;
}
.bglbc-redwine-content {
  position: relative;
  z-index: 2;
}