/* "Please Wait" image animation */
@keyframes rotation {
	from {
		transform: rotateY(0deg);
	}

	to {
		transform: rotateY(360deg);
	}
}

div.updateProgress {
	animation: rotation 2s infinite linear;
	background-color: transparent;
	background-image: url("../../images/Insuresoft Diamond.png");
	background-position: center;
	background-repeat: no-repeat;
	background-size: 100px;
	border: none;
	display: flex;
	height: 100px;
	justify-content: center;
	opacity: 0.95;
	width: 100px;
}

	div.updateProgress span.updateProgressMessage {
		display: none;
	}

	div.updateProgress img#imgPopup {
		display: none;
	}

div.modalBackground {
	background-color: var(--primary-color);
	opacity: 0.60 !important;
}