.wm-fixed-menu-mb {
    position: fixed;
    left: 0;
    bottom: 0;
    z-index: 11111;
    background: #fff;
    width: 100%;
    padding: 6px 0;
    box-shadow: 0px -1px 6px 0px #9f9f9fa3;
	color: #1791c8 !important;
}

 @keyframes goldAnimation {
    0% { color: black; }
    50% { color: gold; }
    100% { color: black; }
  }

 @keyframes redAnimation {
    0% { color: black; }
    50% { color: red; }
    100% { color: black; }
  }
  
  .animated-text {
    animation: goldAnimation 2.5s infinite;
  }

  .animated-text-red {
    animation: redAnimation 2.5s infinite;
  }