
@keyframes rotation { 		from { 		  -webkit-transform: rotate(0deg); 		} 		to { 		  -webkit-transform: rotate(359deg); 		} 	} 	 	#wpcal_user_app.loading-indicator-initial { 		min-height: 60px; 		display: flex; 		align-items: center; 		justify-content: center; 	} 	#wpcal_user_app.loading-indicator-initial::before { 		content: ""; 		position: absolute; 		width: 20px; 		height: 20px; 		border-radius: 50%; 		border: 4px solid rgba(var(--accentClrRGB, 86, 123, 243), 1); 		border-top-color: #fff; 		background-color: #fff; 		box-shadow: 0 0 0px 3px #fff, 0 0 7px rgba(0, 0, 0, 0.9); 		z-index: 2; 		-webkit-animation: rotation 0.8s infinite linear; 		animation: rotation 0.8s infinite linear; 	} 	#wpcal_user_app.loading-indicator-initial::after { 		content: ""; 		width: 90%; 		max-width: 700px; 		height: 450px; 		background-color: #fff; 		border-radius: 20px; 		box-shadow: 0 0 30px 0px rgb(153 165 189 / 20%); 		border: 1px solid #e9ecf2; 	}