#loadingDiv {
	text-align: left;
	background-color: var(--dark0);
	opacity: 1;
	z-index: 999999;
	/* background-image: url(../resources/images/bgPattern.png); */
	background-repeat: repeat;
	color: #fff;
	/* background-size: 6px 6px; */
	display: flex;
	flex-direction: column;
	align-content: center;
	align-items: center;
	justify-content: space-around;
}
#loadingDiv a {
	display: flex;
	justify-content: center;
}

.loadingLine {
	width: 100%;
}
.loadingText {
	text-align: center;
	margin: 0;
	padding: 0;
	margin-block-start: 0em;
	margin-block-end: 0em;
	margin-top: 3px;
	margin-bottom: 3px;
	width: 100%;

	height: 1em;
	font-size: 14px;
}
.loadingBar {
	margin-top: 12px;
	min-width: 350px;
	min-height: 25px;
	border-radius: 15px;
	background-color: var(--fontColor);

	/* overflow: hidden; */
	padding: 2px;
	box-sizing: border-box;
}
.loadingBarInnerOuter {
	width: 100%;
	height: 100%;
	min-height: 25px;
	border-radius: 15px;
	overflow: hidden;
	padding: 2px;
	background-color: var(--dark0);
	box-sizing: border-box;
}
.loadingBarInner {
	width: 0%;
	height: 100%;
	min-height: 25px;
	border-radius: 15px;

	transition: 0.5s width linear;
	background-color: var(--fontColor);
	box-sizing: border-box;
}

#loadingDiv.hidden {
	background-size: 20px 20px;
}
/* .loader {
	display: block;
	width: 80px;
	height: 80px;

	position: relative;
	z-index: 999;
	overflow: show;
	right: 0;
	margin: auto;
	margin-bottom: 25px;
}
.loader div {
	position: absolute;
	border: 4px solid #fff;
	opacity: 1;
	border-radius: 50%;
	transition: all 1s linear;
	animation: lds-ripple 3s cubic-bezier(0, 0.2, 0.8, 1) infinite;
}
.loader div:nth-child(2) {
	animation-delay: -0.5s;
}
@keyframes lds-ripple {
	0% {
		top: 36px;
		left: 36px;
		width: 0;
		height: 0;
		opacity: 1;
	}
	100% {
		top: 0px;
		left: 0px;
		width: 72px;
		height: 72px;
		opacity: 0;
	}
} */
.lds-default {
	display: block;
	position: relative;
	width: 80px;
	height: 80px;
	margin: auto;
	margin-bottom: 24px;
}
.lds-default div {
	position: absolute;
	width: 8px;
	height: 8px;
	background: var(--fontColor);
	border-radius: 100%;
	animation: lds-default 1.2s linear infinite;
}
.lds-default div:nth-child(1) {
	animation-delay: 0s;
	top: 37px;
	left: 66px;
}
.lds-default div:nth-child(2) {
	animation-delay: -0.1s;
	top: 22px;
	left: 62px;
}
.lds-default div:nth-child(3) {
	animation-delay: -0.2s;
	top: 11px;
	left: 52px;
}
.lds-default div:nth-child(4) {
	animation-delay: -0.3s;
	top: 7px;
	left: 37px;
}
.lds-default div:nth-child(5) {
	animation-delay: -0.4s;
	top: 11px;
	left: 22px;
}
.lds-default div:nth-child(6) {
	animation-delay: -0.5s;
	top: 22px;
	left: 11px;
}
.lds-default div:nth-child(7) {
	animation-delay: -0.6s;
	top: 37px;
	left: 7px;
}
.lds-default div:nth-child(8) {
	animation-delay: -0.7s;
	top: 52px;
	left: 11px;
}
.lds-default div:nth-child(9) {
	animation-delay: -0.8s;
	top: 62px;
	left: 22px;
}
.lds-default div:nth-child(10) {
	animation-delay: -0.9s;
	top: 66px;
	left: 37px;
}
.lds-default div:nth-child(11) {
	animation-delay: -1s;
	top: 62px;
	left: 52px;
}
.lds-default div:nth-child(12) {
	animation-delay: -1.1s;
	top: 52px;
	left: 62px;
}
@keyframes lds-default {
	0%,
	10%,
	90%,
	100% {
		transform: scale(0);
	}
	50% {
		transform: scale(1);
	}
}
