
.loadding {
	position: absolute;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-direction: column;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 100%;
	height: 100%;
}

.loaddingBg {
	position: absolute;
	width: 100%;
	height: 100%;
	background-color: #fff;
	opacity: .8;
	z-index: -1;
}

.load-wrapp {
	float: left;
	width: auto;
	height: auto;
	text-align: center;
}

.line {
	display: inline-block;
	width: 15px;
	height: 15px;
	margin: 0 3px;
	border-radius: 15px;
	background-color: #3eafaa;
}

.load-3 .line:nth-last-child(1) {
	animation: loadingC 0.6s 0.1s linear infinite;
}

.load-3 .line:nth-last-child(2) {
	animation: loadingC 0.6s 0.2s linear infinite;
}

.load-3 .line:nth-last-child(3) {
	animation: loadingC 0.6s 0.3s linear infinite;
}

@keyframes loadingC {
	0% {
		transform: translate(0, 0);
	}

	50% {
		transform: translate(0, 15px);
	}

	100% {
		transform: translate(0, 0);
	}
}

.loadMessage {
	padding-top: 20px;
	padding-bottom: 70px;
}

	.loadMessage .PostLogoutRedirectUri {
		padding: 3px;
		border: 1px solid #3eafaa;
	}

	.loadMessage span {
		font-weight: bold;
		color: #3eafaa;
	}
