.app-loader-container {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 999999;
	display: flex;
	justify-content: center;
	align-items: center;
}
.app-loader {
	width: 150px;
	height: 150px;
	background-color: #169073;
	border-radius: 16px;
	position: relative;
	overflow: hidden;
}
.app-loader:before,
.app-loader:after {
	content: "";
	position: absolute;
	width: 140%;
	height: 140%;
	border-radius: 45%;
	left: -20%;
	top: -40%;
	background-color: #0a1254;
	animation: wave 5s linear infinite;
}
.app-loader:before {
	border-radius: 30%;
	background: rgba(255, 255, 255, 0.4);
	animation: wave 5s linear infinite;
}
@keyframes wave {
	0% {
		top: -50%;
		transform: rotate(0);
	}
	50% {
		top: -100%;
		transform: rotate(180deg);
	}
	100% {
		top: -50%;
		transform: rotate(360deg);
	}
}