/* Milo — online presence dots */
.header .avatar,.chatRow .avatar{position:relative;overflow:visible;}
.header .avatar.miloOnline::after,.chatRow .avatar.miloOnline::after{
  content:"";
  position:absolute;
  right:-1px;
  bottom:-1px;
  width:11px;
  height:11px;
  border-radius:50%;
  background:#35c76f;
  border:2px solid var(--panel);
  box-sizing:content-box;
  box-shadow:0 0 0 1px rgba(0,0,0,.05);
  z-index:2;
}
.chatRow .avatar.miloOnline::after{right:-2px;bottom:-2px;width:10px;height:10px;}
@media(max-width:760px){
  .header .avatar.miloOnline::after{width:10px;height:10px;right:-2px;bottom:-2px;}
  .chatRow .avatar.miloOnline::after{width:10px;height:10px;right:-1px;bottom:-1px;}
}
