  .pagination {
  margin: 15px 0; }
  @media screen and (min-width: 1540px) {
    .pagination {
      max-width: 1440px;
      margin-left: auto;
      margin-right: auto;
      margin-bottom: 30px; } }

.pagination__wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: 15px;
  margin-right: 15px; }
  @media screen and (min-width: 1200px) {
    .pagination__wrapper {
      margin-left: 60px;
      margin-right: 60px;
      justify-content: flex-end; } }

.pagination__btn {
  align-items: center;
  -webkit-appearance: initial;
  -moz-appearance: initial;
  appearance: initial;
  background-color: transparent;
  border: 0;
  color: #a7adba;
  cursor: pointer;
  display: flex;
  font-size: 0.875rem;
  font-weight: 500;
  height: 20px;
  justify-content: center;
  padding: 0;
  position: relative;
  text-decoration: none;
  width: 20px; }
  .pagination__btn svg {
    width: 100%; }
    .pagination__btn svg path {
      fill: #353535; }
  .pagination__btn:hover, .pagination__btn:focus {
    color: #353535; }
    .pagination__btn:hover::after, .pagination__btn:focus::after {
      background-color: #353535;
      bottom: -5px;
      content: '';
      height: 2px;
      position: absolute;
      width: 15px; }

.pagination__list-items {
  list-style-type: none;
  display: flex;
  align-items: center;
  margin-left: 12px;
  margin-right: 8px; }

.pagination__list-item {
  margin-right: 13px; }
  .pagination__list-item:last-child {
    margin-right: 0; }
  .pagination__list-item.is-active .pagination__btn {
    color: #353535; }
    .pagination__list-item.is-active .pagination__btn::after {
      background-color: #353535;
      bottom: -5px;
      content: '';
      height: 2px;
      position: absolute;
      width: 15px; }
