.cj-loading {
	position: relative;
}
.cj-loading form:before {
	content: 'Loading...';
	position: absolute;
	top: 0;
	left: 0;
	bottom: 0;
	right: 0;
	display: flex;
	justify-content: center;
	align-items: center;
	background-color: rgba(255,255,255,0.9);
	z-index: 99;
	animation: blink 2s linear infinite;
}
.cj-disabled {
	pointer-events: none;
}
@keyframes blink {
  50% {
    color: rgba(0,0,0,0);
  }
}
