#confirm-dialog-bottom .npg_rsrv-btn {
    background-color: #ff1b1b !important;
}

#confirm-dialog-bottom .npg_rsrv-btn:hover {
    background-color: #a02525 !important;
    animation: pulseGlow 2s infinite;
}

#cart-checkout-btn {
	background-color: #ff1b1b !important;
}

#checkout-confirm-btn {
    background-color: #ff1b1b !important;
}

#checkout-confirm-btn:hover {
    background-color: #a02525 !important;
    animation: pulseGlow 2s infinite;
}

#cart-checkout-btn:hover {
	background-color: #a02525 !important;
	animation: pulseGlow 2s infinite;
}

#checkout{
    background-color: #ff1b1b !important;
}

.pulse-glow {
    animation: pulseGlow 2s infinite;
}

@keyframes pulseGlow {
	0% {
		box-shadow: 0 0 5px rgba(255, 0, 0, 0.5);
	}

	50% {
		box-shadow: 0 0 20px rgba(255, 0, 0, 1);
	}

	100% {
		box-shadow: 0 0 5px rgba(255, 0, 0, 0.5);
	}
}