.price-info {
	background:var(--wd-primary-color);
	padding: 8px;
	border-radius: 5px;
	color: #fff;
	width: 100%;
}

.noora-update-price-blob {
	background: var(--wd-primary-color);
	border-radius: 50%;
	box-shadow: var(--wd-primary-color);
	margin: 4px 0 0 4px;
	height: 15px;
	width: 15px;
	transform: scale(1);
	animation: pulse-blue 2s infinite;
	float: right;
}

.noora-update-price-blob.blue {
	background: rgba(52, 172, 224, 1);
	box-shadow: 0 0 0 0 rgba(52, 172, 224, 1);
	animation: pulse-blue 2s infinite;
}

@keyframes pulse-blue {
	0% {
		transform: scale(0.95);
		box-shadow: 0 0 0 0 rgba(52, 172, 224, 0.7);
	}

	70% {
		transform: scale(1);
		box-shadow: 0 0 0 10px rgba(52, 172, 224, 0);
	}

	100% {
		transform: scale(0.95);
		box-shadow: 0 0 0 0 rgba(52, 172, 224, 0);
	}
}