.arcus-disabler {
	background: rgba(245, 245, 245, 0.7);
	width: 100%;
	height: 100%;
	z-index: 9999;
	position: absolute;
	text-align: center;
	display: none; /*this will be changed from javascript to table */
}

.arcus-spinner-container {
	position: absolute;
	top: 35%;
	left: 50%;
	width: 150px;
	margin-left: -75px;
	text-align: center;
}

.arcus-spinner {
	z-index: 9999;
	margin: auto;
	margin-top: 15px;
	width: 50px;
	height: 40px;
	text-align: center;
	font-size: 10px;
}

.arcus-spinner > div {
	background-color: var(--contrast-color);
	height: 100%;
	width: 6px;
	display: inline-block;
	-webkit-animation: sk-stretchdelay 1.2s infinite ease-in-out;
	animation: sk-stretchdelay 1.2s infinite ease-in-out;
}

.arcus-spinner .rect2 {
	-webkit-animation-delay: -1.1s;
	animation-delay: -1.1s;
}

.arcus-spinner .rect3 {
	-webkit-animation-delay: -1.0s;
	animation-delay: -1.0s;
}

.arcus-spinner .rect4 {
	-webkit-animation-delay: -0.9s;
	animation-delay: -0.9s;
}

.arcus-spinner .rect5 {
	-webkit-animation-delay: -0.8s;
	animation-delay: -0.8s;
}

@-webkit-keyframes sk-stretchdelay {
	0%, 40%, 100% {
		-webkit-transform: scaleY(0.4)
	}

	20% {
		-webkit-transform: scaleY(1.0)
	}
}

@keyframes sk-stretchdelay {
	0%, 40%, 100% {
		transform: scaleY(0.4);
		-webkit-transform: scaleY(0.4);
	}

	20% {
		transform: scaleY(1.0);
		-webkit-transform: scaleY(1.0);
	}
}