.loader-container{position:fixed;height:100vh;width:100vw;top:0;left:0;display:flex;justify-content:center;align-items:center;gap:12px}.balls-containers{position:relative;width:400px;height:400px}.ball-1{width:100px;height:100px;border-radius:50%;border:1px solid #94c120;border-right-color:#fff;border-bottom:0;border-left:0;animation:rotation-1 2s linear infinite;-webkit-animation:rotation-1 2s linear infinite}.ball-1,.ball-2{position:absolute;top:50%;left:50%;transform:translate(-50%,-50%);display:flex;align-items:center;justify-content:space-between}.ball-2{width:50px;height:50px;border-radius:50%;border:1px solid;border-color:#fff #fff #94c120;animation:rotation-2 1.5s linear infinite;-webkit-animation:rotation-2 2s linear infinite}.ball-3{position:absolute;top:50%;left:50%;transform:translate(-50%,-50%);width:20px;height:20px;display:flex;align-items:center;justify-content:center}.ball{width:10px;height:10px;background-color:#94c120;border-radius:50%;display:block;position:relative}@-webkit-keyframes rotation-1{0%{transform:translate(-50%,-50%) rotate(1turn)}to{transform:translate(-50%,-50%) rotate(0deg)}}@-webkit-keyframes rotation-2{0%{transform:translate(-50%,-50%) rotate(-1turn)}to{transform:translate(-50%,-50%) rotate(0deg)}}