/*
  Community typing indicator module.
  Extracted from the former pages/70-community.css; keep after 75-community-addons-messages.css.
*/

/* P308 РІР‚вЂќ Community typing indicator */
.communityBoard__typing{
  display:flex;
  align-items:center;
  gap:8px;
  min-height:18px;
  margin-top:4px;
  color:var(--muted, #9aa4b2);
  font-size:12px;
  line-height:1.35;
}
.communityBoard__typing[hidden]{
  display:none !important;
}
.communityBoard__typing::before{
  content:'РІР‚СћРІР‚СћРІР‚Сћ';
  display:inline-block;
  min-width:18px;
  letter-spacing:2px;
  font-weight:700;
  color:var(--accent, #7c5cff);
  animation:communityTypingPulse 1.2s ease-in-out infinite;
}
@keyframes communityTypingPulse{
  0%, 100% { opacity:.45; transform:translateY(0); }
  50% { opacity:1; transform:translateY(-1px); }
}
@media (max-width: 1120px), (orientation: portrait) and (max-width: 1366px){
  .communityBoard__typing{
    font-size:11px;
    min-height:16px;
  }
}

