/* Alerts */ 

@keyframes primary-alert-keyframes {
	0% { background: var(--dom-primary-color); }
	50% { background: var(--alert-color); }
	100% { background: var(--dom-primary-color); }
}

.dom.primary-alert {
	animation: primary-alert-keyframes 1s;
}
