.mask {
	position: fixed;
	top: 0;
	left: 0;
	height: 100vh;
	width: 100vw;
	z-index: 9998;
}
.progress {
	position: fixed;
	top: 35vh;
	left: 50vw;
	height: 5rem;
	width: 5rem;
	border-radius: 0.5rem;
	display: flex;
	justify-content: center;
	align-items: center;
	z-index: 9999;
}

:host ::ng-deep .custom-spinner .p-progress-spinner-circle {
	animation: custom-progress-spinner-dash 3s ease-in-out infinite, custom-progress-spinner-color 12s ease-in-out infinite;
}

@keyframes custom-progress-spinner-color {
	100%,
	0% {
		stroke: #fff;
	}
}
