.yukleme3 {
  font-size: 10px;
  margin: 5em auto;
  text-indent: -9999em;
  width: 11em;
  height: 11em;
  border-radius: 50%;
  background: #cf838c;
  background: -moz-linear-gradient(left, #cf838c 10%, rgba(207, 131, 140, 0) 42%);
  background: -webkit-linear-gradient(left, #cf838c 10%, rgba(207, 131, 140, 0) 42%);
  background: -o-linear-gradient(left, #cf838c 10%, rgba(207, 131, 140, 0) 42%);
  background: -ms-linear-gradient(left, #cf838c 10%, rgba(207, 131, 140, 0) 42%);
  background: linear-gradient(to right, #cf838c 10%, rgba(207, 131, 140, 0) 42%);
  position: relative;
  -webkit-animation: ornek3 1.4s infinite linear;
  animation: ornek3 1.4s infinite linear;
  -webkit-transform: translateZ(0);
  -ms-transform: translateZ(0);
  transform: translateZ(0);
}
.yukleme3:before {
  width: 50%;
  height: 50%;
  background: #FFF;
  border-radius: 100% 0 0 0;
  position: absolute;
  top: 0;
  left: 0;
  content: '';
}
.yukleme3:after {
  background: #fff;
  width: 75%;
  height: 75%;
  border-radius: 50%;
  content: '';
  margin: auto;
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
}
@-webkit-keyframes ornek3 {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@keyframes ornek3 {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}