.loader {
  width: 48px;
  height: 48px;
  position: relative;
}

.loader::before , .loader::after{
  content: '';
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50% , -50%);
  width: 48em;
  height: 48em;
  background-image:
    radial-gradient(circle 10px, #FCD7AD 100%, transparent 0),
    radial-gradient(circle 10px, #FCD7AD 100%, transparent 0),
    radial-gradient(circle 10px, #FCD7AD 100%, transparent 0),
    radial-gradient(circle 10px, #FCD7AD 100%, transparent 0),
    radial-gradient(circle 10px, #FCD7AD 100%, transparent 0),
    radial-gradient(circle 10px, #FCD7AD 100%, transparent 0),
    radial-gradient(circle 10px, #FCD7AD 100%, transparent 0),
    radial-gradient(circle 10px, #FCD7AD 100%, transparent 0);
  background-position: 0em -18em, 0em 18em, 18em 0em, -18em 0em,
                      13em -13em, -13em -13em, 13em 13em, -13em 13em;
  background-repeat: no-repeat;
  font-size: 0.5px;
  border-radius: 50%;
  animation: blast 1s ease-in infinite;
}

.loader::after {
  font-size: 1px;
  background: #FCD7AD;
  animation: bounce 1s ease-in infinite;
}

@keyframes bounce {
  0% , 100%{ font-size: 0.75px }
  50% { font-size: 1.5px }
}

@keyframes blast {
  0% , 40% {
    font-size: 0.5px;
  }
  70% {
    opacity: 1;
    font-size: 4px;
  }
  100% {
    font-size: 6px;
    opacity: 0;
  }
}