.dots-container{display:flex;align-items:center;justify-content:center;height:100%;width:100%}.dots-container .dot{height:10px;width:10px;margin-right:10px;border-radius:10px;background-color:var(--primary-color);animation:loading-dots-pulse 1.5s ease-in-out infinite}.dots-container .dot:last-child{margin-right:0}.dots-container .dot:first-child{animation-delay:-.3s}.dots-container .dot:nth-child(2){animation-delay:-.15s}.dots-container .dot:nth-child(3){animation-delay:0s}.dots-container .dot:nth-child(4){animation-delay:.15s}.dots-container .dot:nth-child(5){animation-delay:.3s}@keyframes loading-dots-pulse{0%{transform:scale(.8);background-color:var(--primary-color);box-shadow:0 0 0 0 color-mix(in srgb,var(--primary-color) 45%,transparent)}50%{transform:scale(1.2);background-color:var(--primary-color);box-shadow:0 0 0 10px color-mix(in srgb,var(--primary-color) 0%,transparent)}to{transform:scale(.8);background-color:var(--primary-color);box-shadow:0 0 0 0 color-mix(in srgb,var(--primary-color) 45%,transparent)}}