.pagination {
  display: flex;
  justify-content: space-between;
  padding-top: 108px;
  width: 290px;
}
@media screen and (min-width: 425px) {
  .pagination {
    width: 370px;
  }
}
.pagination__item {
  font-family: "AireBoldPro";
  font-weight: 700;
  font-size: 24px;
  line-height: 1;
  color: #856d65;
}
.pagination__item a:hover {
  cursor: pointer;
}
.pagination__item a {
  color: #856d65;
}
.pagination__item__checked {
  position: relative;
}
.pagination__item__checked ::before {
  position: absolute;
  content: "";
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background-color: rgba(180, 168, 163, 0.28);
}

.icon-arrow-right,
.icon-arrow-left {
  margin-top: 3.5px;
  width: 7px;
  height: 16px;
  fill: #856d65;
}

.arrow-right:before {
  position: absolute;
  content: "";
  top: 50%;
  right: 1px;
  transform: translateY(-50%);
  width: 29px;
  height: 1px;
  background-color: #856d65;
}

.arrow-left:before {
  position: absolute;
  content: "";
  top: 50%;
  left: 1px;
  transform: translateY(-50%);
  width: 29px;
  height: 1px;
  background-color: #856d65;
}

.arrow-left {
  position: relative;
  padding: 0 30px 0 0;
}

.arrow-right {
  position: relative;
  padding: 0 0 0 30px;
}

.arrow-left:hover .icon-arrow-right,
.arrow-left:hover .icon-arrow-left,
.arrow-right:hover .icon-arrow-right,
.arrow-right:hover .icon-arrow-left {
  fill: #b4a8a3;
}
.arrow-left:hover .arrow-left:before,
.arrow-left:hover .arrow-right:before,
.arrow-right:hover .arrow-left:before,
.arrow-right:hover .arrow-right:before {
  background-color: #b4a8a3;
}

@media screen and (min-width: 1024px) {
  .pagination__container {
    justify-content: flex-end;
  }
}
@media screen and (min-width: 425px) {
  .pagination {
    width: 370px;
  }
}