Yükleyici 14

.loader-14 {
width: 7em;
display: flex;
flex-wrap: wrap;
justify-content: center;
font-size: 13px;
}

.dot14 {
width: 0.7em;
height: 0.7em;
border-radius: 50%;
background-color: #a52a2a;
margin: 0.4rem;
opacity: 0.6;
font-size: 15px;
}

.dot14:nth-child(1) {
animation: animateLoader1 1.5s infinite;
}

.dot14:nth-child(2) {
animation: animateLoader1 1.3s infinite;
}

.dot14:nth-child(3) {
animation: animateLoader1 1.7s infinite;
}

.dot14:nth-child(4) {
animation: animateLoader1 1.1s infinite;
}

.dot14:nth-child(5) {
animation: animateLoader1 0.9s infinite;
}

.dot14:nth-child(6) {
animation: animateLoader1 0.7s infinite;
}

.dot14:nth-child(7) {
animation: animateLoader1 0.5s infinite;
}

.dot14:nth-child(8) {
animation: animateLoader1 1.3s infinite;
}

.dot14:nth-child(9) {
animation: animateLoader1 1.5s infinite;
}

@keyframes animateLoader1 {
0% {
transform: scale(1);
}

50% {
transform: scale(1.5);
opacity: 1;
}

100% {
transform: scale(1);
opacity: 0.6;
}
}