.load-more-wrap {
  margin: 36px 0;
  text-align: center;
}

.load-more {
  padding: 13px 28px;
  border: 0;
  border-radius: 4px;
  background: #052d66;
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
}

.load-more:hover {
  background: #084488;
}

.load-more:disabled {
  min-width: 110px;
  background: transparent;
  opacity: 1;
  cursor: wait;
}

.modern-loader {
  display: grid;
  place-items: center;
  gap: 14px;
}

.modern-loader > span {
  display: none;
}

.loading-dots,
.button-dots {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.loading-dots i,
.button-dots i {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #052d66;
  animation: tvpg-dot 1.05s infinite ease-in-out;
}

.button-dots i {
  width: 14px;
  height: 14px;
  background: #052d66;
}

.loading-dots i:nth-child(2),
.button-dots i:nth-child(2) {
  animation-delay: 0.14s;
}

.loading-dots i:nth-child(3),
.button-dots i:nth-child(3) {
  animation-delay: 0.28s;
}

@keyframes tvpg-dot {
  0%,
  60%,
  100% {
    transform: translateY(0) scale(0.72);
    opacity: 0.4;
  }
  30% {
    transform: translateY(-8px) scale(1);
    opacity: 1;
  }
}

@media (prefers-reduced-motion: reduce) {
  .loading-dots i,
  .button-dots i {
    animation: none;
    opacity: 0.75;
  }
}
