#loaderAction {
	position: fixed;
	width: 100%;
	height: 100%;
	top: 0px;
	left: 0px;
	background-color: rgba(0, 0, 0, 0.7);
	z-index: 100;
	text-align: center;
}

#loaderAction img {
	margin-top: 12vh;
	width: 30vw;
	height: auto;
}

#closeLoader {
	color: white;
	font-size: 20px;
	right: 2vw;
	position: absolute;
	top: 2vh;
}

.loader {
	position: absolute;
	width: 48px;
	height: 48px;
	border-radius: 50%;
	display: inline-block;
	border-top: 3px solid #7378b1ff;
	border-right: 3px solid transparent;
	box-sizing: border-box;
	animation: rotation 1s linear infinite;
	top: 50%;
	left: 50%;
	margin-top: -24px;
	margin-left: -24px;
}

@keyframes rotation {
	0% {
		transform: rotate(0deg);
	}
	100% {
		transform: rotate(360deg);
	}
}
