.pagerArea {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}
.pagerArea .dot {
  margin: 16px 6px;
}
.pagerArea .pagerList {
  text-align: center;
  border: solid 1px #0098FF;
  border-radius: 50%;
  text-decoration: none;
  font-weight: bold;
  font-family: "Inter", sans-serif;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #ffffff;
  color: #000000;
}
.pagerArea .pagerList.on {
  background-color: #0098FF;
  color: #ffffff;
  pointer-events: none;
}

@media only screen and (max-width: 767px) {
  .pagerArea {
    gap: 6px;
  }
  .pagerArea .dot {
    margin: 4px 0px;
  }
  .pagerArea .pagerList {
    font-size: 14px;
    width: 28px;
    height: 28px;
  }
}
@media print, screen and (min-width: 768px) {
  .pagerArea {
    gap: 12px;
  }
  .pagerArea .dot {
    margin: 16px 0px;
  }
  .pagerArea .pagerList {
    font-size: 16px;
    width: 40px;
    height: 40px;
  }
}/*# sourceMappingURL=commonPager.css.map */