.cookie-policy-chat-wrap {
  max-width: 42rem;
  margin-left: auto;
  margin-right: auto;
}
.chat-bubble-user {
  border-radius: 1.25rem 1.25rem 0.25rem 1.25rem;
}
.chat-bubble-system {
  border-radius: 1.25rem 1.25rem 1.25rem 0.25rem;
}
.chat-avatar {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 9999px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
@keyframes chatAppear {
  from { opacity: 0; transform: translateY(6px); }
  to   { opacity: 1; transform: translateY(0); }
}
.chat-pair {
  animation: chatAppear 0.35s ease both;
}
.chat-pair:nth-child(1) { animation-delay: 0s; }
.chat-pair:nth-child(2) { animation-delay: 0.08s; }
.chat-pair:nth-child(3) { animation-delay: 0.16s; }
.chat-pair:nth-child(4) { animation-delay: 0.24s; }
.chat-pair:nth-child(5) { animation-delay: 0.32s; }
.chat-pair:nth-child(6) { animation-delay: 0.40s; }
.chat-pair:nth-child(7) { animation-delay: 0.48s; }
.chat-pair:nth-child(8) { animation-delay: 0.56s; }
.cookie-policy-chat-dot {
  width: 0.75rem;
  height: 0.75rem;
}
.cookie-policy-chat-xs {
  font-size: 0.65rem;
}
.cookie-policy-chat-sm {
  font-size: 0.875rem;
}
.cookie-policy-chat-user {
  max-width: 20rem;
}
.cookie-policy-chat-system {
  max-width: 24rem;
}

