.square-loading {
  width: 20px;
  height: 20px;
  position: relative;
  box-sizing: border-box;
}

.square-loading-box {
  position: absolute;
  width: 45%;
  height: 45%;
  animation: square-loading-box 1s linear infinite;
}

.square-loading-box:nth-child(1) {
  animation-delay: 0.25s;
}

.square-loading-box:nth-child(2) {
  animation-delay: 0.50s;
  left: 50%;
}

.square-loading-box:nth-child(3) {
  animation-delay: 0.75s;
  left: 50%;
  top: 50%;
}

.square-loading-box:nth-child(4) {
  animation-delay: 1s;
  top: 50%;
}

@keyframes square-loading-box {
  from {
    background: #fe015a;
  }
}

