/* Infinite Scroll Loader */
.loader-ellips {
  font-size: 20px; /* change size here */
  position: relative;
  width: 4em;
  height: 1em;
  margin: 10px auto;
}

.loader-ellips__dot {
  display: block;
  width: 1em;
  height: 1em;
  border-radius: 0.5em;
  background: #555; /* change color here */
  position: absolute;
  animation-duration: 0.5s;
  animation-timing-function: ease;
  animation-iteration-count: infinite;
}

.loader-ellips__dot:nth-child(1),
.loader-ellips__dot:nth-child(2) {
  left: 0;
}
.loader-ellips__dot:nth-child(3) {
  left: 1.5em;
}
.loader-ellips__dot:nth-child(4) {
  left: 3em;
}

@keyframes reveal {
  from {
    transform: scale(0.001);
  }
  to {
    transform: scale(1);
  }
}

@keyframes slide {
  to {
    transform: translateX(1.5em);
  }
}

.loader-ellips__dot:nth-child(1) {
  animation-name: reveal;
}

.loader-ellips__dot:nth-child(2),
.loader-ellips__dot:nth-child(3) {
  animation-name: slide;
}

.loader-ellips__dot:nth-child(4) {
  animation-name: reveal;
  animation-direction: reverse;
}
/* Grid Style */
.wppg-grid-wrapper {
  /* background: #DDD; */
  padding: 15px;
  margin-top: 15px;
}
.wppg-grid-wrapper * {
  box-sizing: border-box;
}
.wppg-grid {
  width: 100%;
  padding: 0px;
  margin: 0px;
  border: none;
}

.wppg-grid:after,
.wppg-grid-wrapper:after {
  content: "";
  display: block;
  clear: both;
}

.wppg-grid-sizer,
.wppg-grid-item {
  float: left;
  width: calc(25% - 15px);
  /* background: #0D8; */
  padding: 0px;
  margin: 0px;
  margin-bottom: 20px;
  border: none;
}
.wppg-gutter-sizer {
  width: 20px;
}
.wppg-grid-item img {
  max-width: 100%;
  width: 100%;
  /* margin-bottom: -4px; */
}
.page-load-status {
  display: none;
}
.no_more_image,
.request_error {
  display: block;
  text-align: center;
  padding: 10px;
  font-size: 18px;
  background: #555;
  border-radius: 6px;
  color: #fff;
}
.request_error {
  background: #f22d01b8;
}
.view-more-button {
  width: 100%;
  background: #555;
  font-size: 10px;
  border-radius: 6px;
  box-shadow: 1px 0px 1px #d1d1d1;
}
.view-more-button:hover {
  opacity: 0.8;
}

/* .wppg-grid-col {
  float: left;
  width: 50%;
  padding: 10px;
}
.wppg-grid-col--2, .wppg-grid-col--3 { display: none } */
