.cube{height:80px;width:80px;display:grid;grid-template-columns:1fr 1fr;gap:6px}.cube_item{height:40px;width:40px;border-radius:10px;transition:all .2s ease-in}.cube_x{background-color:#00a149;animation:animateLoaders 1s infinite}.cube_y{background-color:#d12121;animation:animateLoaders 1s .5s infinite}@keyframes animateLoaders{0%{transform:scale(.8)}50%{transform:scale(1.2)}to{transform:scale(.8)}}