.c-pager {
  width: 100%;
}

.toggle-button-wrapper {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  font-size: 11px;
  font-weight: 600;
  line-height: 130%;
  position: absolute;
  top: -58px;
  right: 0;
}

.product-book-container {
  --gap: 40px;
  display: flex;
  flex-wrap: wrap;
  gap: var(--gap);
  flex-direction: row;
}
.product-book-container .product-book-container__block {
  width: 100%;
}
@media (min-width: 768px) {
  .product-book-container.is-tile {
    --gap: 24px;
  }
  .product-book-container.is-tile .product-book-container__block {
    width: calc((100% - var(--gap) * 2) / 3);
    margin-bottom: 16px;
  }
}

.empty_notify p {
  font-size: 22px;
  font-weight: 700;
  line-height: 30px;
  margin: 0 0 30px;
  color: #85949e;
  text-align: center;
  margin: 0 0 40px;
}

@media screen and (max-width: 767px) {
  .empty_notify p {
    font-size: 14px;
    line-height: 1.8;
  }
}