/* scroller-status */
.page-load-status {
  display: none;
  padding-top: 20px;
  text-align: center;
  color: #0395d9;
  margin-bottom: 50px;
}

.infinite-scroll-last{
  color: #0395d9;
}

.infinite-scroll-error{
  color: #0395d9;
  font-size: 16px;
}
  
/* loader-effect */
.loader-eff {
  font-size: 20px;
  position: relative;
  width: 4em;
  height: 1em;
  margin: 10px auto;
}
.loader-eff > div {
  display: block;
  width: 0.6em;
  height: 0.6em;
  border-radius: 0.5em;
  background: #0395d9;
  opacity: 0.8;
  position: absolute;
  animation-duration: 3s;
  animation-timing-function: ease;
  animation-iteration-count: infinite;
}
.loader-eff > div:nth-child(1), .loader-eff > div:nth-child(2) {
  left: 0;
}
.loader-eff > div:nth-child(3) {
  left: 1.5em;
}
.loader-eff > div:nth-child(4) {
  left: 3em;
}
.loader-eff > div:nth-child(1) {
  animation-name: reveal;
}
.loader-eff > div:nth-child(2), .loader-eff > div:nth-child(3) {
  animation-name: slide;
}
.loader-eff > div:nth-child(4) {
  animation-name: reveal;
  animation-direction: reverse;
}
@keyframes reveal {
  from {
    transform: scale(0.001);
  }
  to {
    transform: scale(1);
  }
}
@keyframes slide {
  to {
    transform: translateX(1.5em)
  }
}