.zar-loading {
    justify-content: center;
    max-width: none;
    width: 100%;
    /* max-width: 700px; */
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 4px;
    font-size: 14px;
    opacity: 0.9;
}

/* spinning AI circle */

.zar-loader-circle{
  width:18px;
  height:18px;
  border:3px solid rgba(0,0,0,0.15);
  border-top-color:#3a7afe;
  border-radius:50%;
  animation:zarSpin 0.8s linear infinite;
}

@keyframes zarSpin{
  to{ transform:rotate(360deg); }
}

/* animated dots */

.zar-loader-dots::after{
  content:"";
  animation:zarDots 1.4s steps(4,end) infinite;
}

@keyframes zarDots{
  0%{content:"";}
  25%{content:".";}
  50%{content:"..";}
  75%{content:"...";}
}
#zarLoading[hidden] {
  display: none !important;
}