.block-ui-container {
    position: absolute;
	z-index: 1010;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	height: 100%;
	width: 100%;
	min-height: 2em;
	cursor: wait;
	overflow: hidden;
	background-color: rgba(255, 255, 255, 0.8)
}
  
.block-ui-loader-container {
	position: absolute;
	top: 50%;
	left: 0;
	right: 0;
	text-align: center;
	transform: translateY(-50%);
	z-index: 10001;
	text-align: center;
}

.page-loading .block-ui-loader-container {
	position: fixed;
}

.block-ui-default-spinner {
	height: 64px;
	width: 64px;
	animation: spin 2s linear infinite;
}

@keyframes spin {
	to {
	  transform: rotate(360deg);
	}
  }
