.btnChat.is-chat-unread-loading {
  opacity: 0.75;
}

/* ITEM O DIV*/
.chat2-unread-item {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 32px;
  font-family: "Titillium Web", Arial, sans-serif;
  color: #1f2937;
}

.chat2-unread-item__text {
  font-size: 14px;
  font-weight: 600;
  line-height: 1.2;
}

.chat2-unread-item__badge {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 28px;
  height: 28px;
  padding: 0 8px;
  border-radius: 999px;
  background: #d92d20;
  color: #ffffff;
  font-size: 13px;
  font-weight: 700;
  line-height: 1;
  box-shadow: 0 2px 8px rgba(217, 45, 32, 0.25);
}

.chat2-unread-item__badge-small {
  min-width: 19px !important;
  height: 19px !important;
  font-size: 12.5px;
}

.chat2-unread-item.is-zero .chat2-unread-item__badge {
  background: #64748b;
  box-shadow: none;
}

.chat2-unread-item.is-loading .chat2-unread-item__badge {
  background: #cbd5e1;
  color: #334155;
  min-width: 40px;
  color: transparent;
}

.chat2-unread-item.is-loading .chat2-unread-item__badge::after {
  content: "";
  position: absolute;
  width: 12px;
  height: 12px;
  border: 2px solid rgba(51, 65, 85, 0.25);
  border-top-color: #334155;
  border-radius: 50%;
  animation: chat2UnreadSpin 0.7s linear infinite;
}

@keyframes chat2UnreadSpin {
  to {
    transform: rotate(360deg);
  }
}

