/******* Do not edit this file *******
Woody Code Snippets CSS and JS
Saved: Oct 04 2024 | 11:12:54 */
#shipping_method label {
	width: max-content;
}

.blink-span {
	color: #D4564A;
	background: white;
	border-radius: 10px;
	padding:2px;
	
	box-shadow: 0 0 0 0 #D4564A;
	transform: scale(1);
	animation: pulse 2s infinite;
}

@keyframes pulse {
	0% {
		transform: scale(0.95);
		box-shadow: 0 0 0 0 rgba(212, 86, 74, 0.7);
	}

	70% {
		transform: scale(1);
		box-shadow: 0 0 0 10px rgba(0, 0, 0, 0);
	}

	100% {
		transform: scale(0.95);
		box-shadow: 0 0 0 0 rgba(0, 0, 0, 0);
	}
}

