.loader-1 {
width: 10em;
display: flex;
justify-content: space-evenly;
}
.circle1 {
width: 1em;
height: 1em;
border-radius: 50%;
position: relative;
}
.circle1:nth-child(1) {
background-color: #90be6d;
}
.circle1:nth-child(2) {
background-color: #f9c74f;
}
.circle1:nth-child(3) {
background-color: #f8961e;
}
.circle1:nth-child(4) {
background-color: #f3722c;
}
.circle1:nth-child(5) {
background-color: #f94346;
}
.circle1::before {
content: "";
width: 100%;
height: 100%;
position: absolute;
border-radius: 50%;
opacity: 0.5;
animation: animateLoader38 2s ease-out infinite;
}
.circle1:nth-child(1)::before {
background-color: #90be6d;
}
.circle1:nth-child(2)::before {
background-color: #f9c74f;
animation-delay: 0.2s;
}
.circle1:nth-child(3)::before {
background-color: #f8961e;
animation-delay: 0.4s;
}
.circle1:nth-child(4)::before {
background-color: #f3722c;
animation-delay: 0.6s;
}
.circle1:nth-child(5)::before {
background-color: #f94346;
animation-delay: 0.8s;
}
@keyframes animateLoader38 {
0% {
transform: scale(1);
}
50%,
75% {
transform: scale(2.5);
}
80%,
100% {
opacity: 0;
}
}