.bt-loader-ellips {
	font-size: 20px;
	position: relative;
	width: 4em;
	height: 1em;
	margin: 10px auto;
}

.bt-loader-ellips__dot {
	display: block;
	width: .7em;
	height: .7em;
	border-radius: .5em;
	background: var(--global-palette6);
	position: absolute;
	animation-duration: .5s;
	animation-timing-function: ease;
	animation-iteration-count: infinite;
}

.bt-loader-ellips__dot:nth-child(1), .bt-loader-ellips__dot:nth-child(2) {
	left: 0;
}

.bt-loader-ellips__dot:nth-child(3) {
	left: 1.5em;
}

.bt-loader-ellips__dot:nth-child(4) {
	left: 3em;
}

@keyframes loaderReveal {
	from {
		transform: scale(.001);
	}
	
	to {
		transform: scale(1);
	}
}

@keyframes loaderSlide {
	to {
		transform: translateX(1.5em);
	}
}

.bt-loader-ellips__dot:nth-child(1) {
	animation-name: loaderReveal;
}

.bt-loader-ellips__dot:nth-child(2), .bt-loader-ellips__dot:nth-child(3) {
	animation-name: loaderSlide;
}

.bt-loader-ellips__dot:nth-child(4) {
	animation-name: loaderReveal;
	animation-direction: reverse;
}

.page-load-status {
	display: none;
	padding-top: 20px;
	text-align: center;
	color: var(--global-palette4);
}