#loader.cover-spin {
	width: 100%;
	height: 100%;
	position: fixed;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	z-index: 9999;
	background-color: rgba(255, 255, 255, 0.7);
}

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

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

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

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

#loader.cover-spin::after {
	content: '';
	display: block;
	position: absolute;
	left: calc(50% - 20px);
	top: calc(50% - 20px);
	width: 40px;
	height: 40px;
	border-style: solid;
	border-color: #7D7D9E;
	border-top-color: transparent;
	border-width: 4px;
	border-radius: 50%;
	-webkit-animation: spin .8s linear infinite;
	animation: spin .8s linear infinite;
}

.loading {
	position: relative;
}

.loading:after {
	content: '';
	display: block;
	position: absolute;
	top: 32px;
	right: 10px;
	width: 26px;
	height: 26px;
	border-style: solid;
	border-color: #7D7D9E;
	border-top-color: transparent;
	border-width: 4px;
	border-radius: 50%;
	-webkit-animation: spin .8s linear infinite;
	animation: spin .8s linear infinite;
}

#tax.loading:after {
	top: -13px;
	right: 0;
}
#_tax.loading:after {
	top: 3px;
}