.text-yellow {
color: #ffc107;
}

html .bg-color-yellow,
html .bg-yellow {
	background-color: #ffc107 !important;
}

.blink {
  animation: blink 3s infinite;
}

@keyframes blink {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}