



@keyframes blink-color {
  0% { color: red; }
  50% { color: black; }
  100% { color: red; }
}

.m-menu__item--dropdown {
  animation: blink-color 1s infinite;
}
