#loaderParent {
	position: fixed;
	top: 0; bottom: 0; left: 0; right: 0;
	z-index: 100000;
	display: inline-block;
	background-color: rgba(255,255,255,0.6);
	text-align: center;
	display: none;
}

.loader {
	border-radius: 50%;
	position: absolute; top: 50%; left: 50%;
	display: inline-block;
	box-sizing: border-box;
}

.loader:nth-child(1) {
	width: 190px;
	height: 190px;
	border-top: 6px solid var(--green);
	border-right: 6px solid transparent;
	animation: rotation 1.5s linear infinite;
}

.loader:nth-child(2) {
	width: 198px;
	height: 198px;
	border-top: 6px solid var(--yellow);
	border-right: 6px solid transparent;
	animation: rotation 1.9s linear infinite;
}

.loader:nth-child(3) {
	width: 206px;
	height: 206px;
	border-top: 6px solid var(--red);
	border-right: 6px solid transparent;
	animation: rotation 2.2s linear infinite;
}

@keyframes rotation {
	0% {
		transform: translate(-50%, -50%) rotate(0deg);
	}
	100% {
		transform: translate(-50%, -50%) rotate(360deg);
	}
}

#loaderValue {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
}

#loaderValue a {
	text-decoration: underline;
	color: var(--red);
}