.loading-container{display:flex;justify-content:center;align-items:center;position:fixed;top:0;left:0;width:100%;height:100%;background-color:transparent;z-index:1000}.circle-spinner{position:relative;width:80px;height:80px;border-radius:50%;display:flex;justify-content:space-around;align-items:center}.circle{width:15px;height:15px;background-color:#e1e9a1;border-radius:50%;animation:bounce 1.2s ease-in-out infinite}.circle:first-child{animation-delay:0s}.circle:nth-child(2){animation-delay:.2s}.circle:nth-child(3){animation-delay:.4s}.circle:nth-child(4){animation-delay:.6s}.circle:nth-child(5){animation-delay:.8s}.circle:nth-child(6){animation-delay:1s}@keyframes rotate{0%{transform:rotate(0deg)}to{transform:rotate(1turn)}}@keyframes bounce{0%,to{transform:scale(1)}50%{transform:scale(.5)}}