.wp-load-more {
  position: relative;
  height: 50px;
  margin: 50px 0;
  overflow-y: auto;
}

.wp-load-more .spinit {
  animation: rotate-two 2s linear infinite;
  z-index: 99999999999;
  position: absolute;
  top: calc(50% - 25px);
  left: calc(50% - 25px);
  margin: -25px 0 0 -25px;
  width: 50px;
  height: 50px;
}

.wp-load-more .spinit .path {
  stroke: #2C6ECB;
  stroke-linecap: round;
  animation: dash-two 1.5s ease-in-out infinite;
}

.wp-load-more.initial-load {
  height: 100vh;
  margin: 0;
}

@keyframes rotate-two {
  100% {
    transform: rotate(360deg);
  }
}

@keyframes dash-two {
  0% {
    stroke-dasharray: 1, 150;
    stroke-dashoffset: 0;
  }

  50% {
    stroke-dasharray: 90, 150;
    stroke-dashoffset: -35;
  }

  100% {
    stroke-dasharray: 90, 150;
    stroke-dashoffset: -124;
  }
}
