.flash {
	animation: flashAnimation 6s ease-in-out 3s alternate backwards;
}

@keyframes flashAnimation {
	0% {
	  background-color: inherit;
	}
  
	10%,
	90% {
	  background-color: #ffb606;
	}
  
	100% {
	  background-color: inherit;
	}
  }
  