
.content-loading {
	position: fixed; top: 0; left: 0; width: 100vw; height: 100vh; display: flex; align-items: center; justify-content: center; background-color: rgba(255, 255, 255, 0.5); z-index: 1031;
	pointer-events: none;
	opacity: 0;
}

.content-loading.on {
	pointer-events: all;
	opacity: 1;
}

