.loading-container{display:flex;justify-content:space-evenly;align-items:center}.loading-container .loading-bar{width:20%;height:20%;border-radius:100px;animation:loading-bar 1s ease-in-out infinite}.loading-container .loading-bar:nth-child(2){animation-delay:.15s}.loading-container .loading-bar:nth-child(3){animation-delay:.3s}@keyframes loading-bar{0%{height:20%}50%{height:50%}to{height:20%}}