/* CustomerAvatarEasy */
.cae-avatar{
  display:inline-flex;
  align-items:center;
  margin-left: 10px;
  vertical-align: middle;
}
.cae-avatar img{
  width: 28px;
  height: 28px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid transparent;
  animation: caePulse 2.2s infinite;
}
@keyframes caePulse{
  0%{ box-shadow: 0 0 0 0 rgba(0,0,0,.25); }
  70%{ box-shadow: 0 0 0 10px rgba(0,0,0,0); }
  100%{ box-shadow: 0 0 0 0 rgba(0,0,0,0); }
}

.cae-wrap{ max-width: 560px; }
.cae-preview{ margin-bottom: 14px; }
.cae-preview-img{
  width: 96px;
  height: 96px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid rgba(0,0,0,.08);
}
