.loadercontainer {
	display: none;
	position: fixed;
	top: 0;
	left: 0;
	height: 99vh;
	width: 99vw;
	z-index: 99;
}
.loaderbox {
	border: 5px solid #7a71af;
	border-radius: 15px;
	background-color: white;
	height: fit-content;
	width: fit-content;
	text-align: center;
	text-align: -webkit-center;
	box-shadow: 0 0 0 100vmax rgb(0 0 0 / 75%);
	padding: 4rem;
	margin: auto auto;
	background-image: url(icons/steel.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}
.loader,
.loader:before,
.loader:after {
	border-radius: 50%;
	width: 2.5em;
	height: 2.5em;
	-webkit-animation-fill-mode: both;
	animation-fill-mode: both;
	-webkit-animation: load7 1.8s infinite ease-in-out;
	animation: load7 1.8s infinite ease-in-out;
}
.loader {
	position: relative;
	opacity: 100%;
	color: #40007b;
	font-size: 10px;
	margin: auto auto;
	text-indent: -9999em;
	-webkit-transform: translateZ(0);
	-ms-transform: translateZ(0);
	transform: translateZ(0);
	-webkit-animation-delay: -0.16s;
	animation-delay: -0.16s;
}
.loader:before,
.loader:after {
	content: '';
	position: absolute;
	top: 0;
}
.loader:before {
	left: -3.5em;
	-webkit-animation-delay: -0.32s;
	animation-delay: -0.32s;
}
.loader:after {
	left: 3.5em;
}
@-webkit-keyframes load7 {
	0%,
	80%,
	100% {
		box-shadow: 0 2.5em 0 -1.3em;
	}
	40% {
		box-shadow: 0 2.5em 0 0;
	}
}
@keyframes load7 {
	0%,
	80%,
	100% {
		box-shadow: 0 2.5em 0 -1.3em;
	}
	40% {
		box-shadow: 0 2.5em 0 0;
	}
}
.loadertext {
	color: #40007b;
	font-size: 1em;
	font-weight: bold;
	margin-top: 2.5em;
}