#ajaxloader-underlay {
	top: 0px;
	z-index: 10000;
	width: 100%;
	position: fixed;
	height: 100%;
	background: black;
	opacity: 0.5;
}

#ajaxloader-loader {
  position: fixed;
  top: 50%;
  left: 50%;
  width: 60px;
  height: 60px;
  margin: -30px 0 0 -30px;
}

	#ajaxloader-loader .ajax-spinner {
		width: 60px;
		height: 60px;
		border: 6px solid #ccc;
		border-top-color: #333;
		border-radius: 50%;
		animation: ajaxLoader-spin 1s linear infinite;
		box-sizing: border-box;
	}

.ajax-loader-relative {
	position: relative;
}
.ajax-loader-relative * {
	visibility: hidden;
}

.ajax-loader {
	position: absolute;
	top: 50%;
	left: 50%;
	width: 30px;
	height: 30px;
	margin: -15px 0 0 -15px;
	visibility: visible !important;
}

	.ajax-loader .ajax-spinner {
		width: 30px;
		height: 30px;
		border: 4px solid #ccc;
		border-top-color: #333;
		border-radius: 50%;
		animation: ajaxLoader-spin 1s linear infinite;
		box-sizing: border-box;
	}


@keyframes ajaxLoader-spin {
	to {
		transform: rotate(360deg);
	}
}