
#mrtbp-bar{
  position:fixed;top:0;left:0;right:0;
  background:var(--mrtbp-bg,#000);
  color:var(--mrtbp-color,#fff);
  font-family:var(--mrtbp-font,inherit);
  height:var(--mrtbp-height,34px);
  line-height:var(--mrtbp-height,34px);
  z-index:99999;
  overflow:hidden;
  display:flex;align-items:center;
}
.mrtbp-marquee{
  white-space:nowrap;
  display:flex;align-items:center;
  animation:mrtbp-scroll linear infinite;
}
.mrtbp-text{padding-left:10px;}
.mrtbp-pacman{
  width:0;height:0;
  border-top:10px solid transparent;
  border-bottom:10px solid transparent;
  border-left:20px solid var(--mrtbp-pacman,#ff0);
  margin-left:10px;
  animation:mrtbp-chomp .5s infinite;
}
@keyframes mrtbp-scroll{from{transform:translateX(100%);}to{transform:translateX(-100%);}}
@keyframes mrtbp-chomp{
  0%{border-top:0 solid transparent;border-bottom:0 solid transparent;}
  50%{border-top:10px solid transparent;border-bottom:10px solid transparent;}
  100%{border-top:0 solid transparent;border-bottom:0 solid transparent;}
}
