.loading-container {
	width: 100%;
	height: 100%;
	background: hsla(0, 0%, 0%, 0.5);
	display: flex;
	-webkit-justify-content: center;
	flex-wrap: wrap;
	position: absolute;
	z-index: 999;
	display: none;
	cursor: wait;
}

.loading-container div:not(.progress-bar) {
	width: 50%;
	text-align: center;
	margin: 0 auto;
	margin-top: 1vw;
	background-color: var(--InputColor);
	border-radius: 32px;
}

.progress-bar {
	width: 32px;
	color: var(--White);
	background-color: var(--Blue);
	border-radius: 32px;
	padding: 0.3vw;
}

.cogs {
	height: 30vmin;
	width: 100%;
	fill: var(--Blue);
	margin-top: 5vw;
}

.small-shadow, .medium-shadow, .large-shadow {
	fill: rgba(0, 0, 0, 0.05);
}

.small {
	-webkit-animation: counter-rotation 2.5s infinite linear;
	-moz-animation: counter-rotation 2.5s infinite linear;
	-o-animation: counter-rotation 2.5s infinite linear;
	animation: counter-rotation 2.5s infinite linear;
	-webkit-transform-origin: 100.136px 225.345px;
	-ms-transform-origin: 100.136px 225.345px;
	transform-origin: 100.136px 225.345px;
}

.small-shadow {
	-webkit-animation: counter-rotation 2.5s infinite linear;
	-moz-animation: counter-rotation 2.5s infinite linear;
	-o-animation: counter-rotation 2.5s infinite linear;
	animation: counter-rotation 2.5s infinite linear;
	-webkit-transform-origin: 110.136px 235.345px;
	-ms-transform-origin: 110.136px 235.345px;
	transform-origin: 110.136px 235.345px;
}

.medium {
	-webkit-animation: rotation 3.75s infinite linear;
	-moz-animation: rotation 3.75s infinite linear;
	-o-animation: rotation 3.75s infinite linear;
	animation: rotation 3.75s infinite linear;
	-webkit-transform-origin: 254.675px 379.447px;
	-ms-transform-origin: 254.675px 379.447px;
	transform-origin: 254.675px 379.447px;
}

.medium-shadow {
	-webkit-animation: rotation 3.75s infinite linear;
	-moz-animation: rotation 3.75s infinite linear;
	-o-animation: rotation 3.75s infinite linear;
	animation: rotation 3.75s infinite linear;
	-webkit-transform-origin: 264.675px 389.447px;
	-ms-transform-origin: 264.675px 389.447px;
	transform-origin: 264.675px 389.447px;
}

.large {
	-webkit-animation: counter-rotation 5s infinite linear;
	-moz-animation: counter-rotation 5s infinite linear;
	-o-animation: counter-rotation 5s infinite linear;
	animation: counter-rotation 5s infinite linear;
	-webkit-transform-origin: 461.37px 173.694px;
	-ms-transform-origin: 461.37px 173.694px;
	transform-origin: 461.37px 173.694px;
}

.large-shadow {
	-webkit-animation: counter-rotation 5s infinite linear;
	-moz-animation: counter-rotation 5s infinite linear;
	-o-animation: counter-rotation 5s infinite linear;
	animation: counter-rotation 5s infinite linear;
	-webkit-transform-origin: 471.37px 183.694px;
	-ms-transform-origin: 471.37px 183.694px;
	transform-origin: 471.37px 183.694px;
}

@-webkit-keyframes rotation {
	from {
		-webkit-transform: rotate(0deg);
	}

	to {
		-webkit-transform: rotate(359deg);
	}
}

@-moz-keyframes rotation {
	from {
		-moz-transform: rotate(0deg);
	}

	to {
		-moz-transform: rotate(359deg);
	}
}

@-o-keyframes rotation {
	from {
		-o-transform: rotate(0deg);
	}

	to {
		-o-transform: rotate(359deg);
	}
}

@keyframes rotation {
	from {
		transform: rotate(0deg);
	}

	to {
		transform: rotate(359deg);
	}
}

@-webkit-keyframes counter-rotation {
	from {
		-webkit-transform: rotate(359deg);
	}

	to {
		-webkit-transform: rotate(0deg);
	}
}

@-moz-keyframes counter-rotation {
	from {
		-moz-transform: rotate(359deg);
	}

	to {
		-moz-transform: rotate(0deg);
	}
}

@-o-keyframes counter-rotation {
	from {
		-o-transform: rotate(359deg);
	}

	to {
		-o-transform: rotate(0deg);
	}
}

@keyframes counter-rotation {
	from {
		transform: rotate(359deg);
	}

	to {
		transform: rotate(0deg);
	}
}
