// Loading

@keyframes px2-loading {
	0% {
		transform: scale(0.0);
		opacity: 1;
	}
	100% {
		transform: scale(1.0);
		opacity: 0;
	}
}

.px2-loading{
	clear: both;
	float: none;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-content: center;
	align-items: center;
	text-align: center;
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 1010000;
	padding: 0;
	background-color: transparent;
	border: none;
	container-type: inline-size;

	&__sign {
		box-sizing: border-box;
		display: flex;
		justify-content: center;
		align-content: center;
		flex-direction: column;
		align-items: center;
		text-align: center;
		position: relative;
		top: 0;
		left: 0;
		width: 100%;
		height: 100%;

		&::before {
			content: "";

			background-color: $px2-main-color; // fallback
			background-color: var(--px2-main-color, $px2-main-color);
			border-radius: 100%;
			margin: 2px;
			animation-fill-mode: both;

			display: inline-block;
			height: 60px;
			width: 60px;
			animation: px2-loading 1s 0s ease-in-out infinite;

		}
	}

	&__message {
		clear: both;
		font-size: 0.8rem;
		text-align: center;
		color: #999;
	}
}
