.ajax-mini-spinner-container {
	display: none;
	margin-left: 1rem;
}

.ajax-mini-spinner-container img {
	width: 80%;
	height: auto;
	margin-top: 5px;
}

.ajax-spinner-container {
	z-index: -9998;
	position: fixed;
	top: 0;
	left: 0;
	bottom: 0;
	right: 0;
	background-color: rgba(0, 0, 0, 0.97);
	opacity: 0;
}

.ajax-spinner-container.boxed .ajax-spinner-inner {
	background-color: #fff;
	border-radius: 5%;
}

.ajax-spinner-inner {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	min-width: 500px;
	min-height: 350px;
	display: flex;
	justify-content: center;
	align-items: center;
	flex-direction: column;
}

.ajax-spinner-modal {
	width: 100px;
	height: 102px;
	border-radius: 100%;
}

.ajax-spinner-inner .heading {
	visibility: hidden;
}

.circle {
	width: 100%;
	height: 100%;
	position: absolute;
}

.circle .inner {
	width: 100%;
	height: 100%;
	border-radius: 100%;
	border: 5px solid rgba(0, 255, 170, 0.7);
	border-right: none;
	border-top: none;
	background-clip: padding;
	box-shadow: inset 0px 0px 10px rgba(0, 255, 170, 0.15);
}

@-webkit-keyframes spin {
	from {
		transform: rotate(0deg);
	}
	to {
		transform: rotate(360deg);
	}
}

@keyframes spin {
	from {
		transform: rotate(0deg);
	}
	to {
		transform: rotate(360deg);
	}
}

.circle:nth-of-type(0) {
	transform: rotate(0deg);
}

.circle:nth-of-type(0) .inner {
	-webkit-animation: spin 2s infinite linear;
	animation: spin 2s infinite linear;
}

.circle:nth-of-type(1) {
	transform: rotate(70deg);
}

.circle:nth-of-type(1) .inner {
	-webkit-animation: spin 2s infinite linear;
	animation: spin 2s infinite linear;
}

.circle:nth-of-type(2) {
	transform: rotate(140deg);
}

.circle:nth-of-type(2) .inner {
	-webkit-animation: spin 2s infinite linear;
	animation: spin 2s infinite linear;
}

.ajax-spinner-modal {
	-webkit-animation: spin 5s infinite linear;
	animation: spin 5s infinite linear;
}

.importer-progress {
	display: block; /* default: inline-block */
	width: 300px;
	margin: 2em auto;
	padding: 4px;
	border: 0 none;
	background: #444;
	border-radius: 14px;
}

.importer-progress::-moz-progress-bar {
	border-radius: 12px;
	background: rgba(0, 255, 170, 0.7);
}

/* webkit */
@media screen and (-webkit-min-device-pixel-ratio: 0) {
	.importer-progress {
		height: 25px;
	}
}

.importer-progress::-webkit-progress-bar {
	background: transparent;
}

.importer-progress::-webkit-progress-value {
	border-radius: 12px;
	background: #fff;
}
