HEX
Server: Apache
System: Linux ecngx285.inmotionhosting.com 4.18.0-553.79.1.lve.el8.x86_64 #1 SMP Wed Oct 15 17:59:35 UTC 2025 x86_64
User: zeusxp5 (3862)
PHP: 8.3.28
Disabled: NONE
Upload Files
File: /home/zeusxp5/chuair.org/wp-content/plugins/post-and-page-builder/assets/scss/admin/_spinner.scss
.bg-loading-spinner {
	display: none;
	position: relative;

	&.enabled {
		display: inline-block !important;

		&:before {
			content: ' ';
			background-image: url(../image/boldgrid-logo.svg);
			display: block;
			width: 50px;
			height: 50px;
			background-repeat: no-repeat;
		}

		&:after {
			content: ' ';
			width: 50px;
			height: 50px;
			background-color: #000;
			display: block;
			border-radius: 100%;
			animation: sk-scaleout 1s infinite ease-in-out;
			position: absolute;
			top: 0;
		}
	}
}

.bg-editor-loading {
	display: none;

	&.enabled {
		display: block !important;
	}

	&:after {
		content: ' ';
		width: 50px;
		height: 50px;
		background-color: #fff;
		position: fixed;
		top: 50%;
		left: 50%;
		top: calc(50% - 25px);
		z-index: 99999999;
		border-radius: 100%;
		animation: sk-scaleout 1s infinite ease-in-out;
	}

	&:before {
		content: ' ';
		background-image: url(../image/boldgrid-logo.svg);
		width: 50px;
		height: 50px;
		z-index: 99999999;
		position: fixed;
		top: 50%;
		left: 50%;
		background-repeat: no-repeat;
		transform: translateY(-50%);
	}

	&.absolute:after,
	&.absolute:before {
		position: absolute;
	}
}

@keyframes sk-scaleout {
	0% {
		transform: scale(0);
	}

	100% {
		transform: scale(1);
		opacity: 0;
	}
}