body {
  --main-content-row-start: 3;
}

[is=load-more] {
  justify-self: center;
}
[is=load-more].loading {
  pointer-events: none;
  color: #939598;
  outline-color: #939598;
  opacity: 0.5;
}
[is=load-more].loading::after {
  content: "Loading";
  position: absolute;
  inset: auto;
  display: flex;
  place-items: center;
  place-content: center;
  border-radius: inherit;
  height: 100%;
  width: 100%;
  background-color: white;
  pointer-events: none;
  animation: pulse 1s ease 0s infinite normal forwards;
}
@keyframes pulse {
  0%, 100% {
    color: rgba(147, 149, 152, 0.4);
  }
  50% {
    color: #939598;
  }
}
/*# sourceMappingURL=../sourcemaps/pages/category.css.map */