#wbkb-page-loader{

	position:fixed;
	inset:0;

	background:rgba(0,0,0,.35);

	display:flex;
	align-items:center;
	justify-content:center;

	z-index:999999;

	transition:.3s;

}

#wbkb-page-loader.hidden{

	opacity:0;
	visibility:hidden;

}

.wbkb-loader-card{

	width:310px;

	height:150px;

	background:#fff;

	border-radius:14px;

	display:flex;

	flex-direction:column;

	align-items:center;

	justify-content:center;

	box-shadow:0 20px 60px rgba(0,0,0,.15);

}

.wbkb-loader-card img{

	max-width:180px;
	height:auto;

}

.wbkb-loader-dots{

	margin-top:15px;

	display:flex;
	gap:8px;

}

.wbkb-loader-dots span{

	width:8px;
	height:8px;

	border-radius:50%;

	/* background:#aaa; */
	background:#093C75;

	animation:wbkbdot 1.2s infinite;
}

.wbkb-loader-dots span:nth-child(2){
	animation-delay:.15s;
}

.wbkb-loader-dots span:nth-child(3){
	animation-delay:.3s;
}

.wbkb-loader-dots span:nth-child(4){
	animation-delay:.45s;
}

@keyframes wbkbdot{

	0%,80%,100%{
		transform:scale(.7);
		opacity:.4;
	}

	40%{
		transform:scale(1.2);
		opacity:1;
	}
}