.pagination_box {
  width: 100%;
}

.pagination {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: 13px 0px;
  margin-top: 30px;
  position: relative;
  background-color: #fff;
  row-gap: 15px;
  -moz-column-gap: 20px;
       column-gap: 20px;
  border-radius: 5px;
}
@media (max-width: 1022px) {
  .pagination {
    margin-top: 20px;
    margin-bottom: 50px;
  }
}
@media (max-width: 500px) {
  .pagination {
    flex-direction: column;
  }
}
.pagination li::before {
  display: none;
}
.pagination .number-content {
  display: flex;
}
.pagination .number-content .number-page {
  padding: 8px 13px;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
}
.pagination .number-content .number-page a,
.pagination .number-content .number-page span {
  text-decoration: none;
  font-weight: 700;
  font-size: 13px;
  color: #19295a;
}
.pagination .number-content .pagi-curr {
  background-color: #19295a;
  border-radius: 50%;
}
.pagination .number-content .pagi-curr span {
  color: #fff;
}
.pagination .number-page::marker,
.pagination .prev-page::marker,
.pagination .next-page::marker {
  content: none;
}
.pagination .number-page a,
.pagination .number-page span,
.pagination .prev-page a,
.pagination .prev-page span,
.pagination .next-page a,
.pagination .next-page span {
  color: #19295a;
  text-decoration: none;
  font-weight: 700;
}
.pagination .prev-page.disable span,
.pagination .next-page.disable span {
  color: #000;
  display: flex;
  align-items: center;
  gap: 10px;
  filter: opacity(0.3);
}
.pagination .prev-page.disable .img-prev::after,
.pagination .prev-page.disable .img-next::after,
.pagination .next-page.disable .img-prev::after,
.pagination .next-page.disable .img-next::after {
  filter: brightness(0) opacity(0.3);
}
.pagination .next-page,
.pagination .prev-page {
  display: flex;
  align-items: center;
  gap: 15px;
  position: relative;
}
.pagination .next-page a,
.pagination .next-page span,
.pagination .prev-page a,
.pagination .prev-page span {
  font-size: 13px;
  font-weight: 700;
  color: #19295a;
}
.pagination .prev-page::before {
  right: -40px;
}
.pagination .next-page {
  flex-direction: row-reverse;
}
.pagination .next-page::before {
  left: -40px;
}

.img-prev,
.img-next {
  position: relative;
}
.img-prev::after,
.img-next::after {
  content: "";
  position: relative;
  background-repeat: no-repeat;
  background-size: contain;
  width: 14px;
  height: 14px;
  display: flex;
  flex-shrink: 0;
}

.img-prev::after {
  transform: rotate(180deg);
  background-image: url(../images/strzalka-5@2.png);
}

.img-next::after {
  background-image: url(../images/strzalka-5@2.png);
}/*# sourceMappingURL=pagination.css.map */